@seamapi/types 1.140.0 → 1.141.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 (48) hide show
  1. package/dist/connect.cjs +13 -8
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +56 -24
  4. package/lib/seam/connect/index.d.ts +2 -2
  5. package/lib/seam/connect/index.js +2 -2
  6. package/lib/seam/connect/index.js.map +1 -1
  7. package/lib/seam/connect/model-types.js.map +1 -0
  8. package/lib/seam/connect/models/connect-webview.js.map +1 -0
  9. package/lib/seam/connect/models/custom-metadata.js.map +1 -0
  10. package/lib/seam/connect/models/index.js.map +1 -0
  11. package/lib/seam/connect/openapi.d.ts +43 -24
  12. package/lib/seam/connect/openapi.js +11 -6
  13. package/lib/seam/connect/openapi.js.map +1 -1
  14. package/lib/seam/connect/route-types.d.ts +13 -0
  15. package/lib/seam/connect/schemas.js.map +1 -0
  16. package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +22 -0
  17. package/lib/seam/connect/unstable/models/devices/managed-device.js +5 -2
  18. package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
  19. package/lib/seam/connect/unstable/models/devices/phone.d.ts +3 -0
  20. package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +3 -0
  21. package/lib/seam/connect/unstable/models/devices/unmanaged-device.js +2 -3
  22. package/lib/seam/connect/unstable/models/devices/unmanaged-device.js.map +1 -1
  23. package/package.json +1 -1
  24. package/src/lib/seam/connect/index.ts +2 -2
  25. package/src/lib/seam/connect/openapi.ts +11 -6
  26. package/src/lib/seam/connect/route-types.ts +13 -0
  27. package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +7 -2
  28. package/src/lib/seam/connect/unstable/models/devices/unmanaged-device.ts +6 -4
  29. package/lib/seam/connect/stable/model-types.js.map +0 -1
  30. package/lib/seam/connect/stable/models/connect-webview.js.map +0 -1
  31. package/lib/seam/connect/stable/models/custom-metadata.js.map +0 -1
  32. package/lib/seam/connect/stable/models/index.js.map +0 -1
  33. package/lib/seam/connect/stable/schemas.js.map +0 -1
  34. /package/lib/seam/connect/{stable/model-types.d.ts → model-types.d.ts} +0 -0
  35. /package/lib/seam/connect/{stable/model-types.js → model-types.js} +0 -0
  36. /package/lib/seam/connect/{stable/models → models}/connect-webview.d.ts +0 -0
  37. /package/lib/seam/connect/{stable/models → models}/connect-webview.js +0 -0
  38. /package/lib/seam/connect/{stable/models → models}/custom-metadata.d.ts +0 -0
  39. /package/lib/seam/connect/{stable/models → models}/custom-metadata.js +0 -0
  40. /package/lib/seam/connect/{stable/models → models}/index.d.ts +0 -0
  41. /package/lib/seam/connect/{stable/models → models}/index.js +0 -0
  42. /package/lib/seam/connect/{stable/schemas.d.ts → schemas.d.ts} +0 -0
  43. /package/lib/seam/connect/{stable/schemas.js → schemas.js} +0 -0
  44. /package/src/lib/seam/connect/{stable/model-types.ts → model-types.ts} +0 -0
  45. /package/src/lib/seam/connect/{stable/models → models}/connect-webview.ts +0 -0
  46. /package/src/lib/seam/connect/{stable/models → models}/custom-metadata.ts +0 -0
  47. /package/src/lib/seam/connect/{stable/models → models}/index.ts +0 -0
  48. /package/src/lib/seam/connect/{stable/schemas.ts → schemas.ts} +0 -0
