@seamapi/types 1.383.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 (52) hide show
  1. package/dist/connect.cjs +548 -137
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +2068 -451
  4. package/lib/seam/connect/internal/schemas.d.ts +1 -1
  5. package/lib/seam/connect/internal/schemas.js +1 -1
  6. package/lib/seam/connect/internal/schemas.js.map +1 -1
  7. package/lib/seam/connect/model-types.d.ts +1 -1
  8. package/lib/seam/connect/models/access-grants/access-grant.d.ts +8 -5
  9. package/lib/seam/connect/models/access-grants/access-grant.js +3 -0
  10. package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
  11. package/lib/seam/connect/models/access-grants/requested-access-method.d.ts +3 -3
  12. package/lib/seam/connect/models/access-grants/requested-access-method.js +2 -2
  13. package/lib/seam/connect/models/access-grants/requested-access-method.js.map +1 -1
  14. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +156 -0
  15. package/lib/seam/connect/models/action-attempts/action-attempt.js +4 -0
  16. package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
  17. package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.d.ts +80 -0
  18. package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.js +28 -0
  19. package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.js.map +1 -0
  20. package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.d.ts +80 -0
  21. package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.js +28 -0
  22. package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.js.map +1 -0
  23. package/lib/seam/connect/models/index.d.ts +1 -0
  24. package/lib/seam/connect/models/index.js +1 -0
  25. package/lib/seam/connect/models/index.js.map +1 -1
  26. package/lib/seam/connect/models/instant-keys/index.d.ts +1 -0
  27. package/lib/seam/connect/models/instant-keys/index.js +2 -0
  28. package/lib/seam/connect/models/instant-keys/index.js.map +1 -0
  29. package/lib/seam/connect/models/instant-keys/instant-key.d.ts +27 -0
  30. package/lib/seam/connect/models/instant-keys/instant-key.js +16 -0
  31. package/lib/seam/connect/models/instant-keys/instant-key.js.map +1 -0
  32. package/lib/seam/connect/openapi.d.ts +420 -223
  33. package/lib/seam/connect/openapi.js +485 -132
  34. package/lib/seam/connect/openapi.js.map +1 -1
  35. package/lib/seam/connect/route-types.d.ts +1269 -33
  36. package/lib/seam/connect/schemas.d.ts +1 -1
  37. package/lib/seam/connect/schemas.js +1 -1
  38. package/lib/seam/connect/schemas.js.map +1 -1
  39. package/package.json +1 -1
  40. package/src/lib/seam/connect/internal/schemas.ts +1 -0
  41. package/src/lib/seam/connect/model-types.ts +1 -0
  42. package/src/lib/seam/connect/models/access-grants/access-grant.ts +5 -0
  43. package/src/lib/seam/connect/models/access-grants/requested-access-method.ts +4 -2
  44. package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +4 -0
  45. package/src/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.ts +39 -0
  46. package/src/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.ts +37 -0
  47. package/src/lib/seam/connect/models/index.ts +1 -0
  48. package/src/lib/seam/connect/models/instant-keys/index.ts +1 -0
  49. package/src/lib/seam/connect/models/instant-keys/instant-key.ts +18 -0
  50. package/src/lib/seam/connect/openapi.ts +535 -166
  51. package/src/lib/seam/connect/route-types.ts +1395 -33
  52. package/src/lib/seam/connect/schemas.ts +1 -0
@@ -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, {
@@ -19641,6 +19797,33 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<z.o
19641
19797
  type SeamEvent = z.infer<typeof seam_event>;
19642
19798
  type SeamEventType = SeamEvent['event_type'];
19643
19799
 
19800
+ declare const instant_key: z.ZodObject<{
19801
+ instant_key_id: z.ZodString;
19802
+ workspace_id: z.ZodString;
19803
+ created_at: z.ZodString;
19804
+ instant_key_url: z.ZodString;
19805
+ client_session_id: z.ZodString;
19806
+ user_identity_id: z.ZodString;
19807
+ expires_at: z.ZodString;
19808
+ }, "strip", z.ZodTypeAny, {
19809
+ created_at: string;
19810
+ workspace_id: string;
19811
+ user_identity_id: string;
19812
+ client_session_id: string;
19813
+ expires_at: string;
19814
+ instant_key_id: string;
19815
+ instant_key_url: string;
19816
+ }, {
19817
+ created_at: string;
19818
+ workspace_id: string;
19819
+ user_identity_id: string;
19820
+ client_session_id: string;
19821
+ expires_at: string;
19822
+ instant_key_id: string;
19823
+ instant_key_url: string;
19824
+ }>;
19825
+ type InstantKey = z.infer<typeof instant_key>;
19826
+
19644
19827
  declare const noise_threshold: z.ZodObject<{
19645
19828
  noise_threshold_id: z.ZodString;
19646
19829
  device_id: z.ZodString;
@@ -19824,6 +20007,7 @@ declare const schemas_connected_account: typeof connected_account;
19824
20007
  declare const schemas_custom_metadata: typeof custom_metadata;
19825
20008
  declare const schemas_device: typeof device;
19826
20009
  declare const schemas_device_provider: typeof device_provider;
20010
+ declare const schemas_instant_key: typeof instant_key;
19827
20011
  declare const schemas_noise_threshold: typeof noise_threshold;
19828
20012
  declare const schemas_pagination: typeof pagination;
19829
20013
  declare const schemas_seam_event: typeof seam_event;
@@ -19837,7 +20021,7 @@ declare const schemas_user_identity: typeof user_identity;
19837
20021
  declare const schemas_webhook: typeof webhook;
19838
20022
  declare const schemas_workspace: typeof workspace;
19839
20023
  declare namespace schemas {
19840
- export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_encoder as acs_encoder, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_bridge as bridge, schemas_bridge_client_session as bridge_client_session, schemas_client_session as client_session, schemas_common_failed_action_attempt as common_failed_action_attempt, schemas_common_pending_action_attempt as common_pending_action_attempt, schemas_common_succeeded_action_attempt as common_succeeded_action_attempt, schemas_connect_webview as connect_webview, schemas_connected_account as connected_account, schemas_custom_metadata as custom_metadata, schemas_device as device, schemas_device_provider as device_provider, schemas_noise_threshold as noise_threshold, schemas_pagination as pagination, schemas_seam_event as seam_event, schemas_thermostat_schedule as thermostat_schedule, schemas_unmanaged_access_code as unmanaged_access_code, schemas_unmanaged_acs_access_group as unmanaged_acs_access_group, schemas_unmanaged_acs_credential as unmanaged_acs_credential, schemas_unmanaged_acs_user as unmanaged_acs_user, schemas_unmanaged_device as unmanaged_device, schemas_user_identity as user_identity, schemas_webhook as webhook, schemas_workspace as workspace };
20024
+ export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_encoder as acs_encoder, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_bridge as bridge, schemas_bridge_client_session as bridge_client_session, schemas_client_session as client_session, schemas_common_failed_action_attempt as common_failed_action_attempt, schemas_common_pending_action_attempt as common_pending_action_attempt, schemas_common_succeeded_action_attempt as common_succeeded_action_attempt, schemas_connect_webview as connect_webview, schemas_connected_account as connected_account, schemas_custom_metadata as custom_metadata, schemas_device as device, schemas_device_provider as device_provider, schemas_instant_key as instant_key, schemas_noise_threshold as noise_threshold, schemas_pagination as pagination, schemas_seam_event as seam_event, schemas_thermostat_schedule as thermostat_schedule, schemas_unmanaged_access_code as unmanaged_access_code, schemas_unmanaged_acs_access_group as unmanaged_acs_access_group, schemas_unmanaged_acs_credential as unmanaged_acs_credential, schemas_unmanaged_acs_user as unmanaged_acs_user, schemas_unmanaged_device as unmanaged_device, schemas_user_identity as user_identity, schemas_webhook as webhook, schemas_workspace as workspace };
19841
20025
  }
