@seamapi/types 1.766.0 → 1.768.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 (42) hide show
  1. package/dist/connect.cjs +410 -130
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +2887 -10
  4. package/dist/index.cjs +410 -130
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +75 -0
  7. package/lib/seam/connect/models/action-attempts/action-attempt.js +2 -0
  8. package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
  9. package/lib/seam/connect/models/action-attempts/configure-auto-lock.d.ts +77 -0
  10. package/lib/seam/connect/models/action-attempts/configure-auto-lock.js +31 -0
  11. package/lib/seam/connect/models/action-attempts/configure-auto-lock.js.map +1 -0
  12. package/lib/seam/connect/models/batch.d.ts +166 -0
  13. package/lib/seam/connect/models/customer/customer-portal.js +6 -2
  14. package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
  15. package/lib/seam/connect/models/customer/user-identity-resources.js +1 -0
  16. package/lib/seam/connect/models/customer/user-identity-resources.js.map +1 -1
  17. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +6 -0
  18. package/lib/seam/connect/models/devices/capability-properties/lock.d.ts +6 -0
  19. package/lib/seam/connect/models/devices/capability-properties/lock.js +12 -0
  20. package/lib/seam/connect/models/devices/capability-properties/lock.js.map +1 -1
  21. package/lib/seam/connect/models/devices/device-metadata.d.ts +7 -0
  22. package/lib/seam/connect/models/devices/device-metadata.js +3 -0
  23. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  24. package/lib/seam/connect/models/devices/device-provider.d.ts +3 -0
  25. package/lib/seam/connect/models/devices/device.d.ts +25 -0
  26. package/lib/seam/connect/models/devices/device.js +1 -0
  27. package/lib/seam/connect/models/devices/device.js.map +1 -1
  28. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +17 -0
  29. package/lib/seam/connect/openapi.d.ts +142 -0
  30. package/lib/seam/connect/openapi.js +239 -0
  31. package/lib/seam/connect/openapi.js.map +1 -1
  32. package/lib/seam/connect/route-types.d.ts +2758 -306
  33. package/package.json +1 -1
  34. package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +2 -0
  35. package/src/lib/seam/connect/models/action-attempts/configure-auto-lock.ts +46 -0
  36. package/src/lib/seam/connect/models/customer/customer-portal.ts +6 -4
  37. package/src/lib/seam/connect/models/customer/user-identity-resources.ts +1 -0
  38. package/src/lib/seam/connect/models/devices/capability-properties/lock.ts +12 -0
  39. package/src/lib/seam/connect/models/devices/device-metadata.ts +5 -0
  40. package/src/lib/seam/connect/models/devices/device.ts +1 -0
  41. package/src/lib/seam/connect/openapi.ts +264 -0
  42. package/src/lib/seam/connect/route-types.ts +3085 -330
@@ -8834,6 +8834,119 @@ export default {
8834
8834
  ],
8835
8835
  type: 'object',
8836
8836
  },