@@ -740,6 +740,9 @@ declare const _default: {
740
740
  can_remotely_unlock: {
741
741
  type: string;
742
742
  };
743
+ can_simulate_removal: {
744
+ type: string;
745
+ };
743
746
  capabilities_supported: {
744
747
  description: string;
745
748
  items: {
@@ -2388,6 +2391,9 @@ declare const _default: {
2388
2391
  can_remotely_unlock: {
2389
2392
  type: string;
2390
2393
  };
2394
+ can_simulate_removal: {
2395
+ type: string;
2396
+ };
2391
2397
  capabilities_supported: {
2392
2398
  description: string;
2393
2399
  items: {
@@ -2621,6 +2627,9 @@ declare const _default: {
2621
2627
  can_remotely_unlock: {
2622
2628
  type: string;
2623
2629
  };
2630
+ can_simulate_removal: {
2631
+ type: string;
2632
+ };
2624
2633
  capabilities_supported: {
2625
2634
  description: string;
2626
2635
  items: {
@@ -10567,20 +10576,25 @@ declare const _default: {
10567
10576
  };
10568
10577
  };
10569
10578
  security: ({
10570
- access_token: never[];
10571
- seam_workspace: never[];
10572
- seam_client_session_token?: never;
10573
- client_session_token?: never;
10579
+ client_session: never[];
10580
+ pat_with_workspace?: never;
10581
+ console_session?: never;
10582
+ api_key?: never;
10574
10583
  } | {
10575
- seam_client_session_token: never[];
10576
- access_token?: never;
10577
- seam_workspace?: never;
10578
- client_session_token?: never;
10584
+ pat_with_workspace: never[];
10585
+ client_session?: never;
10586
+ console_session?: never;
10587
+ api_key?: never;
10579
10588
  } | {
10580
- client_session_token: never[];
10581
- access_token?: never;
10582
- seam_workspace?: never;
10583
- seam_client_session_token?: never;
10589
+ console_session: never[];
10590
+ client_session?: never;
10591
+ pat_with_workspace?: never;
10592
+ api_key?: never;
10593
+ } | {
10594
+ api_key: never[];
10595
+ client_session?: never;
10596
+ pat_with_workspace?: never;
10597
+ console_session?: never;
10584
10598
  })[];
10585
10599
  summary: string;
10586
10600
  tags: string[];
@@ -11941,20 +11955,25 @@ declare const _default: {
11941
11955
  };
11942
11956
  };
11943
11957
  security: ({
11944
- access_token: never[];
11945
- seam_workspace: never[];
11946
- seam_client_session_token?: never;
11947
- client_session_token?: never;
11958
+ client_session: never[];
11959
+ pat_with_workspace?: never;
11960
+ console_session?: never;
11961
+ api_key?: never;
11948
11962
  } | {
11949
- seam_client_session_token: never[];
11950
- access_token?: never;
11951
- seam_workspace?: never;
11952
- client_session_token?: never;
11963
+ pat_with_workspace: never[];
11964
+ client_session?: never;
11965
+ console_session?: never;
11966
+ api_key?: never;
11953
11967
  } | {
11954
- client_session_token: never[];
11955
- access_token?: never;
11956
- seam_workspace?: never;
11957
- seam_client_session_token?: never;
11968
+ console_session: never[];
11969
+ client_session?: never;
11970
+ pat_with_workspace?: never;
11971
+ api_key?: never;
11972
+ } | {
11973
+ api_key: never[];
11974
+ client_session?: never;
11975
+ pat_with_workspace?: never;
11976
+ console_session?: never;
11958
11977
  })[];
11959
11978
  summary: string;
11960
11979
  tags: string[];
@@ -19659,6 +19678,7 @@ interface Routes {
19659
19678
  can_remotely_unlock?: boolean | undefined;
19660
19679
  can_remotely_lock?: boolean | undefined;
19661
19680
  can_program_online_access_codes?: boolean | undefined;
19681
+ can_simulate_removal?: boolean | undefined;
19662
19682
  };
19663
19683
  };
19664
19684
  };
@@ -20167,6 +20187,7 @@ interface Routes {
20167
20187
  can_remotely_unlock?: boolean | undefined;
20168
20188
  can_remotely_lock?: boolean | undefined;
20169
20189
  can_program_online_access_codes?: boolean | undefined;
20190
+ can_simulate_removal?: boolean | undefined;
20170
20191
  }>;
20171
20192
  };
20172
20193
  };
@@ -20276,6 +20297,7 @@ interface Routes {
20276
20297
  can_remotely_unlock?: boolean | undefined;
20277
20298
  can_remotely_lock?: boolean | undefined;
20278
20299
  can_program_online_access_codes?: boolean | undefined;
20300
+ can_simulate_removal?: boolean | undefined;
20279
20301
  };
20280
20302
  };
20281
20303
  };
@@ -20366,6 +20388,7 @@ interface Routes {
20366
20388
  can_remotely_unlock?: boolean | undefined;
20367
20389
  can_remotely_lock?: boolean | undefined;
20368
20390
  can_program_online_access_codes?: boolean | undefined;
20391
+ can_simulate_removal?: boolean | undefined;
20369
20392
  }>;
20370
20393
  };
