@seamapi/types 1.322.3 → 1.324.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 (56) hide show
  1. package/dist/connect.cjs +743 -742
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +559 -653
  4. package/lib/seam/connect/models/acs/acs-user.d.ts +53 -0
  5. package/lib/seam/connect/models/acs/acs-user.js +23 -0
  6. package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
  7. package/lib/seam/connect/models/events/access-codes.js +32 -41
  8. package/lib/seam/connect/models/events/access-codes.js.map +1 -1
  9. package/lib/seam/connect/models/events/acs/common.js +9 -12
  10. package/lib/seam/connect/models/events/acs/common.js.map +1 -1
  11. package/lib/seam/connect/models/events/acs/credentials.js +2 -2
  12. package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
  13. package/lib/seam/connect/models/events/acs/encoders.js +6 -3
  14. package/lib/seam/connect/models/events/acs/encoders.js.map +1 -1
  15. package/lib/seam/connect/models/events/acs/systems.js +3 -3
  16. package/lib/seam/connect/models/events/acs/systems.js.map +1 -1
  17. package/lib/seam/connect/models/events/acs/users.js +5 -3
  18. package/lib/seam/connect/models/events/acs/users.js.map +1 -1
  19. package/lib/seam/connect/models/events/action-attempts.js +10 -22
  20. package/lib/seam/connect/models/events/action-attempts.js.map +1 -1
  21. package/lib/seam/connect/models/events/client-sessions.js +5 -7
  22. package/lib/seam/connect/models/events/client-sessions.js.map +1 -1
  23. package/lib/seam/connect/models/events/common.js +5 -2
  24. package/lib/seam/connect/models/events/common.js.map +1 -1
  25. package/lib/seam/connect/models/events/connect-webviews.js +10 -14
  26. package/lib/seam/connect/models/events/connect-webviews.js.map +1 -1
  27. package/lib/seam/connect/models/events/connected-accounts.js +15 -19
  28. package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
  29. package/lib/seam/connect/models/events/devices.js +43 -47
  30. package/lib/seam/connect/models/events/devices.js.map +1 -1
  31. package/lib/seam/connect/models/events/enrollment-automations.js +5 -7
  32. package/lib/seam/connect/models/events/enrollment-automations.js.map +1 -1
  33. package/lib/seam/connect/models/events/phones.js +4 -6
  34. package/lib/seam/connect/models/events/phones.js.map +1 -1
  35. package/lib/seam/connect/openapi.d.ts +34 -150
  36. package/lib/seam/connect/openapi.js +410 -463
  37. package/lib/seam/connect/openapi.js.map +1 -1
  38. package/lib/seam/connect/route-types.d.ts +525 -503
  39. package/package.json +1 -1
  40. package/src/lib/seam/connect/models/acs/acs-user.ts +35 -0
  41. package/src/lib/seam/connect/models/events/access-codes.ts +64 -41
  42. package/src/lib/seam/connect/models/events/acs/common.ts +13 -12
  43. package/src/lib/seam/connect/models/events/acs/credentials.ts +6 -2
  44. package/src/lib/seam/connect/models/events/acs/encoders.ts +12 -3
  45. package/src/lib/seam/connect/models/events/acs/systems.ts +9 -3
  46. package/src/lib/seam/connect/models/events/acs/users.ts +10 -4
  47. package/src/lib/seam/connect/models/events/action-attempts.ts +20 -22
  48. package/src/lib/seam/connect/models/events/client-sessions.ts +9 -7
  49. package/src/lib/seam/connect/models/events/common.ts +5 -2
  50. package/src/lib/seam/connect/models/events/connect-webviews.ts +18 -14
  51. package/src/lib/seam/connect/models/events/connected-accounts.ts +25 -19
  52. package/src/lib/seam/connect/models/events/devices.ts +75 -47
  53. package/src/lib/seam/connect/models/events/enrollment-automations.ts +9 -7
  54. package/src/lib/seam/connect/models/events/phones.ts +6 -6
  55. package/src/lib/seam/connect/openapi.ts +568 -463
  56. package/src/lib/seam/connect/route-types.ts +525 -503
@@ -3978,13 +3978,11 @@ declare const _default: {
3978
3978
  description: string;
3979
3979
  format: string;
3980
3980
  type: string;
3981
- 'x-title': string;
3982
3981
  };