19842
20026
 
19843
20027
  declare const _default: {
@@ -27464,6 +27648,42 @@ declare const _default: {
27464
27648
  })[];
27465
27649
  'x-route-path': string;
27466
27650
  };
27651
+ instant_key: {
27652
+ properties: {
27653
+ client_session_id: {
27654
+ format: string;
27655
+ type: string;
27656
+ };
27657
+ created_at: {
27658
+ format: string;
27659
+ type: string;
27660
+ };
27661
+ expires_at: {
27662
+ format: string;
27663
+ type: string;
27664
+ };
27665
+ instant_key_id: {
27666
+ format: string;
27667
+ type: string;
27668
+ };
27669
+ instant_key_url: {
27670
+ format: string;
27671
+ type: string;
27672
+ };
27673
+ user_identity_id: {
27674
+ format: string;
27675
+ type: string;
27676
+ };
27677
+ workspace_id: {
27678
+ format: string;
27679
+ type: string;
27680
+ };
27681
+ };
27682
+ required: string[];
27683
+ type: string;
27684
+ 'x-route-path': string;
27685
+ 'x-undocumented': string;
27686
+ };
27467
27687
  network: {
27468
27688
  properties: {
27469
27689
  created_at: {
@@ -38054,7 +38274,7 @@ declare const _default: {
38054
38274
  'x-response-key': string;
38055
38275
  };
38056
38276
  };
38057
- '/devices/simulate/access_code_lock': {
38277
+ '/devices/simulate/connect': {
38058
38278
  post: {
38059
38279
  operationId: string;
38060
38280
  requestBody: {
@@ -38062,10 +38282,6 @@ declare const _default: {
38062
38282
  'application/json': {
38063
38283
  schema: {
38064
38284
  properties: {
38065
- access_code_id: {
38066
- format: string;
38067
- type: string;
38068
- };
38069
38285
  device_id: {
38070
38286
  format: string;
38071
38287
  type: string;
@@ -38119,10 +38335,9 @@ declare const _default: {
38119
38335
  'x-fern-sdk-group-name': string[];
38120
38336
  'x-fern-sdk-method-name': string;
38121
38337
  'x-response-key': null;
38122
- 'x-undocumented': string;
38123
38338
  };
38124
38339
  };
38125
- '/devices/simulate/access_code_unlock': {
38340
+ '/devices/simulate/disconnect': {
38126
38341
  post: {
38127
38342
  operationId: string;
38128
38343
  requestBody: {
@@ -38130,200 +38345,69 @@ declare const _default: {
38130
38345
  'application/json': {
38131
38346
  schema: {
38132
38347
  properties: {
38133
- access_code_id: {
38348
+ device_id: {
38134
38349
  format: string;
38135
38350
  type: string;
38136
38351
  };
38137
- device_id: {
38138
- format: string;
38139
- type: string;
38140
- };
38141
- };
38142
- required: string[];
38143
- type: string;
38144
- };
38145
- };
38146
- };
38147
- };
38148
- responses: {
38149
- 200: {
38150
- content: {
38151
- 'application/json': {
38152
- schema: {
38153
- properties: {
38154
- ok: {
38155
- type: string;
38156
- };
38157
- };
38158
- required: string[];
38159
- type: string;
38160
- };
38161
- };
38162
- };
38163
- description: string;
38164
- };
38165
- 400: {
38166
- description: string;
38167
- };
38168
- 401: {
38169
- description: string;
38170
- };
38171
- };
38172
- security: ({
38173
- api_key: never[];
38174
- pat_with_workspace?: never;
38175
- console_session_with_workspace?: never;
38176
- } | {
38177
- pat_with_workspace: never[];
38178
- api_key?: never;
38179
- console_session_with_workspace?: never;
38180
- } | {
38181
- console_session_with_workspace: never[];
38182
- api_key?: never;
38183
- pat_with_workspace?: never;
38184
- })[];
38185
- summary: string;
38186
- tags: string[];
38187
- 'x-fern-sdk-group-name': string[];
38188
- 'x-fern-sdk-method-name': string;
38189
- 'x-response-key': null;
38190
- 'x-undocumented': string;
38191
- };
38192
- };
38193
- '/devices/simulate/connect': {
38194
- post: {
38195
- operationId: string;
38196
- requestBody: {
38197
- content: {
38198
- 'application/json': {
38199
- schema: {
38200
- properties: {
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
- };
38255
- };
38256
- '/devices/simulate/disconnect': {
38257
- post: {
38258
- operationId: string;
38259
- requestBody: {
38260
- content: {
38261
- 'application/json': {
38262
- schema: {
38263
- properties: {
38264
- device_id: {
38265
- format: string;
38266
- type: string;
38267
- };
38268
- };
38269
- required: string[];
38270
- type: string;
38271
- };
38272
- };
38273
- };
38274
- };
38275
- responses: {
38276
- 200: {
38277
- content: {
38278
- 'application/json': {
38279
- schema: {
38280
- properties: {
38281
- ok: {
38282
- type: string;
38283
- };
38284
- };
38285
- required: string[];
38286
- type: string;
38287
- };
38288
- };
38289
- };
38290
- description: string;
38291
- };
38292
- 400: {
38293
- description: string;
38294
- };
38295
- 401: {
38296
- description: string;
38297
- };
38298
- };
38299
- security: ({
38300
- api_key: never[];
38301
- pat_with_workspace?: never;
38302
- console_session_with_workspace?: never;
38303
- } | {
38304
- pat_with_workspace: never[];
38305
- api_key?: never;
38306
- console_session_with_workspace?: never;
38307
- } | {
38308
- console_session_with_workspace: never[];
38309
- api_key?: never;
38310
- pat_with_workspace?: never;
38311
- })[];
38312
- summary: string;
38313
- tags: string[];
38314
- 'x-fern-sdk-group-name': string[];
38315
- 'x-fern-sdk-method-name': string;
38316
- 'x-response-key': null;
38317
- };
38318
- };
38319
- '/devices/simulate/remove': {
38320
- post: {
38321
- operationId: string;
38322
- requestBody: {
38323
- content: {
38324
- 'application/json': {
38325
- schema: {
38326
- properties: {
38352
+ };
38353
+ required: string[];
38354
+ type: string;
38355
+ };
38356
+ };
38357
+ };
38358
+ };
38359
+ responses: {
38360
+ 200: {
38361
+ content: {
38362
+ 'application/json': {
38363
+ schema: {
38364
+ properties: {
38365
+ ok: {
38366
+ type: string;
38367
+ };
38368
+ };
38369
+ required: string[];
38370
+ type: string;
38371
+ };
38372
+ };
38373
+ };
38374
+ description: string;
38375
+ };
38376
+ 400: {
38377
+ description: string;
38378
+ };
38379
+ 401: {
38380
+ description: string;
38381
+ };
38382
+ };
38383
+ security: ({
38384
+ api_key: never[];
38385
+ pat_with_workspace?: never;
38386
+ console_session_with_workspace?: never;
38387
+ } | {
38388
+ pat_with_workspace: never[];
38389
+ api_key?: never;
38390
+ console_session_with_workspace?: never;
38391
+ } | {
38392
+ console_session_with_workspace: never[];
38393
+ api_key?: never;
38394
+ pat_with_workspace?: never;
38395
+ })[];
38396
+ summary: string;
38397
+ tags: string[];
38398
+ 'x-fern-sdk-group-name': string[];
38399
+ 'x-fern-sdk-method-name': string;
38400
+ 'x-response-key': null;
38401
+ };
38402
+ };
38403
+ '/devices/simulate/remove': {
38404
+ post: {
38405
+ operationId: string;
38406
+ requestBody: {
38407
+ content: {
38408
+ 'application/json': {
38409
+ schema: {
38410
+ properties: {
38327
38411
  device_id: {
38328
38412
  format: string;
38329
38413
  type: string;
@@ -39527,7 +39611,7 @@ declare const _default: {
39527
39611
  'x-response-key': string;
39528
39612
  };
39529
39613
  };
39530
- '/locks/unlock_door': {
39614
+ '/locks/simulate/keypad_code_entry': {
39531
39615
  post: {
39532
39616
  operationId: string;
39533
39617
  requestBody: {
@@ -39535,12 +39619,152 @@ declare const _default: {
39535
39619
  'application/json': {
39536
39620
  schema: {
39537
39621
  properties: {
39622
+ code: {
39623
+ type: string;
39624
+ };
39538
39625
  device_id: {
39539
39626
  format: string;
39540
39627
  type: string;
39541
39628
  };
39542
- sync: {
39543
- default: boolean;
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
+ };
39754
+ '/locks/unlock_door': {
39755
+ post: {
39756
+ operationId: string;
39757
+ requestBody: {
39758
+ content: {
39759
+ 'application/json': {
39760
+ schema: {
39761
+ properties: {
39762
+ device_id: {
39763
+ format: string;
39764
+ type: string;
39765
+ };
39766
+ sync: {
39767
+ default: boolean;
39544
39768
  type: string;
39545
39769
  };
39546
39770
  };
@@ -42022,7 +42246,7 @@ declare const _default: {
42022
42246
  'x-undocumented': string;
42023
42247
  };
42024
42248
  };
42025
- '/thermostats/activate_climate_preset': {
42249
+ '/seam/instant_key/v1/client_sessions/exchange_short_code': {
42026
42250
  post: {
42027
42251
  description: string;
42028
42252
  operationId: string;
@@ -42031,13 +42255,8 @@ declare const _default: {
42031
42255
  'application/json': {
42032
42256
  schema: {
42033
42257
  properties: {
42034
- climate_preset_key: {
42035
- description: string;
42036
- type: string;
42037
- };
42038
- device_id: {
42258
+ short_code: {
42039
42259
  description: string;
42040
- format: string;
42041
42260
  type: string;
42042
42261
  };
42043
42262
  };
@@ -42053,7 +42272,7 @@ declare const _default: {
42053
42272
  'application/json': {
42054
42273
  schema: {
42055
42274
  properties: {
42056
- action_attempt: {
42275
+ client_session: {
42057
42276
  $ref: string;
42058
42277
  };
42059
42278
  ok: {
@@ -42074,22 +42293,11 @@ declare const _default: {
42074
42293
  description: string;
42075
42294
  };
42076
42295
  };
42077
- security: ({
42078
- pat_with_workspace: never[];
42079
- console_session_with_workspace?: never;
42080
- api_key?: never;
42081
- } | {
42082
- console_session_with_workspace: never[];
42083
- pat_with_workspace?: never;
42084
- api_key?: never;
42085
- } | {
42086
- api_key: never[];
42087
- pat_with_workspace?: never;
42088
- console_session_with_workspace?: never;
42089
- })[];
42296
+ security: {
42297
+ certified_client: never[];
42298
+ }[];
42090
42299
  summary: string;
42091
42300
  tags: string[];
42092
- 'x-action-attempt-type': string;
42093
42301
  'x-fern-sdk-group-name': string[];
42094
42302
  'x-fern-sdk-method-name': string;
42095
42303
  'x-fern-sdk-return-value': string;
@@ -42097,7 +42305,7 @@ declare const _default: {
42097
42305
  'x-title': string;
42098
42306
  };
42099
42307
  };
42100
- '/thermostats/cool': {
42308
+ '/thermostats/activate_climate_preset': {
42101
42309
  post: {
42102
42310
  description: string;
42103
42311
  operationId: string;
@@ -42106,14 +42314,8 @@ declare const _default: {
42106
42314
  'application/json': {
42107
42315
  schema: {
42108
42316
  properties: {
42109
- cooling_set_point_celsius: {
42110
- description: string;
42111
- format: string;
42112
- type: string;
42113
- };
42114
- cooling_set_point_fahrenheit: {
42317
+ climate_preset_key: {
42115
42318
  description: string;
42116
- format: string;
42117
42319
  type: string;
42118
42320
  };
42119
42321
  device_id: {
@@ -42121,11 +42323,6 @@ declare const _default: {
42121
42323
  format: string;
42122
42324
  type: string;
42123
42325
  };
42124
- sync: {
42125
- default: boolean;
42126
- type: string;
42127
- 'x-undocumented': string;
42128
- };
42129
42326
  };
42130
42327
  required: string[];
42131
42328
  type: string;
@@ -42161,23 +42358,15 @@ declare const _default: {
42161
42358
  };
42162
42359
  };
42163
42360
  security: ({
42164
- client_session: never[];
42165
- pat_with_workspace?: never;
42166
- console_session_with_workspace?: never;
42167
- api_key?: never;
42168
- } | {
42169
42361
  pat_with_workspace: never[];
42170
- client_session?: never;
42171
42362
  console_session_with_workspace?: never;
42172
42363
  api_key?: never;
42173
42364
  } | {
42174
42365
  console_session_with_workspace: never[];
42175
- client_session?: never;
42176
42366
  pat_with_workspace?: never;
42177
42367
  api_key?: never;
42178
42368
  } | {
42179
42369
  api_key: never[];
42180
- client_session?: never;
42181
42370
  pat_with_workspace?: never;
42182
42371
  console_session_with_workspace?: never;
42183
42372
  })[];
@@ -42191,7 +42380,7 @@ declare const _default: {
42191
42380
  'x-title': string;
42192
42381
  };
42193
42382
  };
42194
- '/thermostats/create_climate_preset': {
42383
+ '/thermostats/cool': {
42195
42384
  post: {
42196
42385
  description: string;
42197
42386
  operationId: string;
@@ -42200,10 +42389,6 @@ declare const _default: {
42200
42389
  'application/json': {
42201
42390
  schema: {
42202
42391
  properties: {
42203
- climate_preset_key: {
42204
- description: string;
42205
- type: string;
42206
- };
42207
42392
  cooling_set_point_celsius: {
42208
42393
  description: string;
42209
42394
  format: string;
@@ -42219,38 +42404,10 @@ declare const _default: {
42219
42404
  format: string;
42220
42405
  type: string;
42221
42406
  };
42222
- fan_mode_setting: {
42223
- description: string;
42224
- enum: string[];
42225
- type: string;
42226
- };
42227
- heating_set_point_celsius: {
42228
- description: string;
42229
- format: string;
42230
- type: string;
42231
- };
42232
- heating_set_point_fahrenheit: {
42233
- description: string;
42234
- format: string;
42235
- type: string;
42236
- };
42237
- hvac_mode_setting: {
42238
- description: string;
42239
- enum: string[];
42240
- type: string;
42241
- };
42242
- manual_override_allowed: {
42407
+ sync: {
42243
42408
  default: boolean;
42244
- deprecated: boolean;
42245
- description: string;
42246
- type: string;
42247
- 'x-deprecated': string;
42248
- };
42249
- name: {
42250
- default: null;
42251
- description: string;
42252
- nullable: boolean;
42253
42409
  type: string;
42410
+ 'x-undocumented': string;
42254
42411
  };
42255
42412
  };
42256
42413
  required: string[];
@@ -42265,6 +42422,9 @@ declare const _default: {
42265
42422
  'application/json': {
42266
42423
  schema: {
42267
42424
  properties: {
42425
+ action_attempt: {
42426
+ $ref: string;
42427
+ };
42268
42428
  ok: {
42269
42429
  type: string;
42270
42430
  };
@@ -42306,13 +42466,15 @@ declare const _default: {
42306
42466
  })[];
42307
42467
  summary: string;
42308
42468
  tags: string[];
42469
+ 'x-action-attempt-type': string;
42309
42470
  'x-fern-sdk-group-name': string[];
42310
42471
  'x-fern-sdk-method-name': string;
42311
- 'x-response-key': null;
42472
+ 'x-fern-sdk-return-value': string;
42473
+ 'x-response-key': string;
42312
42474
  'x-title': string;
42313
42475
  };
42314
42476
  };
42315
- '/thermostats/delete_climate_preset': {
42477
+ '/thermostats/create_climate_preset': {
42316
42478
  post: {
42317
42479
  description: string;
42318
42480
  operationId: string;
@@ -42325,90 +42487,56 @@ declare const _default: {
42325
42487
  description: string;
42326
42488
  type: string;
42327
42489
  };
42328
- device_id: {
42490
+ cooling_set_point_celsius: {
42329
42491
  description: string;
42330
42492
  format: string;
42331
42493
  type: string;
42332
42494
  };
42333
- };
42334
- required: string[];
42335
- type: string;
42336
- };
42337
- };
42338
- };
42339
- };
42340
- responses: {
42341
- 200: {
42342
- content: {
42343
- 'application/json': {
42344
- schema: {
42345
- properties: {
42346
- ok: {
42347
- type: string;
42348
- };
42495
+ cooling_set_point_fahrenheit: {
42496
+ description: string;
42497
+ format: string;
42498
+ type: string;
42349
42499
  };
42350
- required: string[];
42351
- type: string;
42352
- };
42353
- };
42354
- };
42355
- description: string;
42356
- };
42357
- 400: {
42358
- description: string;
42359
- };
42360
- 401: {
42361
- description: string;
42362
- };
42363
- };
42364
- security: ({
42365
- client_session: never[];
42366
- pat_with_workspace?: never;
42367
- console_session_with_workspace?: never;
42368
- api_key?: never;
42369
- } | {
42370
- pat_with_workspace: never[];
42371
- client_session?: never;
42372
- console_session_with_workspace?: never;
42373
- api_key?: never;
42374
- } | {
42375
- console_session_with_workspace: never[];
42376
- client_session?: never;
42377
- pat_with_workspace?: never;
42378
- api_key?: never;
42379
- } | {
42380
- api_key: never[];
42381
- client_session?: never;
42382
- pat_with_workspace?: never;
42383
- console_session_with_workspace?: never;
42384
- })[];
42385
- summary: string;
42386
- tags: string[];
42387
- 'x-fern-sdk-group-name': string[];
42388
- 'x-fern-sdk-method-name': string;
42389
- 'x-response-key': null;
42390
- 'x-title': string;
42391
- };
42392
- };
42393
- '/thermostats/get': {
42394
- post: {
42395
- description: string;
42396
- operationId: string;
42397
- requestBody: {
42398
- content: {
42399
- 'application/json': {
42400
- schema: {
42401
- properties: {
42402
42500
  device_id: {
42403
42501
  description: string;
42404
42502
  format: string;
42405
42503
  type: string;
42406
42504
  };
42505
+ fan_mode_setting: {
42506
+ description: string;
42507
+ enum: string[];
42508
+ type: string;
42509
+ };
42510
+ heating_set_point_celsius: {
42511
+ description: string;
42512
+ format: string;
42513
+ type: string;
42514
+ };
42515
+ heating_set_point_fahrenheit: {
42516
+ description: string;
42517
+ format: string;
42518
+ type: string;
42519
+ };
42520
+ hvac_mode_setting: {
42521
+ description: string;
42522
+ enum: string[];
42523
+ type: string;
42524
+ };
42525
+ manual_override_allowed: {
42526
+ default: boolean;
42527
+ deprecated: boolean;
42528
+ description: string;
42529
+ type: string;
42530
+ 'x-deprecated': string;
42531
+ };
42407
42532
  name: {
42533
+ default: null;
42408
42534
  description: string;
42535
+ nullable: boolean;
42409
42536
  type: string;
42410
42537
  };
42411
42538
  };
42539
+ required: string[];
42412
42540
  type: string;
42413
42541
  };
42414
42542
  };
@@ -42423,9 +42551,164 @@ declare const _default: {
42423
42551
  ok: {
42424
42552
  type: string;
42425
42553
  };
42426
- thermostat: {
42427
- $ref: string;
42428
- };
42554
+ };
42555
+ required: string[];
42556
+ type: string;
42557
+ };
42558
+ };
42559
+ };
42560
+ description: string;
42561
+ };
42562
+ 400: {
42563
+ description: string;
42564
+ };
42565
+ 401: {
42566
+ description: string;
42567
+ };
42568
+ };
42569
+ security: ({
42570
+ client_session: never[];
42571
+ pat_with_workspace?: never;
42572
+ console_session_with_workspace?: never;
42573
+ api_key?: never;
42574
+ } | {
42575
+ pat_with_workspace: never[];
42576
+ client_session?: never;
42577
+ console_session_with_workspace?: never;
42578
+ api_key?: never;
42579
+ } | {
42580
+ console_session_with_workspace: never[];
42581
+ client_session?: never;
42582
+ pat_with_workspace?: never;
42583
+ api_key?: never;
42584
+ } | {
42585
+ api_key: never[];
42586
+ client_session?: never;
42587
+ pat_with_workspace?: never;
42588
+ console_session_with_workspace?: never;
42589
+ })[];
42590
+ summary: string;
42591
+ tags: string[];
42592
+ 'x-fern-sdk-group-name': string[];
42593
+ 'x-fern-sdk-method-name': string;
42594
+ 'x-response-key': null;
42595
+ 'x-title': string;
42596
+ };
42597
+ };
42598
+ '/thermostats/delete_climate_preset': {
42599
+ post: {
42600
+ description: string;
42601
+ operationId: string;
42602
+ requestBody: {
42603
+ content: {
42604
+ 'application/json': {
42605
+ schema: {
42606
+ properties: {
42607
+ climate_preset_key: {
42608
+ description: string;
42609
+ type: string;
42610
+ };
42611
+ device_id: {
42612
+ description: string;
42613
+ format: string;
42614
+ type: string;
42615
+ };
42616
+ };
42617
+ required: string[];
42618
+ type: string;
42619
+ };
42620
+ };
42621
+ };
42622
+ };
42623
+ responses: {
42624
+ 200: {
42625
+ content: {
42626
+ 'application/json': {
42627
+ schema: {
42628
+ properties: {
42629
+ ok: {
42630
+ type: string;
42631
+ };
42632
+ };
42633
+ required: string[];
42634
+ type: string;
42635
+ };
42636
+ };
42637
+ };
42638
+ description: string;
42639
+ };
42640
+ 400: {
42641
+ description: string;
42642
+ };
42643
+ 401: {
42644
+ description: string;
42645
+ };
42646
+ };
42647
+ security: ({
42648
+ client_session: never[];
42649
+ pat_with_workspace?: never;
42650
+ console_session_with_workspace?: never;
42651
+ api_key?: never;
42652
+ } | {
42653
+ pat_with_workspace: never[];
42654
+ client_session?: never;
42655
+ console_session_with_workspace?: never;
42656
+ api_key?: never;
42657
+ } | {
42658
+ console_session_with_workspace: never[];
42659
+ client_session?: never;
42660
+ pat_with_workspace?: never;
42661
+ api_key?: never;
42662
+ } | {
42663
+ api_key: never[];
42664
+ client_session?: never;
42665
+ pat_with_workspace?: never;
42666
+ console_session_with_workspace?: never;
42667
+ })[];
42668
+ summary: string;
42669
+ tags: string[];
42670
+ 'x-fern-sdk-group-name': string[];
42671
+ 'x-fern-sdk-method-name': string;
42672
+ 'x-response-key': null;
42673
+ 'x-title': string;
42674
+ };
42675
+ };
42676
+ '/thermostats/get': {
42677
+ post: {
42678
+ description: string;
42679
+ operationId: string;
42680
+ requestBody: {
42681
+ content: {
42682
+ 'application/json': {
42683
+ schema: {
42684
+ properties: {
42685
+ device_id: {
42686
+ description: string;
42687
+ format: string;
42688
+ type: string;
42689
+ };
42690
+ name: {
42691
+ description: string;
42692
+ type: string;
42693
+ };
42694
+ };
42695
+ type: string;
42696
+ };
42697
+ };
42698
+ };
42699
+ };
42700
+ responses: {
42701
+ 200: {
42702
+ content: {
42703
+ 'application/json': {
42704
+ schema: {
42705
+ properties: {
42706
+ ok: {
42707
+ type: string;
42708
+ };
42709
+ thermostat: {
42710
+ $ref: string;
42711
+ };
42429
42712
  };
42430
42713
  required: string[];
42431
42714
  type: string;
@@ -44528,20 +44811,6 @@ declare const _default: {
44528
44811
  type?: never;
44529
44812
  } | {
44530
44813
  properties: {
44531
- desired_access_methods: {
44532
- items: {
44533
- properties: {
44534
- mode: {
44535
- description: string;
44536
- enum: string[];
44537
- type: string;
44538
- };
44539
- };
44540
- required: string[];
44541
- type: string;
44542
- };
44543
- type: string;
44544
- };
44545
44814
  ends_at: {
44546
44815
  description: string;
44547
44816
  format: string;
@@ -44568,6 +44837,10 @@ declare const _default: {
44568
44837
  };
44569
44838
  type: string;
44570
44839
  };
44840
+ name: {
44841
+ description: string;
44842
+ type: string;
44843
+ };
44571
44844
  };
44572
44845
  type: string;
44573
44846
  };
@@ -44579,6 +44852,20 @@ declare const _default: {
44579
44852
  };
44580
44853
  type: string;
44581
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
+ };
44582
44869
  starts_at: {
44583
44870
  description: string;
44584
44871
  format: string;
@@ -44606,6 +44893,14 @@ declare const _default: {
44606
44893
  format: string;
44607
44894
  type: string;
44608
44895
  };
44896
+ access_method_ids: {
44897
+ description: string;
44898
+ items: {
44899
+ format: string;
44900
+ type: string;
44901
+ };
44902
+ type: string;
44903
+ };
44609
44904
  created_at: {
44610
44905
  description: string;
44611
44906
  format: string;
@@ -44627,6 +44922,14 @@ declare const _default: {
44627
44922
  description: string;
44628
44923
  items: {
44629
44924
  properties: {
44925
+ created_access_method_ids: {
44926
+ description: string;
44927
+ items: {
44928
+ format: string;
44929
+ type: string;
44930
+ };
44931
+ type: string;
44932
+ };
44630
44933
  created_at: {
44631
44934
  description: string;
44632
44935
  format: string;
@@ -44641,14 +44944,6 @@ declare const _default: {
44641
44944
  enum: string[];
44642
44945
  type: string;
44643
44946
  };
44644
- provisioned_access_method_ids: {
44645
- description: string;
44646
- items: {
44647
- format: string;
44648
- type: string;
44649
- };
44650
- type: string;
44651
- };
44652
44947
  };
44653
44948
  required: string[];
44654
44949
  type: string;
@@ -44746,6 +45041,14 @@ declare const _default: {
44746
45041
  format: string;
44747
45042
  type: string;
44748
45043
  };
45044
+ access_method_ids: {
45045
+ description: string;
45046
+ items: {
45047
+ format: string;
45048
+ type: string;
45049
+ };
45050
+ type: string;
45051
+ };
44749
45052
  created_at: {
44750
45053
  description: string;
44751
45054
  format: string;
@@ -44767,6 +45070,14 @@ declare const _default: {
44767
45070
  description: string;
44768
45071
  items: {
44769
45072
  properties: {
45073
+ created_access_method_ids: {
45074
+ description: string;
45075
+ items: {
45076
+ format: string;
45077
+ type: string;
45078
+ };
45079
+ type: string;
45080
+ };
44770
45081
  created_at: {
44771
45082
  description: string;
44772
45083
  format: string;
@@ -44781,14 +45092,6 @@ declare const _default: {
44781
45092
  enum: string[];
44782
45093
  type: string;
44783
45094
  };
44784
- provisioned_access_method_ids: {
44785
- description: string;
44786
- items: {
44787
- format: string;
44788
- type: string;
44789
- };
44790
- type: string;
44791
- };
44792
45095
  };
44793
45096
  required: string[];
44794
45097
  type: string;
@@ -44901,6 +45204,14 @@ declare const _default: {
44901
45204
  format: string;
44902
45205
  type: string;
44903
45206
  };
45207
+ access_method_ids: {
45208
+ description: string;
45209
+ items: {
45210
+ format: string;
45211
+ type: string;
45212
+ };
45213
+ type: string;
45214
+ };
44904
45215
  created_at: {
44905
45216
  description: string;
44906
45217
  format: string;
@@ -44922,6 +45233,14 @@ declare const _default: {
44922
45233
  description: string;
44923
45234
  items: {
44924
45235
  properties: {
45236
+ created_access_method_ids: {
45237
+ description: string;
45238
+ items: {
45239
+ format: string;
45240
+ type: string;
45241
+ };
45242
+ type: string;
45243
+ };
44925
45244
  created_at: {
44926
45245
  description: string;
44927
45246
  format: string;
@@ -44936,14 +45255,6 @@ declare const _default: {
44936
45255
  enum: string[];
44937
45256
  type: string;
44938
45257
  };
44939
- provisioned_access_method_ids: {
44940
- description: string;
44941
- items: {
44942
- format: string;
44943
- type: string;
44944
- };
44945
- type: string;
44946
- };
44947
45258
  };
44948
45259
  required: string[];
44949
45260
  type: string;
@@ -45009,7 +45320,7 @@ declare const _default: {
45009
45320
  'x-undocumented': string;
45010
45321
  };
45011
45322
  };
45012
- '/unstable_access_grants/list_access_methods': {
45323
+ '/unstable_access_methods/list': {
45013
45324
  post: {
45014
45325
  description: string;
45015
45326
  operationId: string;
@@ -46746,7 +47057,7 @@ declare const _default: {
46746
47057
  'x-title': string;
46747
47058
  };
46748
47059
  };
46749
- '/user_identities/get': {
47060
+ '/user_identities/generate_instant_key': {
46750
47061
  post: {
46751
47062
  description: string;
46752
47063
  operationId: string;
@@ -46754,27 +47065,15 @@ declare const _default: {
46754
47065
  content: {
46755
47066
  'application/json': {
46756
47067
  schema: {
46757
- oneOf: ({
46758
- properties: {
46759
- user_identity_id: {
46760
- description: string;
46761
- format: string;
46762
- type: string;
46763
- };
46764
- user_identity_key?: never;
46765
- };
46766
- required: string[];
46767
- type: string;
46768
- } | {
46769
- properties: {
46770
- user_identity_key: {
46771
- type: string;
46772
- };
46773
- user_identity_id?: never;
47068
+ properties: {
47069
+ user_identity_id: {
47070
+ description: string;
47071
+ format: string;
47072
+ type: string;
46774
47073
  };
46775
- required: string[];
46776
- type: string;
46777
- })[];
47074
+ };
47075
+ required: string[];
47076
+ type: string;
46778
47077
  };
46779
47078
  };
46780
47079
  };
@@ -46785,12 +47084,94 @@ declare const _default: {
46785
47084
  'application/json': {
46786
47085
  schema: {
46787
47086
  properties: {
47087
+ instant_key: {
47088
+ $ref: string;
47089
+ };
46788
47090
  ok: {
46789
47091
  type: string;
46790
47092
  };
46791
- user_identity: {
46792
- $ref: string;
46793
- };
47093
+ };
47094
+ required: string[];
47095
+ type: string;
47096
+ };
47097
+ };
47098
+ };
47099
+ description: string;
47100
+ };
47101
+ 400: {
47102
+ description: string;
47103
+ };
47104
+ 401: {
47105
+ description: string;
47106
+ };
47107
+ };
47108
+ security: ({
47109
+ api_key: never[];
47110
+ pat_with_workspace?: never;
47111
+ console_session_with_workspace?: never;
47112
+ } | {
47113
+ pat_with_workspace: never[];
47114
+ api_key?: never;
47115
+ console_session_with_workspace?: never;
47116
+ } | {
47117
+ console_session_with_workspace: never[];
47118
+ api_key?: never;
47119
+ pat_with_workspace?: never;
47120
+ })[];
47121
+ summary: string;
47122
+ tags: string[];
47123
+ 'x-fern-sdk-group-name': string[];
47124
+ 'x-fern-sdk-method-name': string;
47125
+ 'x-fern-sdk-return-value': string;
47126
+ 'x-response-key': string;
47127
+ 'x-title': string;
47128
+ };
47129
+ };
47130
+ '/user_identities/get': {
47131
+ post: {
47132
+ description: string;
47133
+ operationId: string;
47134
+ requestBody: {
47135
+ content: {
47136
+ 'application/json': {
47137
+ schema: {
47138
+ oneOf: ({
47139
+ properties: {
47140
+ user_identity_id: {
47141
+ description: string;
47142
+ format: string;
47143
+ type: string;
47144
+ };
47145
+ user_identity_key?: never;
47146
+ };
47147
+ required: string[];
47148
+ type: string;
47149
+ } | {
47150
+ properties: {
47151
+ user_identity_key: {
47152
+ type: string;
47153
+ };
47154
+ user_identity_id?: never;
47155
+ };
47156
+ required: string[];
47157
+ type: string;
47158
+ })[];
47159
+ };
47160
+ };
47161
+ };
47162
+ };
47163
+ responses: {
47164
+ 200: {
47165
+ content: {
47166
+ 'application/json': {
47167
+ schema: {
47168
+ properties: {
47169
+ ok: {
47170
+ type: string;
47171
+ };
47172
+ user_identity: {
47173
+ $ref: string;
47174
+ };
46794
47175
  };
46795
47176
  required: string[];
46796
47177
  type: string;
@@ -49252,6 +49633,62 @@ interface Routes {
49252
49633
  type: string;
49253
49634
  message: string;
49254
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
+ };
49255
49692
  } | {
49256
49693
  /** ID of the action attempt. */
49257
49694
  action_attempt_id: string;
@@ -51147,6 +51584,62 @@ interface Routes {
51147
51584
  type: string;
51148
51585
  message: string;
51149
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
+ };
51150
51643
  } | {
51151
51644
  /** ID of the action attempt. */
51152
51645
  action_attempt_id: string;
@@ -54422,6 +54915,62 @@ interface Routes {
54422
54915
  type: string;
54423
54916
  message: string;
54424
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
+ };
54425
54974
  } | {
54426
54975
  /** ID of the action attempt. */
54427
54976
  action_attempt_id: string;
@@ -56321,6 +56870,62 @@ interface Routes {
56321
56870
  type: string;
56322
56871
  message: string;
56323
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
+ };
56324
56929
  } | {
56325
56930
  /** ID of the action attempt. */
56326
56931
  action_attempt_id: string;
@@ -59142,6 +59747,62 @@ interface Routes {
59142
59747
  type: string;
59143
59748
  message: string;
59144
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
+ };
59145
59806
  } | {
59146
59807
  /** ID of the action attempt. */
59147
59808
  action_attempt_id: string;
@@ -60199,6 +60860,62 @@ interface Routes {
60199
60860
  type: string;
60200
60861
  message: string;
60201
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
+ };
60202
60919
  } | {
60203
60920
  /** ID of the action attempt. */
60204
60921
  action_attempt_id: string;
@@ -63027,6 +63744,62 @@ interface Routes {
63027
63744
  type: string;
63028
63745
  message: string;
63029
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
+ };
63030
63803
  } | {
63031
63804
  /** ID of the action attempt. */
63032
63805
  action_attempt_id: string;
@@ -63988,6 +64761,62 @@ interface Routes {
63988
64761
  type: string;
63989
64762
  message: string;
63990
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
+ };
63991
64820
  } | {
63992
64821
  /** ID of the action attempt. */
63993
64822
  action_attempt_id: string;
@@ -66342,30 +67171,6 @@ interface Routes {
66342
67171
  }>;
66343
67172
  };
66344
67173
  };
66345
- '/devices/simulate/access_code_lock': {
66346
- route: '/devices/simulate/access_code_lock';
66347
- method: 'POST';
66348
- queryParams: {};
66349
- jsonBody: {
66350
- device_id: string;
66351
- access_code_id: string;
66352
- };
66353
- commonParams: {};
66354
- formData: {};
66355
- jsonResponse: {};
66356
- };
66357
- '/devices/simulate/access_code_unlock': {
66358
- route: '/devices/simulate/access_code_unlock';
66359
- method: 'POST';
66360
- queryParams: {};
66361
- jsonBody: {
66362
- device_id: string;
66363
- access_code_id: string;
66364
- };
66365
- commonParams: {};
66366
- formData: {};
66367
- jsonResponse: {};
66368
- };
66369
67174
  '/devices/simulate/connect': {
66370
67175
  route: '/devices/simulate/connect';
66371
67176
  method: 'POST';
@@ -73189,6 +73994,62 @@ interface Routes {
73189
73994
  type: string;
73190
73995
  message: string;
73191
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
+ };
73192
74053
  } | {
73193
74054
  /** ID of the action attempt. */
73194
74055
  action_attempt_id: string;
@@ -73396,6 +74257,33 @@ interface Routes {
73396
74257
  };
73397
74258
  };
73398
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
+ };
73399
74287
  '/locks/unlock_door': {
73400
74288
  route: '/locks/unlock_door';
73401
74289
  method: 'POST';
@@ -74152,6 +75040,62 @@ interface Routes {
74152
75040
  type: string;
74153
75041
  message: string;
74154
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
+ };
74155
75099
  } | {
74156
75100
  /** ID of the action attempt. */
74157
75101
  action_attempt_id: string;
@@ -76598,6 +77542,62 @@ interface Routes {
76598
77542
  type: string;
76599
77543
  message: string;
76600
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
+ };
76601
77601
  } | {
76602
77602
  /** ID of the action attempt. */
76603
77603
  action_attempt_id: string;
@@ -77572,6 +78572,62 @@ interface Routes {
77572
78572
  type: string;
77573
78573
  message: string;
77574
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
+ };
77575
78631
  } | {
77576
78632
  /** ID of the action attempt. */
77577
78633
  action_attempt_id: string;
@@ -78585,6 +79641,62 @@ interface Routes {
78585
79641
  type: string;
78586
79642
  message: string;
78587
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
+ };
78588
79700
  } | {
78589
79701
  /** ID of the action attempt. */
78590
79702
  action_attempt_id: string;
@@ -79248,6 +80360,32 @@ interface Routes {
79248
80360
  }>;
79249
80361
  };
79250
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
+ };
79251
80389
  '/thermostats/activate_climate_preset': {
79252
80390
  route: '/thermostats/activate_climate_preset';
79253
80391
  method: 'POST';
@@ -80006,6 +81144,62 @@ interface Routes {
80006
81144
  type: string;
80007
81145
  message: string;
80008
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
+ };
80009
81203
  } | {
80010
81204
  /** ID of the action attempt. */
80011
81205
  action_attempt_id: string;
@@ -80975,6 +82169,62 @@ interface Routes {
80975
82169
  type: string;
80976
82170
  message: string;
80977
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
+ };
80978
82228
  } | {
80979
82229
  /** ID of the action attempt. */
80980
82230
  action_attempt_id: string;
@@ -82707,6 +83957,62 @@ interface Routes {
82707
83957
  type: string;
82708
83958
  message: string;
82709
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
+ };
82710
84016
  } | {
82711
84017
  /** ID of the action attempt. */
82712
84018
  action_attempt_id: string;
@@ -83680,6 +84986,62 @@ interface Routes {
83680
84986
  type: string;
83681
84987
  message: string;
83682
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
+ };
83683
85045
  } | {
83684
85046
  /** ID of the action attempt. */
83685
85047
  action_attempt_id: string;
@@ -86088,6 +87450,62 @@ interface Routes {
86088
87450
  type: string;
86089
87451
  message: string;
86090
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
+ };
86091
87509
  } | {
86092
87510
  /** ID of the action attempt. */
86093
87511
  action_attempt_id: string;
@@ -87243,6 +88661,62 @@ interface Routes {
87243
88661
  type: string;
87244
88662
  message: string;
87245
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
+ };
87246
88720
  } | {
87247
88721
  /** ID of the action attempt. */
87248
88722
  action_attempt_id: string;
@@ -88235,6 +89709,62 @@ interface Routes {
88235
89709
  type: string;
88236
89710
  message: string;
88237
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
+ };
88238
89768
  } | {
88239
89769
  /** ID of the action attempt. */
88240
89770
  action_attempt_id: string;
@@ -88576,12 +90106,14 @@ interface Routes {
88576
90106
  location_ids?: string[] | undefined;
88577
90107
  /** When used, creates a new location with the given entrances and devices, and gives the user access to this location. */
88578
90108
  location?: {
90109
+ /** Name of the location. */
90110
+ name?: string | undefined;
88579
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. */
88580
90112
  acs_entrance_ids?: string[];
88581
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. */
88582
90114
  device_ids?: string[];
88583
90115
  } | undefined;
88584
- desired_access_methods: Array<{
90116
+ requested_access_methods: Array<{
88585
90117
  /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
88586
90118
  mode: 'code' | 'card' | 'mobile_key';
88587
90119
  }>;
@@ -88610,9 +90142,11 @@ interface Routes {
88610
90142
  mode: 'code' | 'card' | 'mobile_key';
88611
90143
  /** Date and time at which the requested access method was added to this access grant. */
88612
90144
  created_at: string;
88613
- /** IDs of the locations to which access is being given. */
88614
- 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[];
88615
90147
  }>;
90148
+ /** IDs of the access methods that were created for this access grant. */
90149
+ access_method_ids: string[];
88616
90150
  /** Display name of the access grant. */
88617
90151
  display_name: string;
88618
90152
  /** Date and time at which the access grant was created. */
@@ -88649,9 +90183,11 @@ interface Routes {
88649
90183
  mode: 'code' | 'card' | 'mobile_key';
88650
90184
  /** Date and time at which the requested access method was added to this access grant. */
88651
90185
  created_at: string;
88652
- /** IDs of the locations to which access is being given. */
88653
- 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[];
88654
90188
  }>;
90189
+ /** IDs of the access methods that were created for this access grant. */
90190
+ access_method_ids: string[];
88655
90191
  /** Display name of the access grant. */
88656
90192
  display_name: string;
88657
90193
  /** Date and time at which the access grant was created. */
@@ -88693,9 +90229,11 @@ interface Routes {
88693
90229
  mode: 'code' | 'card' | 'mobile_key';
88694
90230
  /** Date and time at which the requested access method was added to this access grant. */
88695
90231
  created_at: string;
88696
- /** IDs of the locations to which access is being given. */
88697
- 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[];
88698
90234
  }>;
90235
+ /** IDs of the access methods that were created for this access grant. */
90236
+ access_method_ids: string[];
88699
90237
  /** Display name of the access grant. */
88700
90238
  display_name: string;
88701
90239
  /** Date and time at which the access grant was created. */
@@ -88703,8 +90241,8 @@ interface Routes {
88703
90241
  }>;
88704
90242
  };
88705
90243
  };
88706
- '/unstable_access_grants/list_access_methods': {
88707
- route: '/unstable_access_grants/list_access_methods';
90244
+ '/unstable_access_methods/list': {
90245
+ route: '/unstable_access_methods/list';
88708
90246
  method: 'GET' | 'POST';
88709
90247
  queryParams: {};
88710
90248
  jsonBody: {};
@@ -89052,6 +90590,29 @@ interface Routes {
89052
90590
  }>;
89053
90591
  };
89054
90592
  };
90593
+ '/user_identities/generate_instant_key': {
90594
+ route: '/user_identities/generate_instant_key';
90595
+ method: 'POST';
90596
+ queryParams: {};
90597
+ jsonBody: {};
90598
+ commonParams: {
90599
+ /** ID of the user identity for which you want to generate an instant key. */
90600
+ user_identity_id: string;
90601
+ };
90602
+ formData: {};
90603
+ jsonResponse: {
90604
+ /** */
90605
+ instant_key: {
90606
+ instant_key_id: string;
90607
+ workspace_id: string;
90608
+ created_at: string;
90609
+ instant_key_url: string;
90610
+ client_session_id: string;
90611
+ user_identity_id: string;
90612
+ expires_at: string;
90613
+ };
90614
+ };
90615
+ };
89055
90616
  '/user_identities/get': {
89056
90617
  route: '/user_identities/get';
89057
90618
  method: 'GET' | 'POST';
@@ -91807,6 +93368,62 @@ interface Routes {
91807
93368
  type: string;
91808
93369
  message: string;
91809
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
+ };
91810
93427
  } | {
91811
93428
  /** ID of the action attempt. */
91812
93429
  action_attempt_id: string;
@@ -92021,4 +93638,4 @@ type RouteRequestParams<Path extends keyof Routes> = Routes[Path]['queryParams']
92021
93638
 
92022
93639
  declare const routes: {};
92023
93640
 
92024
- export { type AccessCode, type AccessCodeError, type AccessCodeWarning, type AcsAccessGroup, type AcsCredential, type AcsEncoder, type AcsEntrance, type AcsSystem, type AcsUser, type ActionAttempt, type Bridge, type ClientSession, type ConnectWebview, type ConnectedAccount, type CustomMetadata, type Device, type DeviceError, type DeviceProvider, type DeviceWarning, type NoiseThreshold, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, type SeamEvent, type SeamEventType, type ThermostatSchedule, type UnmanagedAccessCode, type UnmanagedDevice, type UserIdentity, type Webhook, type Workspace, _default as openapi, routes, schemas };
93641
+ export { type AccessCode, type AccessCodeError, type AccessCodeWarning, type AcsAccessGroup, type AcsCredential, type AcsEncoder, type AcsEntrance, type AcsSystem, type AcsUser, type ActionAttempt, type Bridge, type ClientSession, type ConnectWebview, type ConnectedAccount, type CustomMetadata, type Device, type DeviceError, type DeviceProvider, type DeviceWarning, type InstantKey, type NoiseThreshold, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, type SeamEvent, type SeamEventType, type ThermostatSchedule, type UnmanagedAccessCode, type UnmanagedDevice, type UserIdentity, type Webhook, type Workspace, _default as openapi, routes, schemas };