20371
20394
  };
@@ -21019,6 +21042,7 @@ interface Routes {
21019
21042
  can_remotely_unlock?: boolean | undefined;
21020
21043
  can_remotely_lock?: boolean | undefined;
21021
21044
  can_program_online_access_codes?: boolean | undefined;
21045
+ can_simulate_removal?: boolean | undefined;
21022
21046
  };
21023
21047
  device: {
21024
21048
  /** Unique identifier for the device. */
@@ -21504,6 +21528,7 @@ interface Routes {
21504
21528
  can_remotely_unlock?: boolean | undefined;
21505
21529
  can_remotely_lock?: boolean | undefined;
21506
21530
  can_program_online_access_codes?: boolean | undefined;
21531
+ can_simulate_removal?: boolean | undefined;
21507
21532
  };
21508
21533
  };
21509
21534
  };
@@ -22012,6 +22037,7 @@ interface Routes {
22012
22037
  can_remotely_unlock?: boolean | undefined;
22013
22038
  can_remotely_lock?: boolean | undefined;
22014
22039
  can_program_online_access_codes?: boolean | undefined;
22040
+ can_simulate_removal?: boolean | undefined;
22015
22041
  }>;
22016
22042
  devices: Array<{
22017
22043
  /** Unique identifier for the device. */
@@ -22497,6 +22523,7 @@ interface Routes {
22497
22523
  can_remotely_unlock?: boolean | undefined;
22498
22524
  can_remotely_lock?: boolean | undefined;
22499
22525
  can_program_online_access_codes?: boolean | undefined;
22526
+ can_simulate_removal?: boolean | undefined;
22500
22527
  }>;
22501
22528
  };
22502
22529
  };
@@ -22851,6 +22878,7 @@ interface Routes {
22851
22878
  can_remotely_unlock?: boolean | undefined;
22852
22879
  can_remotely_lock?: boolean | undefined;
22853
22880
  can_program_online_access_codes?: boolean | undefined;
22881
+ can_simulate_removal?: boolean | undefined;
22854
22882
  }>;
22855
22883
  };
22856
22884
  };
@@ -22925,6 +22953,7 @@ interface Routes {
22925
22953
  can_remotely_unlock?: boolean | undefined;
22926
22954
  can_remotely_lock?: boolean | undefined;
22927
22955
  can_program_online_access_codes?: boolean | undefined;
22956
+ can_simulate_removal?: boolean | undefined;
22928
22957
  };
22929
22958
  };
22930
22959
  };
@@ -23621,6 +23650,7 @@ interface Routes {
23621
23650
  can_remotely_unlock?: boolean | undefined;
23622
23651
  can_remotely_lock?: boolean | undefined;
23623
23652
  can_program_online_access_codes?: boolean | undefined;
23653
+ can_simulate_removal?: boolean | undefined;
23624
23654
  };
23625
23655
  };
23626
23656
  };
@@ -24205,6 +24235,7 @@ interface Routes {
24205
24235
  can_remotely_unlock?: boolean | undefined;
24206
24236
  can_remotely_lock?: boolean | undefined;
24207
24237
  can_program_online_access_codes?: boolean | undefined;
24238
+ can_simulate_removal?: boolean | undefined;
24208
24239
  }>;
24209
24240
  };
24210
24241
  };
@@ -24974,6 +25005,7 @@ interface Routes {
24974
25005
  can_remotely_unlock?: boolean | undefined;
24975
25006
  can_remotely_lock?: boolean | undefined;
24976
25007
  can_program_online_access_codes?: boolean | undefined;
25008
+ can_simulate_removal?: boolean | undefined;
24977
25009
  }>;
24978
25010
  };
24979
25011
  };
@@ -1,6 +1,6 @@
1
- import * as schemas from './stable/schemas.js';
1
+ import * as schemas from './schemas.js';
2
2
  export { schemas };