3983
3982
  connected_account_id: {
3984
3983
  description: string;
3985
3984
  format: string;
3986
3985
  type: string;
3987
- 'x-title': string;
3988
3986
  };
3989
3987
  created_at: {
3990
3988
  description: string;
@@ -3995,7 +3993,6 @@ declare const _default: {
3995
3993
  description: string;
3996
3994
  format: string;
3997
3995
  type: string;
3998
- 'x-title': string;
3999
3996
  };
4000
3997
  event_id: {
4001
3998
  description: string;
@@ -4065,19 +4062,16 @@ declare const _default: {
4065
4062
  description: string;
4066
4063
  format: string;
4067
4064
  type: string;
4068
- 'x-title': string;
4069
4065
  };
4070
4066
  code: {
4071
4067
  description: string;
4072
4068
  type: string;
4073
- 'x-title': string;
4074
4069
  nullable?: never;
4075
4070
  };
4076
4071
  connected_account_id: {
4077
4072
  description: string;
4078
4073
  format: string;
4079
4074
  type: string;
4080
- 'x-title': string;
4081
4075
  };
4082
4076
  created_at: {
4083
4077
  description: string;
@@ -4088,7 +4082,6 @@ declare const _default: {
4088
4082
  description: string;
4089
4083
  format: string;
4090
4084
  type: string;
4091
- 'x-title': string;
4092
4085
  };
4093
4086
  event_id: {
4094
4087
  description: string;
@@ -4157,19 +4150,16 @@ declare const _default: {
4157
4150
  description: string;
4158
4151
  format: string;
4159
4152
  type: string;
4160
- 'x-title': string;
4161
4153
  };
4162
4154
  code: {
4163
4155
  description: string;
4164
4156
  nullable: boolean;
4165
4157
  type: string;
4166
- 'x-title': string;
4167
4158
  };
4168
4159
  connected_account_id: {
4169
4160
  description: string;
4170
4161
  format: string;
4171
4162
  type: string;
4172
- 'x-title': string;
4173
4163
  };
4174
4164
  created_at: {
4175
4165
  description: string;
@@ -4180,7 +4170,6 @@ declare const _default: {
4180
4170
  description: string;
4181
4171
  format: string;
4182
4172
  type: string;
4183
- 'x-title': string;
4184
4173
  };
4185
4174
  event_id: {
4186
4175
  description: string;
@@ -4249,7 +4238,6 @@ declare const _default: {
4249
4238
  description: string;
4250
4239
  format: string;
4251
4240
  type: string;
4252
- 'x-title': string;
4253
4241
  };
4254
4242
  backup_access_code_id: {
4255
4243
  type: string;
@@ -4258,7 +4246,6 @@ declare const _default: {
4258
4246
  description: string;
4259
4247
  format: string;
4260
4248
  type: string;
4261
- 'x-title': string;
4262
4249
  };
4263
4250
  created_at: {
4264
4251
  description: string;
@@ -4269,7 +4256,6 @@ declare const _default: {
4269
4256
  description: string;
4270
4257
  format: string;
4271
4258
  type: string;
4272
- 'x-title': string;
4273
4259
  };
4274
4260
  event_id: {
4275
4261
  description: string;
@@ -4338,13 +4324,11 @@ declare const _default: {
4338
4324
  description: string;
4339
4325
  format: string;
4340
4326
  type: string;
4341
- 'x-title': string;
4342
4327
  };
4343
4328
  connected_account_id: {
4344
4329
  description: string;
4345
4330
  format: string;
4346
4331
  type: string;
4347
- 'x-title': string;
4348
4332
  };
4349
4333
  created_at: {
4350
4334
  description: string;
@@ -4424,13 +4408,11 @@ declare const _default: {
4424
4408
  description: string;
4425
4409
  format: string;
4426
4410
  type: string;
4427
- 'x-title': string;
4428
4411
  };
4429
4412
  connected_account_id: {
4430
4413
  description: string;
4431
4414
  format: string;
4432
4415
  type: string;
4433
- 'x-title': string;
4434
4416
  };
4435
4417
  created_at: {
4436
4418
  description: string;
@@ -4505,7 +4487,6 @@ declare const _default: {
4505
4487
  description: string;
4506
4488
  format: string;
4507
4489
  type: string;
4508
- 'x-title': string;
4509
4490
  };
4510
4491
  acs_user_id: {
4511
4492
  format: string;
@@ -4515,7 +4496,6 @@ declare const _default: {
4515
4496
  description: string;
4516
4497
  format: string;
4517
4498
  type: string;
4518
- 'x-title': string;
4519
4499
  };
4520
4500
  created_at: {
4521
4501
  description: string;
@@ -4595,13 +4575,11 @@ declare const _default: {
4595
4575
  description: string;
4596
4576
  format: string;
4597
4577
  type: string;
4598
- 'x-title': string;
4599
4578
  };
4600
4579
  connected_account_id: {
4601
4580
  description: string;
4602
4581
  format: string;
4603
4582
  type: string;
4604
- 'x-title': string;
4605
4583
  };
4606
4584
  created_at: {
4607
4585
  description: string;
@@ -4676,7 +4654,6 @@ declare const _default: {
4676
4654
  description: string;
4677
4655
  format: string;
4678
4656
  type: string;
4679
- 'x-title': string;
4680
4657
  };
4681
4658
  created_at: {
4682
4659
  description: string;
@@ -4753,13 +4730,11 @@ declare const _default: {
4753
4730
  description: string;
4754
4731
  format: string;
4755
4732
  type: string;
4756
- 'x-title': string;
4757
4733
  };
4758
4734
  connected_account_id: {
4759
4735
  description: string;
4760
4736
  format: string;
4761
4737
  type: string;
4762
- 'x-title': string;
4763
4738
  };
4764
4739
  created_at: {
4765
4740
  description: string;
@@ -4836,13 +4811,11 @@ declare const _default: {
4836
4811
  description: string;
4837
4812
  format: string;
4838
4813
  type: string;
4839
- 'x-title': string;
4840
4814
  };
4841
4815
  connected_account_id: {
4842
4816
  description: string;
4843
4817
  format: string;
4844
4818
  type: string;
4845
- 'x-title': string;
4846
4819
  };
4847
4820
  created_at: {
4848
4821
  description: string;
@@ -4917,7 +4890,6 @@ declare const _default: {
4917
4890
  description: string;
4918
4891
  format: string;
4919
4892
  type: string;
4920
- 'x-title': string;
4921
4893
  };
4922
4894
  created_at: {
4923
4895
  description: string;
@@ -4994,12 +4966,10 @@ declare const _default: {
4994
4966
  description: string;
4995
4967
  format: string;
4996
4968
  type: string;
4997
- 'x-title': string;
4998
4969
  };
4999
4970
  action_type: {
5000
4971
  description: string;
5001
4972
  type: string;
5002
- 'x-title': string;
5003
4973
  };
5004
4974
  created_at: {
5005
4975
  description: string;
@@ -5023,7 +4993,6 @@ declare const _default: {
5023
4993
  status: {
5024
4994
  description: string;
5025
4995
  type: string;
5026
- 'x-title': string;
5027
4996
  };
5028
4997
  workspace_id: {
5029
4998
  description: string;
@@ -5079,7 +5048,6 @@ declare const _default: {
5079
5048
  description: string;
5080
5049
  format: string;
5081
5050
  type: string;
5082
- 'x-title': string;
5083
5051
  };
5084
5052
  created_at: {
5085
5053
  description: string;
@@ -5156,7 +5124,6 @@ declare const _default: {
5156
5124
  description: string;
5157
5125
  format: string;
5158
5126
  type: string;
5159
- 'x-title'?: never;
5160
5127
  };
5161
5128
  created_at: {
5162
5129
  description: string;
@@ -5167,7 +5134,6 @@ declare const _default: {
5167
5134
  description: string;
5168
5135
  format: string;
5169
5136
  type: string;
5170
- 'x-title'?: never;
5171
5137
  };
5172
5138
  event_id: {
5173
5139
  description: string;
@@ -5238,7 +5204,6 @@ declare const _default: {
5238
5204
  description: string;
5239
5205
  format: string;
5240
5206
  type: string;
5241
- 'x-title'?: never;
5242
5207
  };
5243
5208
  created_at: {
5244
5209
  description: string;
@@ -5249,7 +5214,6 @@ declare const _default: {
5249
5214
  description: string;
5250
5215
  format: string;
5251
5216
  type: string;
5252
- 'x-title'?: never;
5253
5217
  };
5254
5218
  error_code: {
5255
5219
  description: string;
@@ -5331,7 +5295,6 @@ declare const _default: {
5331
5295
  description: string;
5332
5296
  format: string;
5333
5297
  type: string;
5334
- 'x-title'?: never;
5335
5298
  };
5336
5299
  created_at: {
5337
5300
  description: string;
@@ -5342,7 +5305,6 @@ declare const _default: {
5342
5305
  description: string;
5343
5306
  format: string;
5344
5307
  type: string;
5345
- 'x-title'?: never;
5346
5308
  };
5347
5309
  event_id: {
5348
5310
  description: string;
@@ -5424,7 +5386,6 @@ declare const _default: {
5424
5386
  description: string;
5425
5387
  format: string;
5426
5388
  type: string;
5427
- 'x-title'?: never;
5428
5389
  };
5429
5390
  created_at: {
5430
5391
  description: string;
@@ -5435,7 +5396,6 @@ declare const _default: {
5435
5396
  description: string;
5436
5397
  format: string;
5437
5398
  type: string;
5438
- 'x-title'?: never;
5439
5399
  };
5440
5400
  event_id: {
5441
5401
  description: string;
@@ -5504,7 +5464,6 @@ declare const _default: {
5504
5464
  description: string;
5505
5465
  format: string;
5506
5466
  type: string;
5507
- 'x-title'?: never;
5508
5467
  };
5509
5468
  created_at: {
5510
5469
  description: string;
@@ -5515,7 +5474,6 @@ declare const _default: {
5515
5474
  description: string;
5516
5475
  format: string;
5517
5476
  type: string;
5518
- 'x-title'?: never;
5519
5477
  };
5520
5478
  event_id: {
5521
5479
  description: string;
@@ -5530,7 +5488,6 @@ declare const _default: {
5530
5488
  additionalProperties: {};
5531
5489
  description: string;
5532
5490
  type: string;
5533
- 'x-title': string;
5534
5491
  };
5535
5492
  noise_level_decibels: {
5536
5493
  description: string;
@@ -5555,7 +5512,6 @@ declare const _default: {
5555
5512
  additionalProperties: {};
5556
5513
  description: string;
5557
5514
  type: string;
5558
- 'x-title': string;
5559
5515
  };
5560
5516
  occurred_at: {
5561
5517
  description: string;
@@ -5611,19 +5567,16 @@ declare const _default: {
5611
5567
  description: string;
5612
5568
  format: string;
5613
5569
  type: string;
5614
- 'x-title'?: never;
5615
5570
  };
5616
5571
  action_attempt_id: {
5617
5572
  description: string;
5618
5573
  format: string;
5619
5574
  type: string;
5620
- 'x-title'?: never;
5621
5575
  };
5622
5576
  connected_account_id: {
5623
5577
  description: string;
5624
5578
  format: string;
5625
5579
  type: string;
5626
- 'x-title'?: never;
5627
5580
  };
5628
5581
  created_at: {
5629
5582
  description: string;
@@ -5634,7 +5587,6 @@ declare const _default: {
5634
5587
  description: string;
5635
5588
  format: string;
5636
5589
  type: string;
5637
- 'x-title'?: never;
5638
5590
  };
5639
5591
  event_id: {
5640
5592
  description: string;
@@ -5700,93 +5652,6 @@ declare const _default: {
5700
5652
  type: string;
5701
5653
  deprecated?: never;
5702
5654
  'x-deprecated'?: never;
5703
- } | {
5704
- description: string;
5705
- properties: {
5706
- access_code_id: {
5707
- description: string;
5708
- format: string;
5709
- type: string;
5710
- 'x-title'?: never;
5711
- };
5712
- connected_account_id: {
5713
- description: string;
5714
- format: string;
5715
- type: string;
5716
- 'x-title'?: never;
5717
- };
5718
- created_at: {
5719
- description: string;
5720
- format: string;
5721
- type: string;
5722
- };
5723
- device_id: {
5724
- description: string;
5725
- format: string;
5726
- type: string;
5727
- 'x-title'?: never;
5728
- };
5729
- event_id: {
5730
- description: string;
5731
- format: string;
5732
- type: string;
5733
- };
5734
- event_type: {
5735
- enum: string[];
5736
- type: string;
5737
- };
5738
- occurred_at: {
5739
- description: string;
5740
- format: string;
5741
- type: string;
5742
- };
5743
- workspace_id: {
5744
- description: string;
5745
- format: string;
5746
- type: string;
5747
- };
5748
- code?: never;
5749
- backup_access_code_id?: never;
5750
- acs_system_id?: never;
5751
- acs_credential_id?: never;
5752
- acs_user_id?: never;
5753
- acs_encoder_id?: never;
5754
- client_session_id?: never;
5755
- connect_webview_id?: never;
5756
- action_attempt_id?: never;
5757
- action_type?: never;
5758
- status?: never;
5759
- error_code?: never;
5760
- battery_level?: never;
5761
- battery_status?: never;
5762
- minut_metadata?: never;
5763
- noise_level_decibels?: never;
5764
- noise_level_nrs?: never;
5765
- noise_threshold_id?: never;
5766
- noise_threshold_name?: never;
5767
- noiseaware_metadata?: never;
5768
- method?: never;
5769
- climate_preset_key?: never;
5770
- is_fallback_climate_preset?: never;
5771
- thermostat_schedule_id?: never;
5772
- cooling_set_point_celsius?: never;
5773
- cooling_set_point_fahrenheit?: never;
5774
- fan_mode_setting?: never;
5775
- heating_set_point_celsius?: never;
5776
- heating_set_point_fahrenheit?: never;
5777
- hvac_mode_setting?: never;
5778
- lower_limit_celsius?: never;
5779
- lower_limit_fahrenheit?: never;
5780
- temperature_celsius?: never;
5781
- temperature_fahrenheit?: never;
5782
- upper_limit_celsius?: never;
5783
- upper_limit_fahrenheit?: never;
5784
- enrollment_automation_id?: never;
5785
- };
5786
- required: string[];
5787
- type: string;
5788
- deprecated?: never;
5789
- 'x-deprecated'?: never;
5790
5655
  } | {
5791
5656
  description: string;
5792
5657
  properties: {
@@ -5798,7 +5663,6 @@ declare const _default: {
5798
5663
  description: string;
5799
5664
  format: string;
5800
5665
  type: string;
5801
- 'x-title'?: never;
5802
5666
  };
5803
5667
  created_at: {
5804
5668
  description: string;
@@ -5809,7 +5673,6 @@ declare const _default: {
5809
5673
  description: string;
5810
5674
  format: string;
5811
5675
  type: string;
5812
- 'x-title'?: never;
5813
5676
  };
5814
5677
  event_id: {
5815
5678
  description: string;
@@ -5887,7 +5750,6 @@ declare const _default: {
5887
5750
  description: string;
5888
5751
  format: string;
5889
5752
  type: string;
5890
- 'x-title'?: never;
5891
5753
  };
5892
5754
  cooling_set_point_celsius: {
5893
5755
  description: string;
@@ -5908,7 +5770,6 @@ declare const _default: {
5908
5770
  description: string;
5909
5771
  format: string;
5910
5772
  type: string;
5911
- 'x-title'?: never;
5912
5773
  };
5913
5774
  event_id: {
5914
5775
  description: string;
@@ -5997,7 +5858,6 @@ declare const _default: {
5997
5858
  description: string;
5998
5859
  format: string;
5999
5860
  type: string;
6000
- 'x-title'?: never;
6001
5861
  };
6002
5862
  created_at: {
6003
5863
  description: string;
@@ -6008,7 +5868,6 @@ declare const _default: {
6008
5868
  description: string;
6009
5869
  format: string;
6010
5870
  type: string;
6011
- 'x-title'?: never;
6012
5871
  };
6013
5872
  event_id: {
6014
5873
  description: string;
@@ -6112,7 +5971,6 @@ declare const _default: {
6112
5971
  description: string;
6113
5972
  format: string;
6114
5973
  type: string;
6115
- 'x-title': string;
6116
5974
  };
6117
5975
  event_id: {
6118
5976
  description: string;
@@ -6189,7 +6047,6 @@ declare const _default: {
6189
6047
  description: string;
6190
6048
  format: string;
6191
6049
  type: string;
6192
- 'x-title': string;
6193
6050
  };
6194
6051
  event_id: {
6195
6052
  description: string;
@@ -11766,6 +11623,7 @@ declare const _default: {
11766
11623
  };
11767
11624
  '/acs/encoders/encode_credential': {
11768
11625
  post: {
11626
+ description: string;
11769
11627
  operationId: string;
11770
11628
  requestBody: {
11771
11629
  content: {
@@ -11835,11 +11693,12 @@ declare const _default: {
11835
11693
  'x-fern-sdk-method-name': string;
11836
11694
  'x-fern-sdk-return-value': string;
11837
11695
  'x-response-key': string;
11838
- 'x-undocumented': string;
11696
+ 'x-title': string;
11839
11697
  };
11840
11698
  };
11841
11699
  '/acs/encoders/list': {
11842
11700
  post: {
11701
+ description: string;
11843
11702
  operationId: string;
11844
11703
  requestBody: {
11845
11704
  content: {
@@ -11848,11 +11707,13 @@ declare const _default: {
11848
11707
  oneOf: ({
11849
11708
  properties: {
11850
11709
  acs_system_id: {
11710
+ description: string;
11851
11711
  format: string;
11852
11712
  type: string;
11853
11713
  };
11854
11714
  limit: {
11855
11715
  default: number;
11716
+ description: string;
11856
11717
  format: string;
11857
11718
  type: string;
11858
11719
  };
@@ -11864,6 +11725,7 @@ declare const _default: {
11864
11725
  } | {
11865
11726
  properties: {
11866
11727
  acs_system_ids: {
11728
+ description: string;
11867
11729
  items: {
11868
11730
  format: string;
11869
11731
  type: string;
@@ -11872,6 +11734,7 @@ declare const _default: {
11872
11734
  };
11873
11735
  limit: {
11874
11736
  default: number;
11737
+ description: string;
11875
11738
  format: string;
11876
11739
  type: string;
11877
11740
  };
@@ -11883,6 +11746,7 @@ declare const _default: {
11883
11746
  } | {
11884
11747
  properties: {
11885
11748
  acs_encoder_ids: {
11749
+ description: string;
11886
11750
  items: {
11887
11751
  format: string;
11888
11752
  type: string;
@@ -11891,6 +11755,7 @@ declare const _default: {
11891
11755
  };
11892
11756
  limit: {
11893
11757
  default: number;
11758
+ description: string;
11894
11759
  format: string;
11895
11760
  type: string;
11896
11761
  };
@@ -12005,11 +11870,12 @@ declare const _default: {
12005
11870
  'x-fern-sdk-method-name': string;
12006
11871
  'x-fern-sdk-return-value': string;
12007
11872
  'x-response-key': string;
12008
- 'x-undocumented': string;
11873
+ 'x-title': string;
12009
11874
  };
12010
11875
  };
12011
11876
  '/acs/encoders/scan_credential': {
12012
11877
  post: {
11878
+ description: string;
12013
11879
  operationId: string;
12014
11880
  requestBody: {
12015
11881
  content: {
@@ -12074,11 +11940,12 @@ declare const _default: {
12074
11940
  'x-fern-sdk-method-name': string;
12075
11941
  'x-fern-sdk-return-value': string;
12076
11942
  'x-response-key': string;
12077
- 'x-undocumented': string;
11943
+ 'x-title': string;
12078
11944
  };
12079
11945
  };
12080
11946
  '/acs/encoders/simulate/next_credential_encode_will_fail': {
12081
11947
  post: {
11948
+ description: string;
12082
11949
  operationId: string;
12083
11950
  requestBody: {
12084
11951
  content: {
@@ -12088,11 +11955,13 @@ declare const _default: {
12088
11955
  additionalProperties: boolean;
12089
11956
  properties: {
12090
11957
  acs_encoder_id: {
11958
+ description: string;
12091
11959
  format: string;
12092
11960
  type: string;
12093
11961
  };
12094
11962
  error_code: {
12095
11963
  default: string;
11964
+ description: string;
12096
11965
  enum: string[];
12097
11966
  type: string;
12098
11967
  };
@@ -12104,14 +11973,17 @@ declare const _default: {
12104
11973
  additionalProperties: boolean;
12105
11974
  properties: {
12106
11975
  acs_credential_id: {
11976
+ description: string;
12107
11977
  format: string;
12108
11978
  type: string;
12109
11979
  };
12110
11980
  acs_encoder_id: {
11981
+ description: string;
12111
11982
  format: string;
12112
11983
  type: string;
12113
11984
  };
12114
11985
  error_code: {
11986
+ description: string;
12115
11987
  enum: string[];
12116
11988
  type: string;
12117
11989
  default?: never;
@@ -12166,11 +12038,12 @@ declare const _default: {
12166
12038
  'x-fern-sdk-group-name': string[];
12167
12039
  'x-fern-sdk-method-name': string;
12168
12040
  'x-response-key': null;
12169
- 'x-undocumented': string;
12041
+ 'x-title': string;
12170
12042
  };
12171
12043
  };
12172
12044
  '/acs/encoders/simulate/next_credential_encode_will_succeed': {
12173
12045
  post: {
12046
+ description: string;
12174
12047
  operationId: string;
12175
12048
  requestBody: {
12176
12049
  content: {
@@ -12179,11 +12052,13 @@ declare const _default: {
12179
12052
  additionalProperties: boolean;
12180
12053
  properties: {
12181
12054
  acs_encoder_id: {
12055
+ description: string;
12182
12056
  format: string;
12183
12057
  type: string;
12184
12058
  };
12185
12059
  scenario: {
12186
12060
  default: string;
12061
+ description: string;
12187
12062
  enum: string[];
12188
12063
  type: string;
12189
12064
  };
@@ -12236,11 +12111,12 @@ declare const _default: {
12236
12111
  'x-fern-sdk-group-name': string[];
12237
12112
  'x-fern-sdk-method-name': string;
12238
12113
  'x-response-key': null;
12239
- 'x-undocumented': string;
12114
+ 'x-title': string;
12240
12115
  };
12241
12116
  };
12242
12117
  '/acs/encoders/simulate/next_credential_scan_will_fail': {
12243
12118
  post: {
12119
+ description: string;
12244
12120
  operationId: string;
12245
12121
  requestBody: {
12246
12122
  content: {
@@ -12250,6 +12126,7 @@ declare const _default: {
12250
12126
  additionalProperties: boolean;
12251
12127
  properties: {
12252
12128
  acs_encoder_id: {
12129
+ description: string;
12253
12130
  format: string;
12254
12131
  type: string;
12255
12132
  };
@@ -12270,6 +12147,7 @@ declare const _default: {
12270
12147
  type: string;
12271
12148
  };
12272
12149
  acs_encoder_id: {
12150
+ description: string;
12273
12151
  format: string;
12274
12152
  type: string;
12275
12153
  };
@@ -12328,11 +12206,12 @@ declare const _default: {
12328
12206
  'x-fern-sdk-group-name': string[];
12329
12207
  'x-fern-sdk-method-name': string;
12330
12208
  'x-response-key': null;
12331
- 'x-undocumented': string;
12209
+ 'x-title': string;
12332
12210
  };
12333
12211
  };
12334
12212
  '/acs/encoders/simulate/next_credential_scan_will_succeed': {
12335
12213
  post: {
12214
+ description: string;
12336
12215
  operationId: string;
12337
12216
  requestBody: {
12338
12217
  content: {
@@ -12342,15 +12221,18 @@ declare const _default: {
12342
12221
  additionalProperties: boolean;
12343
12222
  properties: {
12344
12223
  acs_credential_id_on_seam: {
12224
+ description: string;
12345
12225
  format: string;
12346
12226
  type: string;
12347
12227
  };
12348
12228
  acs_encoder_id: {
12229
+ description: string;
12349
12230
  format: string;
12350
12231
  type: string;
12351
12232
  };
12352
12233
  scenario: {
12353
12234
  default: string;
12235
+ description: string;
12354
12236
  enum: string[];
12355
12237
  type: string;
12356
12238
  };
@@ -12361,10 +12243,12 @@ declare const _default: {
12361
12243
  additionalProperties: boolean;
12362
12244
  properties: {
12363
12245
  acs_encoder_id: {
12246
+ description: string;
12364
12247
  format: string;
12365
12248
  type: string;
12366
12249
  };
12367
12250
  scenario: {
12251
+ description: string;
12368
12252
  enum: string[];
12369
12253
  type: string;
12370
12254
  default?: never;
@@ -12420,7 +12304,7 @@ declare const _default: {
12420
12304
  'x-fern-sdk-group-name': string[];
12421
12305
  'x-fern-sdk-method-name': string;
12422
12306
  'x-response-key': null;
12423
- 'x-undocumented': string;
12307
+ 'x-title': string;
12424
12308
  };
12425
12309
  };
12426
12310
  '/acs/entrances/get': {