8837
+ {
8838
+ description: 'Configuring the auto-lock is pending.',
8839
+ properties: {
8840
+ action_attempt_id: {
8841
+ description: 'ID of the action attempt.',
8842
+ format: 'uuid',
8843
+ type: 'string',
8844
+ },
8845
+ action_type: {
8846
+ description:
8847
+ 'Action attempt to track the status of configuring the auto-lock on a lock.',
8848
+ enum: ['CONFIGURE_AUTO_LOCK'],
8849
+ type: 'string',
8850
+ },
8851
+ error: {
8852
+ description:
8853
+ 'Errors associated with the action attempt. Null for pending action attempts.',
8854
+ nullable: true,
8855
+ },
8856
+ result: {
8857
+ description:
8858
+ 'Result of the action attempt. Null for pending action attempts.',
8859
+ nullable: true,
8860
+ },
8861
+ status: { enum: ['pending'], type: 'string' },
8862
+ },
8863
+ required: [
8864
+ 'action_attempt_id',
8865
+ 'status',
8866
+ 'result',
8867
+ 'error',
8868
+ 'action_type',
8869
+ ],
8870
+ type: 'object',
8871
+ },
8872
+ {
8873
+ description: 'Configuring the auto-lock succeeded.',
8874
+ properties: {
8875
+ action_attempt_id: {
8876
+ description: 'ID of the action attempt.',
8877
+ format: 'uuid',
8878
+ type: 'string',
8879
+ },
8880
+ action_type: {
8881
+ description:
8882
+ 'Action attempt to track the status of configuring the auto-lock on a lock.',
8883
+ enum: ['CONFIGURE_AUTO_LOCK'],
8884
+ type: 'string',
8885
+ },
8886
+ error: {
8887
+ description:
8888
+ 'Errors associated with the action attempt. Null for successful action attempts.',
8889
+ nullable: true,
8890
+ },
8891
+ result: {
8892
+ description: 'Result of the action.',
8893
+ properties: {},
8894
+ type: 'object',
8895
+ },
8896
+ status: { enum: ['success'], type: 'string' },
8897
+ },
8898
+ required: [
8899
+ 'action_attempt_id',
8900
+ 'status',
8901
+ 'error',
8902
+ 'action_type',
8903
+ 'result',
8904
+ ],
8905
+ type: 'object',
8906
+ },
8907
+ {
8908
+ description: 'Configuring the auto-lock failed.',
8909
+ properties: {
8910
+ action_attempt_id: {
8911
+ description: 'ID of the action attempt.',
8912
+ format: 'uuid',
8913
+ type: 'string',
8914
+ },
8915
+ action_type: {
8916
+ description:
8917
+ 'Action attempt to track the status of configuring the auto-lock on a lock.',
8918
+ enum: ['CONFIGURE_AUTO_LOCK'],
8919
+ type: 'string',
8920
+ },
8921
+ error: {
8922
+ description: 'Error associated with the action.',
8923
+ properties: {
8924
+ message: {
8925
+ description:
8926
+ 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
8927
+ type: 'string',
8928
+ },
8929
+ type: { description: 'Type of the error.', type: 'string' },
8930
+ },
8931
+ required: ['type', 'message'],
8932
+ type: 'object',
8933
+ },
8934
+ result: {
8935
+ description:
8936
+ 'Result of the action attempt. Null for failed action attempts.',
8937
+ nullable: true,
8938
+ },
8939
+ status: { enum: ['error'], type: 'string' },
8940
+ },
8941
+ required: [
8942
+ 'action_attempt_id',
8943
+ 'status',
8944
+ 'result',
8945
+ 'action_type',
8946
+ 'error',
8947
+ ],
8948
+ type: 'object',
8949
+ },
8837
8950
  {
8838
8951
  properties: {
8839
8952
  action_attempt_id: {
@@ -10755,6 +10868,7 @@ export default {
10755
10868
  description:
10756
10869
  'Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam.',
10757
10870
  properties: {
10871
+ can_configure_auto_lock: { type: 'boolean' },
10758
10872
  can_hvac_cool: { type: 'boolean' },
10759
10873
  can_hvac_heat: { type: 'boolean' },
10760
10874
  can_hvac_heat_cool: { type: 'boolean' },
@@ -12951,6 +13065,11 @@ export default {
12951
13065
  features: {
12952
13066
  description: 'Features for a TTLock device.',
12953
13067
  properties: {
13068
+ auto_lock_time_config: {
13069
+ description:
13070
+ 'Indicates whether a TTLock device supports auto-lock time configuration.',
13071
+ type: 'boolean',
13072
+ },
12954
13073
  incomplete_keyboard_passcode: {
12955
13074
  description:
12956
13075
  'Indicates whether a TTLock device supports an incomplete keyboard passcode.',
@@ -12989,6 +13108,7 @@ export default {
12989
13108
  'lock_command',
12990
13109
  'incomplete_keyboard_passcode',
12991
13110
  'wifi',
13111
+ 'auto_lock_time_config',
12992
13112
  ],
12993
13113
  type: 'object',
12994
13114
  },
@@ -13163,6 +13283,19 @@ export default {
13163
13283
  type: 'array',
13164
13284
  'x-undocumented': 'Marked as experimental.',
13165
13285
  },
13286
+ auto_lock_delay_seconds: {
13287
+ description:
13288
+ 'The delay in seconds before the lock automatically locks after being unlocked.',
13289
+ format: 'float',
13290
+ type: 'number',
13291
+ 'x-property-group-key': 'locks',
13292
+ },
13293
+ auto_lock_enabled: {
13294
+ description:
13295
+ 'Indicates whether automatic locking is enabled.',
13296
+ type: 'boolean',
13297
+ 'x-property-group-key': 'locks',
13298
+ },
13166
13299
  code_constraints: {
13167
13300
  description:
13168
13301
  'Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific.',
@@ -14837,6 +14970,7 @@ export default {
14837
14970
  },
14838
14971
  device_provider: {
14839
14972
  properties: {
14973
+ can_configure_auto_lock: { type: 'boolean' },
14840
14974
  can_hvac_cool: { type: 'boolean' },
14841
14975
  can_hvac_heat: { type: 'boolean' },
14842
14976
  can_hvac_heat_cool: { type: 'boolean' },
@@ -25256,6 +25390,7 @@ export default {
25256
25390
  required: ['name', 'staff_member_key'],
25257
25391
  type: 'object',
25258
25392
  'x-route-path': '/seam/customer/v1/staff_members',
25393
+ 'x-undocumented': 'Internal resource for customer portals.',
25259
25394
  },
25260
25395
  thermostat_daily_program: {
25261
25396
  description:
@@ -28945,6 +29080,7 @@ export default {
28945
29080
  description:
28946
29081
  'Represents an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices). An unmanaged device has a limited set of visible properties and a subset of supported events. You cannot control an unmanaged device. Any [access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) on an unmanaged device are unmanaged. To control an unmanaged device with Seam, [convert it to a managed device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices#convert-an-unmanaged-device-to-managed).',
28947
29082
  properties: {
29083
+ can_configure_auto_lock: { type: 'boolean' },
28948
29084
  can_hvac_cool: { type: 'boolean' },
28949
29085
  can_hvac_heat: { type: 'boolean' },
28950
29086
  can_hvac_heat_cool: { type: 'boolean' },
@@ -31724,6 +31860,8 @@ export default {
31724
31860
  },
31725
31861
  timeline_events: {
31726
31862
  items: {
31863
+ description:
31864
+ 'Timeline event for access code lifecycle activity.',
31727
31865
  properties: {
31728
31866
  actor: {
31729
31867
  description:
@@ -31789,6 +31927,7 @@ export default {
31789
31927
  'access_code.unmanaged.failed_to_convert_to_managed',
31790
31928
  ],
31791
31929
  type: 'string',
31930
+ 'x-undocumented': 'Unreleased.',
31792
31931
  },
31793
31932
  occurred_at: {
31794
31933
  description:
@@ -31828,6 +31967,7 @@ export default {
31828
31967
  'actor',
31829
31968
  ],
31830
31969
  type: 'object',
31970
+ 'x-undocumented': 'Unreleased.',
31831
31971
  },
31832
31972
  type: 'array',
31833
31973
  },
@@ -31856,6 +31996,7 @@ export default {
31856
31996
  'x-fern-sdk-return-value': 'timeline_events',
31857
31997
  'x-response-key': 'timeline_events',
31858
31998
  'x-title': 'Get Access Code Timeline',
31999
+ 'x-undocumented': 'Unreleased.',
31859
32000
  },
31860
32001
  post: {
31861
32002
  description:
@@ -31944,6 +32085,8 @@ export default {
31944
32085
  },
31945
32086
  timeline_events: {
31946
32087
  items: {
32088
+ description:
32089
+ 'Timeline event for access code lifecycle activity.',
31947
32090
  properties: {
31948
32091
  actor: {
31949
32092
  description:
@@ -32009,6 +32152,7 @@ export default {
32009
32152
  'access_code.unmanaged.failed_to_convert_to_managed',
32010
32153
  ],
32011
32154
  type: 'string',
32155
+ 'x-undocumented': 'Unreleased.',
32012
32156
  },
32013
32157
  occurred_at: {
32014
32158
  description:
@@ -32048,6 +32192,7 @@ export default {
32048
32192
  'actor',
32049
32193
  ],
32050
32194
  type: 'object',
32195
+ 'x-undocumented': 'Unreleased.',
32051
32196
  },
32052
32197
  type: 'array',
32053
32198
  },
@@ -32076,6 +32221,7 @@ export default {
32076
32221
  'x-fern-sdk-return-value': 'timeline_events',
32077
32222
  'x-response-key': 'timeline_events',
32078
32223
  'x-title': 'Get Access Code Timeline',
32224
+ 'x-undocumented': 'Unreleased.',
32079
32225
  },
32080
32226
  },
32081
32227
  '/access_codes/list': {
@@ -49517,6 +49663,8 @@ export default {
49517
49663
  },
49518
49664
  required: ['resource_type', 'resource_key'],
49519
49665
  type: 'object',
49666
+ 'x-undocumented':
49667
+ 'Internal endpoint for customer portals.',
49520
49668
  },
49521
49669
  exclude_locale_picker: {
49522
49670
  default: false,
@@ -50519,6 +50667,8 @@ export default {
50519
50667
  required: ['name', 'staff_member_key'],
50520
50668
  type: 'object',
50521
50669
  'x-route-path': '/seam/customer/v1/staff_members',
50670
+ 'x-undocumented':
50671
+ 'Internal resource for customer portals.',
50522
50672
  },
50523
50673
  type: 'array',
50524
50674
  },
@@ -51752,6 +51902,8 @@ export default {
51752
51902
  required: ['name', 'staff_member_key'],
51753
51903
  type: 'object',
51754
51904
  'x-route-path': '/seam/customer/v1/staff_members',
51905
+ 'x-undocumented':
51906
+ 'Internal resource for customer portals.',
51755
51907
  },
51756
51908
  type: 'array',
51757
51909
  },
@@ -51986,6 +52138,7 @@ export default {
51986
52138
  'x-fern-sdk-return-value': 'deep_link',
51987
52139
  'x-response-key': 'deep_link',
51988
52140
  'x-title': 'Create Reservation Deep Link',
52141
+ 'x-undocumented': 'Internal endpoint for customer portals.',
51989
52142
  },
51990
52143
  },
51991
52144
  '/devices/delete': {
@@ -52543,6 +52696,7 @@ export default {
52543
52696
  'can_simulate_hub_connection',
52544
52697
  'can_simulate_hub_disconnection',
52545
52698
  'can_simulate_paid_subscription',
52699
+ 'can_configure_auto_lock',
52546
52700
  ],
52547
52701
  type: 'string',
52548
52702
  },
@@ -52575,6 +52729,7 @@ export default {
52575
52729
  'can_simulate_hub_connection',
52576
52730
  'can_simulate_hub_disconnection',
52577
52731
  'can_simulate_paid_subscription',
52732
+ 'can_configure_auto_lock',
52578
52733
  ],
52579
52734
  type: 'string',
52580
52735
  },
@@ -52875,6 +53030,7 @@ export default {
52875
53030
  'can_simulate_hub_connection',
52876
53031
  'can_simulate_hub_disconnection',
52877
53032
  'can_simulate_paid_subscription',
53033
+ 'can_configure_auto_lock',
52878
53034
  ],
52879
53035
  type: 'string',
52880
53036
  },
@@ -52903,6 +53059,7 @@ export default {
52903
53059
  'can_simulate_hub_connection',
52904
53060
  'can_simulate_hub_disconnection',
52905
53061
  'can_simulate_paid_subscription',
53062
+ 'can_configure_auto_lock',
52906
53063
  ],
52907
53064
  type: 'string',
52908
53065
  },
@@ -54426,6 +54583,7 @@ export default {
54426
54583
  'can_simulate_hub_connection',
54427
54584
  'can_simulate_hub_disconnection',
54428
54585
  'can_simulate_paid_subscription',
54586
+ 'can_configure_auto_lock',
54429
54587
  ],
54430
54588
  type: 'string',
54431
54589
  },
@@ -54458,6 +54616,7 @@ export default {
54458
54616
  'can_simulate_hub_connection',
54459
54617
  'can_simulate_hub_disconnection',
54460
54618
  'can_simulate_paid_subscription',
54619
+ 'can_configure_auto_lock',
54461
54620
  ],
54462
54621
  type: 'string',
54463
54622
  },
@@ -54768,6 +54927,7 @@ export default {
54768
54927
  'can_simulate_hub_connection',
54769
54928
  'can_simulate_hub_disconnection',
54770
54929
  'can_simulate_paid_subscription',
54930
+ 'can_configure_auto_lock',
54771
54931
  ],
54772
54932
  type: 'string',
54773
54933
  },
@@ -54796,6 +54956,7 @@ export default {
54796
54956
  'can_simulate_hub_connection',
54797
54957
  'can_simulate_hub_disconnection',
54798
54958
  'can_simulate_paid_subscription',
54959
+ 'can_configure_auto_lock',
54799
54960
  ],
54800
54961
  type: 'string',
54801
54962
  },
@@ -56671,6 +56832,78 @@ export default {
56671
56832
  'x-title': 'List Instant Keys',
56672
56833
  },
56673
56834
  },
56835
+ '/locks/configure_auto_lock': {
56836
+ post: {
56837
+ description:
56838
+ 'Configures the auto-lock setting for a specified [lock](https://docs.seam.co/latest/capability-guides/smart-locks).',
56839
+ operationId: 'locksConfigureAutoLockPost',
56840
+ requestBody: {
56841
+ content: {
56842
+ 'application/json': {
56843
+ schema: {
56844
+ properties: {
56845
+ auto_lock_delay_seconds: {
56846
+ description:
56847
+ 'Delay in seconds before the lock automatically locks. Required when enabling auto-lock. Must be between 1 and 60.',
56848
+ format: 'float',
56849
+ maximum: 60,
56850
+ minimum: 1,
56851
+ type: 'number',
56852
+ },
56853
+ auto_lock_enabled: {
56854
+ description: 'Whether to enable or disable auto-lock.',
56855
+ type: 'boolean',
56856
+ },
56857
+ device_id: {
56858
+ description:
56859
+ 'ID of the lock for which you want to configure the auto-lock.',
56860
+ format: 'uuid',
56861
+ type: 'string',
56862
+ },
56863
+ },
56864
+ required: ['device_id', 'auto_lock_enabled'],
56865
+ type: 'object',
56866
+ },
56867
+ },
56868
+ },
56869
+ },
56870
+ responses: {
56871
+ 200: {
56872
+ content: {
56873
+ 'application/json': {
56874
+ schema: {
56875
+ properties: {
56876
+ action_attempt: {
56877
+ $ref: '#/components/schemas/action_attempt',
56878
+ },
56879
+ ok: { type: 'boolean' },
56880
+ },
56881
+ required: ['action_attempt', 'ok'],
56882
+ type: 'object',
56883
+ },
56884
+ },
56885
+ },
56886
+ description: 'OK',
56887
+ },
56888
+ 400: { description: 'Bad Request' },
56889
+ 401: { description: 'Unauthorized' },
56890
+ },
56891
+ security: [
56892
+ { client_session: [] },
56893
+ { pat_with_workspace: [] },
56894
+ { console_session_with_workspace: [] },
56895
+ { api_key: [] },
56896
+ ],
56897
+ summary: '/locks/configure_auto_lock',
56898
+ tags: ['/locks'],
56899
+ 'x-action-attempt-type': 'CONFIGURE_AUTO_LOCK',
56900
+ 'x-fern-sdk-group-name': ['locks'],
56901
+ 'x-fern-sdk-method-name': 'configure_auto_lock',
56902
+ 'x-fern-sdk-return-value': 'action_attempt',
56903
+ 'x-response-key': 'action_attempt',
56904
+ 'x-title': 'Configure Auto-Lock',
56905
+ },
56906
+ },
56674
56907
  '/locks/get': {
56675
56908
  get: {
56676
56909
  description:
@@ -57038,6 +57271,7 @@ export default {
57038
57271
  'can_simulate_hub_connection',
57039
57272
  'can_simulate_hub_disconnection',
57040
57273
  'can_simulate_paid_subscription',
57274
+ 'can_configure_auto_lock',
57041
57275
  ],
57042
57276
  type: 'string',
57043
57277
  },
@@ -57070,6 +57304,7 @@ export default {
57070
57304
  'can_simulate_hub_connection',
57071
57305
  'can_simulate_hub_disconnection',
57072
57306
  'can_simulate_paid_subscription',
57307
+ 'can_configure_auto_lock',
57073
57308
  ],
57074
57309
  type: 'string',
57075
57310
  },
@@ -57295,6 +57530,7 @@ export default {
57295
57530
  'can_simulate_hub_connection',
57296
57531
  'can_simulate_hub_disconnection',
57297
57532
  'can_simulate_paid_subscription',
57533
+ 'can_configure_auto_lock',
57298
57534
  ],
57299
57535
  type: 'string',
57300
57536
  },
@@ -57323,6 +57559,7 @@ export default {
57323
57559
  'can_simulate_hub_connection',
57324
57560
  'can_simulate_hub_disconnection',
57325
57561
  'can_simulate_paid_subscription',
57562
+ 'can_configure_auto_lock',
57326
57563
  ],
57327
57564
  type: 'string',
57328
57565
  },
@@ -57867,6 +58104,7 @@ export default {
57867
58104
  'can_simulate_hub_connection',
57868
58105
  'can_simulate_hub_disconnection',
57869
58106
  'can_simulate_paid_subscription',
58107
+ 'can_configure_auto_lock',
57870
58108
  ],
57871
58109
  type: 'string',
57872
58110
  },
@@ -57899,6 +58137,7 @@ export default {
57899
58137
  'can_simulate_hub_connection',
57900
58138
  'can_simulate_hub_disconnection',
57901
58139
  'can_simulate_paid_subscription',
58140
+ 'can_configure_auto_lock',
57902
58141
  ],
57903
58142
  type: 'string',
57904
58143
  },
@@ -58068,6 +58307,7 @@ export default {
58068
58307
  'can_simulate_hub_connection',
58069
58308
  'can_simulate_hub_disconnection',
58070
58309
  'can_simulate_paid_subscription',
58310
+ 'can_configure_auto_lock',
58071
58311
  ],
58072
58312
  type: 'string',
58073
58313
  },
@@ -58096,6 +58336,7 @@ export default {
58096
58336
  'can_simulate_hub_connection',
58097
58337
  'can_simulate_hub_disconnection',
58098
58338
  'can_simulate_paid_subscription',
58339
+ 'can_configure_auto_lock',
58099
58340
  ],
58100
58341
  type: 'string',
58101
58342
  },
@@ -63970,6 +64211,7 @@ export default {
63970
64211
  'x-fern-sdk-return-value': 'automation',
63971
64212
  'x-response-key': 'automation',
63972
64213
  'x-title': 'Get Customer Automation Configuration',
64214
+ 'x-undocumented': 'Internal endpoint for customer portals.',
63973
64215
  },
63974
64216
  post: {
63975
64217
  description:
@@ -64268,6 +64510,7 @@ export default {
64268
64510
  'x-fern-sdk-return-value': 'automation',
64269
64511
  'x-response-key': 'automation',
64270
64512
  'x-title': 'Get Customer Automation Configuration',
64513
+ 'x-undocumented': 'Internal endpoint for customer portals.',
64271
64514
  },
64272
64515
  },
64273
64516
  '/seam/customer/v1/customers/automations/update': {
@@ -64556,6 +64799,7 @@ export default {
64556
64799
  'x-fern-sdk-method-name': 'update',
64557
64800
  'x-response-key': null,
64558
64801
  'x-title': 'Update Customer Automation Configuration',
64802
+ 'x-undocumented': 'Internal endpoint for customer portals.',
64559
64803
  },
64560
64804
  post: {
64561
64805
  description:
@@ -64842,6 +65086,7 @@ export default {
64842
65086
  'x-fern-sdk-method-name': 'update',
64843
65087
  'x-response-key': null,
64844
65088
  'x-title': 'Update Customer Automation Configuration',
65089
+ 'x-undocumented': 'Internal endpoint for customer portals.',
64845
65090
  },
64846
65091
  },
64847
65092
  '/seam/customer/v1/customers/list': {
@@ -65026,6 +65271,7 @@ export default {
65026
65271
  'x-fern-sdk-method-name': 'me',
65027
65272
  'x-response-key': null,
65028
65273
  'x-title': 'Me',
65274
+ 'x-undocumented': 'Internal endpoint for customer portals.',
65029
65275
  },
65030
65276
  post: {
65031
65277
  description:
@@ -65062,6 +65308,7 @@ export default {
65062
65308
  'x-fern-sdk-method-name': 'me',
65063
65309
  'x-response-key': null,
65064
65310
  'x-title': 'Me',
65311
+ 'x-undocumented': 'Internal endpoint for customer portals.',
65065
65312
  },
65066
65313
  },
65067
65314
  '/seam/customer/v1/customers/open_portal': {
@@ -65926,6 +66173,8 @@ export default {
65926
66173
  },
65927
66174
  required: ['resource_type', 'resource_key'],
65928
66175
  type: 'object',
66176
+ 'x-undocumented':
66177
+ 'Internal endpoint for customer portals.',
65929
66178
  },
65930
66179
  exclude_locale_picker: {
65931
66180
  default: false,
@@ -66331,6 +66580,8 @@ export default {
66331
66580
  },
66332
66581
  required: ['resource_type', 'resource_key'],
66333
66582
  type: 'object',
66583
+ 'x-undocumented':
66584
+ 'Internal endpoint for customer portals.',
66334
66585
  },
66335
66586
  exclude_locale_picker: {
66336
66587
  default: false,
@@ -69040,6 +69291,7 @@ export default {
69040
69291
  'x-fern-sdk-method-name': 'push_common_areas',
69041
69292
  'x-response-key': null,
69042
69293
  'x-title': 'Push Common Areas',
69294
+ 'x-undocumented': 'Internal endpoint for customer portals.',
69043
69295
  },
69044
69296
  },
69045
69297
  '/seam/customer/v1/staff_members/get': {
@@ -69113,6 +69365,8 @@ export default {
69113
69365
  required: ['staff_member_key', 'name'],
69114
69366
  type: 'object',
69115
69367
  'x-route-path': '/seam/customer/v1/staff_members',
69368
+ 'x-undocumented':
69369
+ 'Internal resource for customer portals.',
69116
69370
  },
69117
69371
  },
69118
69372
  required: ['access_grant', 'spaces', 'staff_member', 'ok'],
@@ -69210,6 +69464,8 @@ export default {
69210
69464
  required: ['staff_member_key', 'name'],
69211
69465
  type: 'object',
69212
69466
  'x-route-path': '/seam/customer/v1/staff_members',
69467
+ 'x-undocumented':
69468
+ 'Internal resource for customer portals.',
69213
69469
  },
69214
69470
  },
69215
69471
  required: ['access_grant', 'spaces', 'staff_member', 'ok'],
@@ -69332,6 +69588,8 @@ export default {
69332
69588
  required: ['staff_member_key', 'name'],
69333
69589
  type: 'object',
69334
69590
  'x-route-path': '/seam/customer/v1/staff_members',
69591
+ 'x-undocumented':
69592
+ 'Internal resource for customer portals.',
69335
69593
  },
69336
69594
  type: 'array',
69337
69595
  },
@@ -69444,6 +69702,8 @@ export default {
69444
69702
  required: ['staff_member_key', 'name'],
69445
69703
  type: 'object',
69446
69704
  'x-route-path': '/seam/customer/v1/staff_members',
69705
+ 'x-undocumented':
69706
+ 'Internal resource for customer portals.',
69447
69707
  },
69448
69708
  type: 'array',
69449
69709
  },
@@ -72839,6 +73099,7 @@ export default {
72839
73099
  'can_simulate_hub_connection',
72840
73100
  'can_simulate_hub_disconnection',
72841
73101
  'can_simulate_paid_subscription',
73102
+ 'can_configure_auto_lock',
72842
73103
  ],
72843
73104
  type: 'string',
72844
73105
  },
@@ -72871,6 +73132,7 @@ export default {
72871
73132
  'can_simulate_hub_connection',
72872
73133
  'can_simulate_hub_disconnection',
72873
73134
  'can_simulate_paid_subscription',
73135
+ 'can_configure_auto_lock',
72874
73136
  ],
72875
73137
  type: 'string',
72876
73138
  },
@@ -73054,6 +73316,7 @@ export default {
73054
73316
  'can_simulate_hub_connection',
73055
73317
  'can_simulate_hub_disconnection',
73056
73318
  'can_simulate_paid_subscription',
73319
+ 'can_configure_auto_lock',
73057
73320
  ],
73058
73321
  type: 'string',
73059
73322
  },
@@ -73082,6 +73345,7 @@ export default {
73082
73345
  'can_simulate_hub_connection',
73083
73346
  'can_simulate_hub_disconnection',
73084
73347
  'can_simulate_paid_subscription',
73348
+ 'can_configure_auto_lock',
73085
73349
  ],
73086
73350
  type: 'string',
73087
73351
  },