3
+ export * from './model-types.js';
3
4
  export { default as openapi } from './openapi.js';
4
5
  export * from './route-types.js';
5
- export * from './stable/model-types.js';
6
6
  export declare const routes: {};
@@ -1,8 +1,8 @@
1
- import * as schemas from './stable/schemas.js';
1
+ import * as schemas from './schemas.js';
2
2
  export { schemas };
3
+ export * from './model-types.js';
3
4
  export { default as openapi } from './openapi.js';
4
5
  export * from './route-types.js';
5
- export * from './stable/model-types.js';
6
6
  // UPSTREAM: Reserve this named export until nextlove is able to generate this.
7
7
  export const routes = {};
8
8
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/seam/connect/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,qBAAqB,CAAA;AAE9C,OAAO,EAAE,OAAO,EAAE,CAAA;AAElB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAA;AACjD,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AAEvC,+EAA+E;AAC/E,MAAM,CAAC,MAAM,MAAM,GAAG,EAAE,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/seam/connect/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,cAAc,CAAA;AAEvC,OAAO,EAAE,OAAO,EAAE,CAAA;AAElB,cAAc,kBAAkB,CAAA;AAChC,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAA;AACjD,cAAc,kBAAkB,CAAA;AAEhC,+EAA+E;AAC/E,MAAM,CAAC,MAAM,MAAM,GAAG,EAAE,CAAA"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"model-types.js","sourceRoot":"","sources":["../../../src/lib/seam/connect/model-types.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"connect-webview.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/connect-webview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAEtD,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACrC,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAClD,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACrB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,qBAAqB,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,QAAQ,EAAE,UAAU,CAAC,CAAC;IAC7D,kBAAkB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACvC,gBAAgB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACrC,oBAAoB,EAAE,CAAC,CAAC,OAAO,EAAE;IACjC,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC7B,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC;IACnD,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IAChD,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACxD,eAAe;IACf,gCAAgC,EAAE,CAAC,CAAC,OAAO,EAAE;IAC7C,wBAAwB,EAAE,CAAC,CAAC,OAAO,EAAE;IACrC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC/C,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACzC,CAAC,CAAA"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"custom-metadata.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/custom-metadata.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC;KAC7B,MAAM,CACL,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAClB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,CACtD;KACA,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,IAAI,EAAE,EAAE;IAC9C,OAAO,EAAE,oDAAoD;CAC9D,CAAC,CAAA"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA"}
@@ -666,6 +666,9 @@ declare const _default: {
666
666
  can_remotely_unlock: {
667
667
  type: string;
668
668
  };
669
+ can_simulate_removal: {
670
+ type: string;
671
+ };
669
672
  capabilities_supported: {
670
673
  description: string;
671
674
  items: {
@@ -2314,6 +2317,9 @@ declare const _default: {
2314
2317
  can_remotely_unlock: {
2315
2318
  type: string;
2316
2319
  };
2320
+ can_simulate_removal: {
2321
+ type: string;
2322
+ };
2317
2323
  capabilities_supported: {
2318
2324
  description: string;
2319
2325
  items: {
@@ -2547,6 +2553,9 @@ declare const _default: {
2547
2553
  can_remotely_unlock: {
2548
2554
  type: string;
2549
2555
  };
2556
+ can_simulate_removal: {
2557
+ type: string;
2558
+ };
2550
2559
  capabilities_supported: {
2551
2560
  description: string;
2552
2561
  items: {
@@ -10493,20 +10502,25 @@ declare const _default: {
10493
10502
  };
10494
10503
  };
10495
10504
  security: ({
10496
- access_token: never[];
10497
- seam_workspace: never[];
10498
- seam_client_session_token?: never;
10499
- client_session_token?: never;
10505
+ client_session: never[];
10506
+ pat_with_workspace?: never;
10507
+ console_session?: never;
10508
+ api_key?: never;
10500
10509
  } | {
10501
- seam_client_session_token: never[];
10502
- access_token?: never;
10503
- seam_workspace?: never;
10504
- client_session_token?: never;
10510
+ pat_with_workspace: never[];
10511
+ client_session?: never;
10512
+ console_session?: never;
10513
+ api_key?: never;
10505
10514
  } | {
10506
- client_session_token: never[];
10507
- access_token?: never;
10508
- seam_workspace?: never;
10509
- seam_client_session_token?: never;
10515
+ console_session: never[];
10516
+ client_session?: never;
10517
+ pat_with_workspace?: never;
10518
+ api_key?: never;
10519
+ } | {
10520
+ api_key: never[];
10521
+ client_session?: never;
10522
+ pat_with_workspace?: never;
10523
+ console_session?: never;
10510
10524
  })[];
10511
10525
  summary: string;
10512
10526
  tags: string[];
@@ -11867,20 +11881,25 @@ declare const _default: {
11867
11881
  };
11868
11882
  };
11869
11883
  security: ({
11870
- access_token: never[];
11871
- seam_workspace: never[];
11872
- seam_client_session_token?: never;
11873
- client_session_token?: never;
11884
+ client_session: never[];
11885
+ pat_with_workspace?: never;
11886
+ console_session?: never;
11887
+ api_key?: never;
11874
11888
  } | {
11875
- seam_client_session_token: never[];
11876
- access_token?: never;
11877
- seam_workspace?: never;
11878
- client_session_token?: never;
11889
+ pat_with_workspace: never[];
11890
+ client_session?: never;
11891
+ console_session?: never;
11892
+ api_key?: never;
11879
11893
  } | {
11880
- client_session_token: never[];
11881
- access_token?: never;
11882
- seam_workspace?: never;
11883
- seam_client_session_token?: never;
11894
+ console_session: never[];
11895
+ client_session?: never;
11896
+ pat_with_workspace?: never;
11897
+ api_key?: never;
11898
+ } | {
11899
+ api_key: never[];
11900
+ client_session?: never;
11901
+ pat_with_workspace?: never;
11902
+ console_session?: never;
11884
11903
  })[];
11885
11904
  summary: string;
11886
11905
  tags: string[];
@@ -507,6 +507,7 @@ export default {
507
507
  can_program_online_access_codes: { type: 'boolean' },
508
508
  can_remotely_lock: { type: 'boolean' },
509
509
  can_remotely_unlock: { type: 'boolean' },
510
+ can_simulate_removal: { type: 'boolean' },
510
511
  capabilities_supported: {
511
512
  description: 'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
512
513
  items: {
@@ -1852,6 +1853,7 @@ export default {
1852
1853
  can_program_online_access_codes: { type: 'boolean' },
1853
1854
  can_remotely_lock: { type: 'boolean' },
1854
1855
  can_remotely_unlock: { type: 'boolean' },
1856
+ can_simulate_removal: { type: 'boolean' },
1855
1857
  capabilities_supported: {
1856
1858
  description: 'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
1857
1859
  items: {
@@ -2066,6 +2068,7 @@ export default {
2066
2068
  can_program_online_access_codes: { type: 'boolean' },
2067
2069
  can_remotely_lock: { type: 'boolean' },
2068
2070
  can_remotely_unlock: { type: 'boolean' },
2071
+ can_simulate_removal: { type: 'boolean' },
2069
2072
  capabilities_supported: {
2070
2073
  description: 'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
2071
2074
  items: {
@@ -7662,9 +7665,10 @@ export default {
7662
7665
  401: { description: 'Unauthorized' },
7663
7666
  },
7664
7667
  security: [
7665
- { access_token: [], seam_workspace: [] },
7666
- { seam_client_session_token: [] },
7667
- { client_session_token: [] },
7668
+ { client_session: [] },
7669
+ { pat_with_workspace: [] },
7670
+ { console_session: [] },
7671
+ { api_key: [] },
7668
7672
  ],
7669
7673
  summary: '/devices/get',
7670
7674
  tags: ['/devices'],
@@ -8965,9 +8969,10 @@ export default {
8965
8969
  401: { description: 'Unauthorized' },
8966
8970
  },
8967
8971
  security: [
8968
- { access_token: [], seam_workspace: [] },
8969
- { seam_client_session_token: [] },
8970
- { client_session_token: [] },
8972
+ { client_session: [] },
8973
+ { pat_with_workspace: [] },
8974
+ { console_session: [] },
8975
+ { api_key: [] },
8971
8976
  ],
8972
8977
  summary: '/locks/get',
8973
8978
  tags: ['/locks'],