@seamapi/types 1.817.0 → 1.819.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.
@@ -15239,6 +15239,32 @@ export default {
15239
15239
  required: ['message', 'created_at', 'warning_code'],
15240
15240
  type: 'object',
15241
15241
  },
15242
+ {
15243
+ description:
15244
+ 'Indicates that a change in the reported device model has been detected for this Salto KS lock, which may occur after an IQ hub reset. Access code support may be affected. See https://help.getseam.com/articles/5098842588-salto-ks-lock-loses-access-code-support for troubleshooting steps.',
15245
+ properties: {
15246
+ created_at: {
15247
+ description:
15248
+ 'Date and time at which Seam created the warning.',
15249
+ format: 'date-time',
15250
+ type: 'string',
15251
+ },
15252
+ message: {
15253
+ description:
15254
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
15255
+ type: 'string',
15256
+ },
15257
+ warning_code: {
15258
+ description:
15259
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
15260
+ enum: ['salto_ks_lock_access_code_support_removed'],
15261
+ type: 'string',
15262
+ },
15263
+ },
15264
+ required: ['message', 'created_at', 'warning_code'],
15265
+ type: 'object',
15266
+ 'x-variant-group-key': 'access_codes',
15267
+ },
15242
15268
  {
15243
15269
  description:
15244
15270
  'Indicates that an unknown issue occurred while syncing the state of the phone with the provider. This issue may affect the proper functioning of the phone.',
@@ -31000,6 +31026,32 @@ export default {
31000
31026
  required: ['message', 'created_at', 'warning_code'],
31001
31027
  type: 'object',
31002
31028
  },
31029
+ {
31030
+ description:
31031
+ 'Indicates that a change in the reported device model has been detected for this Salto KS lock, which may occur after an IQ hub reset. Access code support may be affected. See https://help.getseam.com/articles/5098842588-salto-ks-lock-loses-access-code-support for troubleshooting steps.',
31032
+ properties: {
31033
+ created_at: {
31034
+ description:
31035
+ 'Date and time at which Seam created the warning.',
31036
+ format: 'date-time',
31037
+ type: 'string',
31038
+ },
31039
+ message: {
31040
+ description:
31041
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
31042
+ type: 'string',
31043
+ },
31044
+ warning_code: {
31045
+ description:
31046
+ 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
31047
+ enum: ['salto_ks_lock_access_code_support_removed'],
31048
+ type: 'string',
31049
+ },
31050
+ },
31051
+ required: ['message', 'created_at', 'warning_code'],
31052
+ type: 'object',
31053
+ 'x-variant-group-key': 'access_codes',
31054
+ },
31003
31055
  {
31004
31056
  description:
31005
31057
  'Indicates that an unknown issue occurred while syncing the state of the phone with the provider. This issue may affect the proper functioning of the phone.',
@@ -65369,255 +65421,6 @@ export default {
65369
65421
  'x-undocumented': 'Internal endpoint for Console.',
65370
65422
  },
65371
65423
  },
65372
- '/seam/customer/v1/connectors/ical/generate-config': {
65373
- post: {
65374
- description:
65375
- "Fetches an iCal feed URL and uses AI to generate a parsing config\nbased on the feed's structure and content.",
65376
- operationId: 'seamCustomerV1ConnectorsIcalGenerateConfigPost',
65377
- requestBody: {
65378
- content: {
65379
- 'application/json': {
65380
- schema: {
65381
- properties: {
65382
- ical_url: {
65383
- description: 'iCal feed URL to analyze',
65384
- format: 'uri',
65385
- type: 'string',
65386
- },
65387
- },
65388
- required: ['ical_url'],
65389
- type: 'object',
65390
- },
65391
- },
65392
- },
65393
- },
65394
- responses: {
65395
- 200: {
65396
- content: {
65397
- 'application/json': {
65398
- schema: {
65399
- properties: {
65400
- generated_config: {
65401
- properties: {
65402
- ical_config: {
65403
- properties: {
65404
- default_check_in_time: {
65405
- description:
65406
- 'Default check-in time (HH:MM) used when iCal gives date-only values',
65407
- pattern: '^\\d{2}:\\d{2}$',
65408
- type: 'string',
65409
- },
65410
- default_check_out_time: {
65411
- description:
65412
- 'Default check-out time (HH:MM) used when iCal gives date-only values',
65413
- pattern: '^\\d{2}:\\d{2}$',
65414
- type: 'string',
65415
- },
65416
- fields: {
65417
- properties: {
65418
- ends_at: {
65419
- description: 'How to extract check-out date',
65420
- properties: {
65421
- pattern: {
65422
- description:
65423
- 'Regex with capture group to extract value from the property',
65424
- type: 'string',
65425
- },
65426
- source: {
65427
- description:
65428
- 'iCal property name to read from: UID, SUMMARY, DESCRIPTION, DTSTART, DTEND, etc.',
65429
- type: 'string',
65430
- },
65431
- type: {
65432
- description:
65433
- "Special type handling — 'date' parses iCal date formats",
65434
- enum: ['date'],
65435
- type: 'string',
65436
- },
65437
- },
65438
- required: ['source'],
65439
- type: 'object',
65440
- },
65441
- guest_email: {
65442
- description: 'How to extract guest email',
65443
- properties: {
65444
- pattern: {
65445
- description:
65446
- 'Regex with capture group to extract value from the property',
65447
- type: 'string',
65448
- },
65449
- source: {
65450
- description:
65451
- 'iCal property name to read from: UID, SUMMARY, DESCRIPTION, DTSTART, DTEND, etc.',
65452
- type: 'string',
65453
- },
65454
- type: {
65455
- description:
65456
- "Special type handling — 'date' parses iCal date formats",
65457
- enum: ['date'],
65458
- type: 'string',
65459
- },
65460
- },
65461
- required: ['source'],
65462
- type: 'object',
65463
- },
65464
- guest_name: {
65465
- description: 'How to extract guest name',
65466
- properties: {
65467
- pattern: {
65468
- description:
65469
- 'Regex with capture group to extract value from the property',
65470
- type: 'string',
65471
- },
65472
- source: {
65473
- description:
65474
- 'iCal property name to read from: UID, SUMMARY, DESCRIPTION, DTSTART, DTEND, etc.',
65475
- type: 'string',
65476
- },
65477
- type: {
65478
- description:
65479
- "Special type handling — 'date' parses iCal date formats",
65480
- enum: ['date'],
65481
- type: 'string',
65482
- },
65483
- },
65484
- required: ['source'],
65485
- type: 'object',
65486
- },
65487
- guest_phone: {
65488
- description: 'How to extract guest phone',
65489
- properties: {
65490
- pattern: {
65491
- description:
65492
- 'Regex with capture group to extract value from the property',
65493
- type: 'string',
65494
- },
65495
- source: {
65496
- description:
65497
- 'iCal property name to read from: UID, SUMMARY, DESCRIPTION, DTSTART, DTEND, etc.',
65498
- type: 'string',
65499
- },
65500
- type: {
65501
- description:
65502
- "Special type handling — 'date' parses iCal date formats",
65503
- enum: ['date'],
65504
- type: 'string',
65505
- },
65506
- },
65507
- required: ['source'],
65508
- type: 'object',
65509
- },
65510
- reservation_key: {
65511
- description:
65512
- 'How to extract the reservation key (falls back to UID)',
65513
- properties: {
65514
- pattern: {
65515
- description:
65516
- 'Regex with capture group to extract value from the property',
65517
- type: 'string',
65518
- },
65519
- source: {
65520
- description:
65521
- 'iCal property name to read from: UID, SUMMARY, DESCRIPTION, DTSTART, DTEND, etc.',
65522
- type: 'string',
65523
- },
65524
- type: {
65525
- description:
65526
- "Special type handling — 'date' parses iCal date formats",
65527
- enum: ['date'],
65528
- type: 'string',
65529
- },
65530
- },
65531
- required: ['source'],
65532
- type: 'object',
65533
- },
65534
- starts_at: {
65535
- description: 'How to extract check-in date',
65536
- properties: {
65537
- pattern: {
65538
- description:
65539
- 'Regex with capture group to extract value from the property',
65540
- type: 'string',
65541
- },
65542
- source: {
65543
- description:
65544
- 'iCal property name to read from: UID, SUMMARY, DESCRIPTION, DTSTART, DTEND, etc.',
65545
- type: 'string',
65546
- },
65547
- type: {
65548
- description:
65549
- "Special type handling — 'date' parses iCal date formats",
65550
- enum: ['date'],
65551
- type: 'string',
65552
- },
65553
- },
65554
- required: ['source'],
65555
- type: 'object',
65556
- },
65557
- },
65558
- required: ['starts_at', 'ends_at'],
65559
- type: 'object',
65560
- },
65561
- filter: {
65562
- description:
65563
- 'Optional filter to skip non-matching events',
65564
- properties: {
65565
- pattern: {
65566
- description:
65567
- 'Regex pattern — events not matching are skipped',
65568
- type: 'string',
65569
- },
65570
- source: {
65571
- description:
65572
- 'iCal property name to match against',
65573
- type: 'string',
65574
- },
65575
- },
65576
- required: ['source', 'pattern'],
65577
- type: 'object',
65578
- },
65579
- time_zone: {
65580
- description:
65581
- 'IANA time zone (e.g. America/New_York) applied when dates have no time/timezone',
65582
- type: 'string',
65583
- },
65584
- },
65585
- required: ['fields'],
65586
- type: 'object',
65587
- },
65588
- },
65589
- required: ['ical_config'],
65590
- type: 'object',
65591
- },
65592
- ok: { type: 'boolean' },
65593
- },
65594
- required: ['generated_config', 'ok'],
65595
- type: 'object',
65596
- },
65597
- },
65598
- },
65599
- description: 'OK',
65600
- },
65601
- 400: { description: 'Bad Request' },
65602
- 401: { description: 'Unauthorized' },
65603
- },
65604
- security: [{ api_key: [] }, { console_session_with_workspace: [] }],
65605
- summary: '/seam/customer/v1/connectors/ical/generate-config',
65606
- tags: [],
65607
- 'x-fern-sdk-group-name': [
65608
- 'seam',
65609
- 'customer',
65610
- 'v1',
65611
- 'connectors',
65612
- 'ical',
65613
- ],
65614
- 'x-fern-sdk-method-name': 'generate-config',
65615
- 'x-fern-sdk-return-value': 'generated_config',
65616
- 'x-response-key': 'generated_config',
65617
- 'x-title': 'Generate iCal Config',
65618
- 'x-undocumented': 'Only used internally.',
65619
- },
65620
- },
65621
65424
  '/seam/customer/v1/connectors/ical/validate-config': {
65622
65425
  post: {
65623
65426
  description: