@seamapi/types 1.418.1 → 1.420.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 (27) hide show
  1. package/dist/connect.cjs +242 -1
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +436 -2
  4. package/lib/seam/connect/models/access-grants/access-grant.d.ts +6 -0
  5. package/lib/seam/connect/models/access-grants/access-grant.js +10 -0
  6. package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
  7. package/lib/seam/connect/models/devices/device.d.ts +58 -0
  8. package/lib/seam/connect/models/devices/device.js +12 -0
  9. package/lib/seam/connect/models/devices/device.js.map +1 -1
  10. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -0
  11. package/lib/seam/connect/models/events/access-grants.d.ts +0 -2
  12. package/lib/seam/connect/models/events/access-grants.js.map +1 -1
  13. package/lib/seam/connect/models/events/access-methods.d.ts +47 -0
  14. package/lib/seam/connect/models/events/access-methods.js +9 -0
  15. package/lib/seam/connect/models/events/access-methods.js.map +1 -1
  16. package/lib/seam/connect/models/events/seam-event.d.ts +24 -1
  17. package/lib/seam/connect/openapi.d.ts +181 -0
  18. package/lib/seam/connect/openapi.js +222 -0
  19. package/lib/seam/connect/openapi.js.map +1 -1
  20. package/lib/seam/connect/route-types.d.ts +171 -2
  21. package/package.json +2 -2
  22. package/src/lib/seam/connect/models/access-grants/access-grant.ts +10 -0
  23. package/src/lib/seam/connect/models/devices/device.ts +13 -0
  24. package/src/lib/seam/connect/models/events/access-grants.ts +0 -6
  25. package/src/lib/seam/connect/models/events/access-methods.ts +10 -0
  26. package/src/lib/seam/connect/openapi.ts +235 -0
  27. package/src/lib/seam/connect/route-types.ts +188 -0
@@ -1837,6 +1837,11 @@ export default {
1837
1837
  description: 'Display name of the access grant.',
1838
1838
  type: 'string',
1839
1839
  },
1840
+ ends_at: {
1841
+ description: 'Date and time at which the access grant ends.',
1842
+ format: 'date-time',
1843
+ type: 'string',
1844
+ },
1840
1845
  location_ids: {
1841
1846
  deprecated: true,
1842
1847
  items: { format: 'uuid', type: 'string' },
@@ -1887,6 +1892,11 @@ export default {
1887
1892
  items: { format: 'uuid', type: 'string' },
1888
1893
  type: 'array',
1889
1894
  },
1895
+ starts_at: {
1896
+ description: 'Date and time at which the access grant starts.',
1897
+ format: 'date-time',
1898
+ type: 'string',
1899
+ },
1890
1900
  user_identity_id: {
1891
1901
  description:
1892
1902
  'ID of user identity to which the access grant gives access.',
@@ -12468,6 +12478,32 @@ export default {
12468
12478
  required: ['message', 'created_at', 'warning_code'],
12469
12479
  type: 'object',
12470
12480
  },
12481
+ {
12482
+ description:
12483
+ 'Indicates that the device is in power saving mode and may have limited functionality.',
12484
+ properties: {
12485
+ created_at: {
12486
+ description:
12487
+ 'Date and time at which Seam created the warning.',
12488
+ format: 'date-time',
12489
+ type: 'string',
12490
+ },
12491
+ message: {
12492
+ description:
12493
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
12494
+ type: 'string',
12495
+ },
12496
+ warning_code: {
12497
+ description:
12498
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
12499
+ enum: ['power_saving_mode'],
12500
+ type: 'string',
12501
+ },
12502
+ },
12503
+ required: ['message', 'created_at', 'warning_code'],
12504
+ type: 'object',
12505
+ 'x-variant-group-key': 'locks',
12506
+ },
12471
12507
  {
12472
12508
  description:
12473
12509
  'Indicates that the temperature threshold has been exceeded.',
@@ -14318,6 +14354,48 @@ export default {
14318
14354
  type: 'object',
14319
14355
  'x-route-path': '/access_methods',
14320
14356
  },
14357
+ {
14358
+ description:
14359
+ 'An access method was reissued due to an access grant update.',
14360
+ properties: {
14361
+ access_method_id: {
14362
+ description: 'ID of the affected access method.',
14363
+ format: 'uuid',
14364
+ type: 'string',
14365
+ },
14366
+ created_at: {
14367
+ description: 'Date and time at which the event was created.',
14368
+ format: 'date-time',
14369
+ type: 'string',
14370
+ },
14371
+ event_id: {
14372
+ description: 'ID of the event.',
14373
+ format: 'uuid',
14374
+ type: 'string',
14375
+ },
14376
+ event_type: { enum: ['access_method.reissued'], type: 'string' },
14377
+ occurred_at: {
14378
+ description: 'Date and time at which the event occurred.',
14379
+ format: 'date-time',
14380
+ type: 'string',
14381
+ },
14382
+ workspace_id: {
14383
+ description: 'ID of the workspace associated with the event.',
14384
+ format: 'uuid',
14385
+ type: 'string',
14386
+ },
14387
+ },
14388
+ required: [
14389
+ 'event_id',
14390
+ 'workspace_id',
14391
+ 'created_at',
14392
+ 'occurred_at',
14393
+ 'access_method_id',
14394
+ 'event_type',
14395
+ ],
14396
+ type: 'object',
14397
+ 'x-route-path': '/access_methods',
14398
+ },
14321
14399
  {
14322
14400
  description:
14323
14401
  'An [access system](https://docs.seam.co/latest/capability-guides/access-systems) was connected.',
@@ -23413,6 +23491,32 @@ export default {
23413
23491
  required: ['message', 'created_at', 'warning_code'],
23414
23492
  type: 'object',
23415
23493
  },
23494
+ {
23495
+ description:
23496
+ 'Indicates that the device is in power saving mode and may have limited functionality.',
23497
+ properties: {
23498
+ created_at: {
23499
+ description:
23500
+ 'Date and time at which Seam created the warning.',
23501
+ format: 'date-time',
23502
+ type: 'string',
23503
+ },
23504
+ message: {
23505
+ description:
23506
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
23507
+ type: 'string',
23508
+ },
23509
+ warning_code: {
23510
+ description:
23511
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
23512
+ enum: ['power_saving_mode'],
23513
+ type: 'string',
23514
+ },
23515
+ },
23516
+ required: ['message', 'created_at', 'warning_code'],
23517
+ type: 'object',
23518
+ 'x-variant-group-key': 'locks',
23519
+ },
23416
23520
  {
23417
23521
  description:
23418
23522
  'Indicates that the temperature threshold has been exceeded.',
@@ -26315,6 +26419,135 @@ export default {
26315
26419
  'x-title': 'List Access Grants',
26316
26420
  },
26317
26421
  },
26422
+ '/access_grants/update': {
26423
+ patch: {
26424
+ description: "Updates an existing access grant's time window.",
26425
+ operationId: 'accessGrantsUpdatePatch',
26426
+ requestBody: {
26427
+ content: {
26428
+ 'application/json': {
26429
+ schema: {
26430
+ properties: {
26431
+ access_grant_id: {
26432
+ description: 'ID of the access grant to update.',
26433
+ format: 'uuid',
26434
+ type: 'string',
26435
+ },
26436
+ ends_at: {
26437
+ description:
26438
+ 'Date and time at which the validity of the grant ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`.',
26439
+ format: 'date-time',
26440
+ nullable: true,
26441
+ type: 'string',
26442
+ },
26443
+ starts_at: {
26444
+ description:
26445
+ 'Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
26446
+ format: 'date-time',
26447
+ nullable: true,
26448
+ type: 'string',
26449
+ },
26450
+ },
26451
+ required: ['access_grant_id'],
26452
+ type: 'object',
26453
+ },
26454
+ },
26455
+ },
26456
+ },
26457
+ responses: {
26458
+ 200: {
26459
+ content: {
26460
+ 'application/json': {
26461
+ schema: {
26462
+ properties: { ok: { type: 'boolean' } },
26463
+ required: ['ok'],
26464
+ type: 'object',
26465
+ },
26466
+ },
26467
+ },
26468
+ description: 'OK',
26469
+ },
26470
+ 400: { description: 'Bad Request' },
26471
+ 401: { description: 'Unauthorized' },
26472
+ },
26473
+ security: [
26474
+ { pat_with_workspace: [] },
26475
+ { console_session_with_workspace: [] },
26476
+ { api_key: [] },
26477
+ { client_session_with_customer: [] },
26478
+ ],
26479
+ summary: '/access_grants/update',
26480
+ tags: [],
26481
+ 'x-draft': 'Early access.',
26482
+ 'x-fern-ignore': true,
26483
+ 'x-response-key': null,
26484
+ 'x-title': 'Update an Access Grant',
26485
+ },
26486
+ post: {
26487
+ description: "Updates an existing access grant's time window.",
26488
+ operationId: 'accessGrantsUpdatePost',
26489
+ requestBody: {
26490
+ content: {
26491
+ 'application/json': {
26492
+ schema: {
26493
+ properties: {
26494
+ access_grant_id: {
26495
+ description: 'ID of the access grant to update.',
26496
+ format: 'uuid',
26497
+ type: 'string',
26498
+ },
26499
+ ends_at: {
26500
+ description:
26501
+ 'Date and time at which the validity of the grant ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`.',
26502
+ format: 'date-time',
26503
+ nullable: true,
26504
+ type: 'string',
26505
+ },
26506
+ starts_at: {
26507
+ description:
26508
+ 'Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
26509
+ format: 'date-time',
26510
+ nullable: true,
26511
+ type: 'string',
26512
+ },
26513
+ },
26514
+ required: ['access_grant_id'],
26515
+ type: 'object',
26516
+ },
26517
+ },
26518
+ },
26519
+ },
26520
+ responses: {
26521
+ 200: {
26522
+ content: {
26523
+ 'application/json': {
26524
+ schema: {
26525
+ properties: { ok: { type: 'boolean' } },
26526
+ required: ['ok'],
26527
+ type: 'object',
26528
+ },
26529
+ },
26530
+ },
26531
+ description: 'OK',
26532
+ },
26533
+ 400: { description: 'Bad Request' },
26534
+ 401: { description: 'Unauthorized' },
26535
+ },
26536
+ security: [
26537
+ { pat_with_workspace: [] },
26538
+ { console_session_with_workspace: [] },
26539
+ { api_key: [] },
26540
+ { client_session_with_customer: [] },
26541
+ ],
26542
+ summary: '/access_grants/update',
26543
+ tags: [],
26544
+ 'x-draft': 'Early access.',
26545
+ 'x-fern-sdk-group-name': ['access_grants'],
26546
+ 'x-fern-sdk-method-name': 'update',
26547
+ 'x-response-key': null,
26548
+ 'x-title': 'Update an Access Grant',
26549
+ },
26550
+ },
26318
26551
  '/access_methods/delete': {
26319
26552
  post: {
26320
26553
  description: 'Delete an access method.',
@@ -33853,6 +34086,7 @@ export default {
33853
34086
  'access_method.revoked',
33854
34087
  'access_method.card_encoding_required',
33855
34088
  'access_method.deleted',
34089
+ 'access_method.reissued',
33856
34090
  'acs_system.connected',
33857
34091
  'acs_system.added',
33858
34092
  'acs_system.disconnected',
@@ -33949,6 +34183,7 @@ export default {
33949
34183
  'access_method.revoked',
33950
34184
  'access_method.card_encoding_required',
33951
34185
  'access_method.deleted',
34186
+ 'access_method.reissued',
33952
34187
  'acs_system.connected',
33953
34188
  'acs_system.added',
33954
34189
  'acs_system.disconnected',
@@ -11440,6 +11440,10 @@ export interface Routes {
11440
11440
  display_name: string
11441
11441
  /** Date and time at which the access grant was created. */
11442
11442
  created_at: string
11443
+ /** Date and time at which the access grant starts. */
11444
+ starts_at?: string | undefined
11445
+ /** Date and time at which the access grant ends. */
11446
+ ends_at?: string | undefined
11443
11447
  }
11444
11448
  }
11445
11449
  }
@@ -11496,6 +11500,10 @@ export interface Routes {
11496
11500
  display_name: string
11497
11501
  /** Date and time at which the access grant was created. */
11498
11502
  created_at: string
11503
+ /** Date and time at which the access grant starts. */
11504
+ starts_at?: string | undefined
11505
+ /** Date and time at which the access grant ends. */
11506
+ ends_at?: string | undefined
11499
11507
  }
11500
11508
  }
11501
11509
  }
@@ -11548,9 +11556,29 @@ export interface Routes {
11548
11556
  display_name: string
11549
11557
  /** Date and time at which the access grant was created. */
11550
11558
  created_at: string
11559
+ /** Date and time at which the access grant starts. */
11560
+ starts_at?: string | undefined
11561
+ /** Date and time at which the access grant ends. */
11562
+ ends_at?: string | undefined
11551
11563
  }>
11552
11564
  }
11553
11565
  }
11566
+ '/access_grants/update': {
11567
+ route: '/access_grants/update'
11568
+ method: 'POST' | 'PATCH'
11569
+ queryParams: {}
11570
+ jsonBody: {}
11571
+ commonParams: {
11572
+ /** ID of the access grant to update. */
11573
+ access_grant_id: string
11574
+ /** Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
11575
+ starts_at?: (string | null) | undefined
11576
+ /** Date and time at which the validity of the grant ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
11577
+ ends_at?: (string | null) | undefined
11578
+ }
11579
+ formData: {}
11580
+ jsonResponse: {}
11581
+ }
11554
11582
  '/access_methods/delete': {
11555
11583
  route: '/access_methods/delete'
11556
11584
  method: 'GET' | 'POST'
@@ -26826,6 +26854,14 @@ export interface Routes {
26826
26854
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26827
26855
  warning_code: 'ttlock_weak_gateway_signal'
26828
26856
  }
26857
+ | {
26858
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
26859
+ message: string
26860
+ /** Date and time at which Seam created the warning. */
26861
+ created_at: string
26862
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26863
+ warning_code: 'power_saving_mode'
26864
+ }
26829
26865
  | {
26830
26866
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
26831
26867
  message: string
@@ -28361,6 +28397,14 @@ export interface Routes {
28361
28397
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28362
28398
  warning_code: 'ttlock_weak_gateway_signal'
28363
28399
  }
28400
+ | {
28401
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28402
+ message: string
28403
+ /** Date and time at which Seam created the warning. */
28404
+ created_at: string
28405
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28406
+ warning_code: 'power_saving_mode'
28407
+ }
28364
28408
  | {
28365
28409
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28366
28410
  message: string
@@ -28909,6 +28953,14 @@ export interface Routes {
28909
28953
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28910
28954
  warning_code: 'ttlock_weak_gateway_signal'
28911
28955
  }
28956
+ | {
28957
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28958
+ message: string
28959
+ /** Date and time at which Seam created the warning. */
28960
+ created_at: string
28961
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28962
+ warning_code: 'power_saving_mode'
28963
+ }
28912
28964
  | {
28913
28965
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
28914
28966
  message: string
@@ -29575,6 +29627,14 @@ export interface Routes {
29575
29627
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
29576
29628
  warning_code: 'ttlock_weak_gateway_signal'
29577
29629
  }
29630
+ | {
29631
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
29632
+ message: string
29633
+ /** Date and time at which Seam created the warning. */
29634
+ created_at: string
29635
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
29636
+ warning_code: 'power_saving_mode'
29637
+ }
29578
29638
  | {
29579
29639
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
29580
29640
  message: string
@@ -30223,6 +30283,19 @@ export interface Routes {
30223
30283
  created_at: string
30224
30284
  /** Date and time at which the event occurred. */
30225
30285
  occurred_at: string
30286
+ /** ID of the affected access method. */
30287
+ access_method_id: string
30288
+ event_type: 'access_method.reissued'
30289
+ }
30290
+ | {
30291
+ /** ID of the event. */
30292
+ event_id: string
30293
+ /** ID of the workspace associated with the event. */
30294
+ workspace_id: string
30295
+ /** Date and time at which the event was created. */
30296
+ created_at: string
30297
+ /** Date and time at which the event occurred. */
30298
+ occurred_at: string
30226
30299
  /** ID of the connected account. */
30227
30300
  connected_account_id?: string | undefined
30228
30301
  /** ID of the access system. */
@@ -31341,6 +31414,7 @@ export interface Routes {
31341
31414
  | 'access_method.revoked'
31342
31415
  | 'access_method.card_encoding_required'
31343
31416
  | 'access_method.deleted'
31417
+ | 'access_method.reissued'
31344
31418
  | 'acs_system.connected'
31345
31419
  | 'acs_system.added'
31346
31420
  | 'acs_system.disconnected'
@@ -31435,6 +31509,7 @@ export interface Routes {
31435
31509
  | 'access_method.revoked'
31436
31510
  | 'access_method.card_encoding_required'
31437
31511
  | 'access_method.deleted'
31512
+ | 'access_method.reissued'
31438
31513
  | 'acs_system.connected'
31439
31514
  | 'acs_system.added'
31440
31515
  | 'acs_system.disconnected'
@@ -31940,6 +32015,19 @@ export interface Routes {
31940
32015
  created_at: string
31941
32016
  /** Date and time at which the event occurred. */
31942
32017
  occurred_at: string
32018
+ /** ID of the affected access method. */
32019
+ access_method_id: string
32020
+ event_type: 'access_method.reissued'
32021
+ }
32022
+ | {
32023
+ /** ID of the event. */
32024
+ event_id: string
32025
+ /** ID of the workspace associated with the event. */
32026
+ workspace_id: string
32027
+ /** Date and time at which the event was created. */
32028
+ created_at: string
32029
+ /** Date and time at which the event occurred. */
32030
+ occurred_at: string
31943
32031
  /** ID of the connected account. */
31944
32032
  connected_account_id?: string | undefined
31945
32033
  /** ID of the access system. */
@@ -34252,6 +34340,14 @@ export interface Routes {
34252
34340
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34253
34341
  warning_code: 'ttlock_weak_gateway_signal'
34254
34342
  }
34343
+ | {
34344
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
34345
+ message: string
34346
+ /** Date and time at which Seam created the warning. */
34347
+ created_at: string
34348
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
34349
+ warning_code: 'power_saving_mode'
34350
+ }
34255
34351
  | {
34256
34352
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
34257
34353
  message: string
@@ -35589,6 +35685,14 @@ export interface Routes {
35589
35685
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35590
35686
  warning_code: 'ttlock_weak_gateway_signal'
35591
35687
  }
35688
+ | {
35689
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
35690
+ message: string
35691
+ /** Date and time at which Seam created the warning. */
35692
+ created_at: string
35693
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35694
+ warning_code: 'power_saving_mode'
35695
+ }
35592
35696
  | {
35593
35697
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
35594
35698
  message: string
@@ -37089,6 +37193,14 @@ export interface Routes {
37089
37193
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
37090
37194
  warning_code: 'ttlock_weak_gateway_signal'
37091
37195
  }
37196
+ | {
37197
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
37198
+ message: string
37199
+ /** Date and time at which Seam created the warning. */
37200
+ created_at: string
37201
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
37202
+ warning_code: 'power_saving_mode'
37203
+ }
37092
37204
  | {
37093
37205
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
37094
37206
  message: string
@@ -38425,6 +38537,14 @@ export interface Routes {
38425
38537
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
38426
38538
  warning_code: 'ttlock_weak_gateway_signal'
38427
38539
  }
38540
+ | {
38541
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
38542
+ message: string
38543
+ /** Date and time at which Seam created the warning. */
38544
+ created_at: string
38545
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
38546
+ warning_code: 'power_saving_mode'
38547
+ }
38428
38548
  | {
38429
38549
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
38430
38550
  message: string
@@ -45885,6 +46005,14 @@ export interface Routes {
45885
46005
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
45886
46006
  warning_code: 'ttlock_weak_gateway_signal'
45887
46007
  }
46008
+ | {
46009
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
46010
+ message: string
46011
+ /** Date and time at which Seam created the warning. */
46012
+ created_at: string
46013
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
46014
+ warning_code: 'power_saving_mode'
46015
+ }
45888
46016
  | {
45889
46017
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
45890
46018
  message: string
@@ -47221,6 +47349,14 @@ export interface Routes {
47221
47349
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
47222
47350
  warning_code: 'ttlock_weak_gateway_signal'
47223
47351
  }
47352
+ | {
47353
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
47354
+ message: string
47355
+ /** Date and time at which Seam created the warning. */
47356
+ created_at: string
47357
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
47358
+ warning_code: 'power_saving_mode'
47359
+ }
47224
47360
  | {
47225
47361
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
47226
47362
  message: string
@@ -59163,6 +59299,14 @@ export interface Routes {
59163
59299
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
59164
59300
  warning_code: 'ttlock_weak_gateway_signal'
59165
59301
  }
59302
+ | {
59303
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
59304
+ message: string
59305
+ /** Date and time at which Seam created the warning. */
59306
+ created_at: string
59307
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
59308
+ warning_code: 'power_saving_mode'
59309
+ }
59166
59310
  | {
59167
59311
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
59168
59312
  message: string
@@ -63619,6 +63763,14 @@ export interface Routes {
63619
63763
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
63620
63764
  warning_code: 'ttlock_weak_gateway_signal'
63621
63765
  }
63766
+ | {
63767
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
63768
+ message: string
63769
+ /** Date and time at which Seam created the warning. */
63770
+ created_at: string
63771
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
63772
+ warning_code: 'power_saving_mode'
63773
+ }
63622
63774
  | {
63623
63775
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
63624
63776
  message: string
@@ -64955,6 +65107,14 @@ export interface Routes {
64955
65107
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
64956
65108
  warning_code: 'ttlock_weak_gateway_signal'
64957
65109
  }
65110
+ | {
65111
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
65112
+ message: string
65113
+ /** Date and time at which Seam created the warning. */
65114
+ created_at: string
65115
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
65116
+ warning_code: 'power_saving_mode'
65117
+ }
64958
65118
  | {
64959
65119
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
64960
65120
  message: string
@@ -71504,6 +71664,10 @@ export interface Routes {
71504
71664
  display_name: string
71505
71665
  /** Date and time at which the access grant was created. */
71506
71666
  created_at: string
71667
+ /** Date and time at which the access grant starts. */
71668
+ starts_at?: string | undefined
71669
+ /** Date and time at which the access grant ends. */
71670
+ ends_at?: string | undefined
71507
71671
  }
71508
71672
  }
71509
71673
  }
@@ -71560,6 +71724,10 @@ export interface Routes {
71560
71724
  display_name: string
71561
71725
  /** Date and time at which the access grant was created. */
71562
71726
  created_at: string
71727
+ /** Date and time at which the access grant starts. */
71728
+ starts_at?: string | undefined
71729
+ /** Date and time at which the access grant ends. */
71730
+ ends_at?: string | undefined
71563
71731
  }
71564
71732
  }
71565
71733
  }
@@ -71612,6 +71780,10 @@ export interface Routes {
71612
71780
  display_name: string
71613
71781
  /** Date and time at which the access grant was created. */
71614
71782
  created_at: string
71783
+ /** Date and time at which the access grant starts. */
71784
+ starts_at?: string | undefined
71785
+ /** Date and time at which the access grant ends. */
71786
+ ends_at?: string | undefined
71615
71787
  }>
71616
71788
  }
71617
71789
  }
@@ -73731,6 +73903,14 @@ export interface Routes {
73731
73903
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
73732
73904
  warning_code: 'ttlock_weak_gateway_signal'
73733
73905
  }
73906
+ | {
73907
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
73908
+ message: string
73909
+ /** Date and time at which Seam created the warning. */
73910
+ created_at: string
73911
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
73912
+ warning_code: 'power_saving_mode'
73913
+ }
73734
73914
  | {
73735
73915
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
73736
73916
  message: string
@@ -75069,6 +75249,14 @@ export interface Routes {
75069
75249
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
75070
75250
  warning_code: 'ttlock_weak_gateway_signal'
75071
75251
  }
75252
+ | {
75253
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
75254
+ message: string
75255
+ /** Date and time at which Seam created the warning. */
75256
+ created_at: string
75257
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
75258
+ warning_code: 'power_saving_mode'
75259
+ }
75072
75260
  | {
75073
75261
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
75074
75262
  message: string