@seamapi/types 1.323.0 → 1.325.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 (61) hide show
  1. package/dist/connect.cjs +1627 -773
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +3829 -1177
  4. package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +257 -5
  5. package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +257 -5
  6. package/lib/seam/connect/models/acs/acs-system.d.ts +10 -10
  7. package/lib/seam/connect/models/devices/device.d.ts +419 -11
  8. package/lib/seam/connect/models/devices/device.js +103 -3
  9. package/lib/seam/connect/models/devices/device.js.map +1 -1
  10. package/lib/seam/connect/models/devices/phone.d.ts +258 -6
  11. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +258 -6
  12. package/lib/seam/connect/models/events/access-codes.js +32 -41
  13. package/lib/seam/connect/models/events/access-codes.js.map +1 -1
  14. package/lib/seam/connect/models/events/acs/common.js +9 -12
  15. package/lib/seam/connect/models/events/acs/common.js.map +1 -1
  16. package/lib/seam/connect/models/events/acs/credentials.js +2 -2
  17. package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
  18. package/lib/seam/connect/models/events/acs/encoders.js +6 -3
  19. package/lib/seam/connect/models/events/acs/encoders.js.map +1 -1
  20. package/lib/seam/connect/models/events/acs/systems.js +3 -3
  21. package/lib/seam/connect/models/events/acs/systems.js.map +1 -1
  22. package/lib/seam/connect/models/events/acs/users.js +5 -3
  23. package/lib/seam/connect/models/events/acs/users.js.map +1 -1
  24. package/lib/seam/connect/models/events/action-attempts.js +10 -22
  25. package/lib/seam/connect/models/events/action-attempts.js.map +1 -1
  26. package/lib/seam/connect/models/events/client-sessions.js +5 -7
  27. package/lib/seam/connect/models/events/client-sessions.js.map +1 -1
  28. package/lib/seam/connect/models/events/common.js +5 -2
  29. package/lib/seam/connect/models/events/common.js.map +1 -1
  30. package/lib/seam/connect/models/events/connect-webviews.js +10 -14
  31. package/lib/seam/connect/models/events/connect-webviews.js.map +1 -1
  32. package/lib/seam/connect/models/events/connected-accounts.js +15 -19
  33. package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
  34. package/lib/seam/connect/models/events/devices.js +43 -47
  35. package/lib/seam/connect/models/events/devices.js.map +1 -1
  36. package/lib/seam/connect/models/events/enrollment-automations.js +5 -7
  37. package/lib/seam/connect/models/events/enrollment-automations.js.map +1 -1
  38. package/lib/seam/connect/models/events/phones.js +4 -6
  39. package/lib/seam/connect/models/events/phones.js.map +1 -1
  40. package/lib/seam/connect/openapi.d.ts +124 -222
  41. package/lib/seam/connect/openapi.js +1241 -475
  42. package/lib/seam/connect/openapi.js.map +1 -1
  43. package/lib/seam/connect/route-types.d.ts +2131 -545
  44. package/package.json +1 -1
  45. package/src/lib/seam/connect/models/devices/device.ts +118 -3
  46. package/src/lib/seam/connect/models/events/access-codes.ts +64 -41
  47. package/src/lib/seam/connect/models/events/acs/common.ts +13 -12
  48. package/src/lib/seam/connect/models/events/acs/credentials.ts +6 -2
  49. package/src/lib/seam/connect/models/events/acs/encoders.ts +12 -3
  50. package/src/lib/seam/connect/models/events/acs/systems.ts +9 -3
  51. package/src/lib/seam/connect/models/events/acs/users.ts +10 -4
  52. package/src/lib/seam/connect/models/events/action-attempts.ts +20 -22
  53. package/src/lib/seam/connect/models/events/client-sessions.ts +9 -7
  54. package/src/lib/seam/connect/models/events/common.ts +5 -2
  55. package/src/lib/seam/connect/models/events/connect-webviews.ts +18 -14
  56. package/src/lib/seam/connect/models/events/connected-accounts.ts +25 -19
  57. package/src/lib/seam/connect/models/events/devices.ts +75 -47
  58. package/src/lib/seam/connect/models/events/enrollment-automations.ts +9 -7
  59. package/src/lib/seam/connect/models/events/phones.ts +6 -6
  60. package/src/lib/seam/connect/openapi.ts +1449 -475
  61. package/src/lib/seam/connect/route-types.ts +2580 -630
@@ -49,28 +49,36 @@ declare const _default: {
49
49
  message: {
50
50
  type: string;
51
51
  };
52
- is_device_error?: never;
53
52
  is_connected_account_error?: never;
54
53
  };
55
54
  required: string[];
56
55
  type: string;
56
+ description?: never;
57
+ oneOf?: never;
57
58
  } | {
58
- properties: {
59
- error_code: {
60
- type: string;
61
- };
62
- is_device_error: {
63
- enum: boolean[];
64
- type: string;
65
- };
66
- message: {
67
- type: string;
59
+ description: string;
60
+ oneOf: {
61
+ description: string;
62
+ properties: {
63
+ error_code: {
64
+ description: string;
65
+ enum: string[];
66
+ type: string;
67
+ };
68
+ is_device_error: {
69
+ enum: boolean[];
70
+ type: string;
71
+ };
72
+ message: {
73
+ type: string;
74
+ };
68
75
  };
69
- is_access_code_error?: never;
70
- is_connected_account_error?: never;
71
- };
72
- required: string[];
73
- type: string;
76
+ required: string[];
77
+ type: string;
78
+ }[];
79
+ properties?: never;
80
+ required?: never;
81
+ type?: never;
74
82
  } | {
75
83
  properties: {
76
84
  error_code: {
@@ -84,10 +92,11 @@ declare const _default: {
84
92
  type: string;
85
93
  };
86
94
  is_access_code_error?: never;
87
- is_device_error?: never;
88
95
  };
89
96
  required: string[];
90
97
  type: string;
98
+ description?: never;
99
+ oneOf?: never;
91
100
  })[];
92
101
  };
93
102
  type: string;
@@ -2350,21 +2359,29 @@ declare const _default: {
2350
2359
  description: string;
2351
2360
  items: {
2352
2361
  oneOf: ({
2353
- properties: {
2354
- error_code: {
2355
- type: string;
2356
- };
2357
- is_device_error: {
2358
- enum: boolean[];
2359
- type: string;
2360
- };
2361
- message: {
2362
- type: string;
2362
+ description: string;
2363
+ oneOf: {
2364
+ description: string;
2365
+ properties: {
2366
+ error_code: {
2367
+ description: string;
2368
+ enum: string[];
2369
+ type: string;
2370
+ };
2371
+ is_device_error: {
2372
+ enum: boolean[];
2373
+ type: string;
2374
+ };
2375
+ message: {
2376
+ type: string;
2377
+ };
2363
2378
  };
2364
- is_connected_account_error?: never;
2365
- };
2366
- required: string[];
2367
- type: string;
2379
+ required: string[];
2380
+ type: string;
2381
+ }[];
2382
+ properties?: never;
2383
+ required?: never;
2384
+ type?: never;
2368
2385
  } | {
2369
2386
  properties: {
2370
2387
  error_code: {
@@ -2377,10 +2394,11 @@ declare const _default: {
2377
2394
  message: {
2378
2395
  type: string;
2379
2396
  };
2380
- is_device_error?: never;
2381
2397
  };
2382
2398
  required: string[];
2383
2399
  type: string;
2400
+ description?: never;
2401
+ oneOf?: never;
2384
2402
  })[];
2385
2403
  };
2386
2404
  type: string;
@@ -3978,13 +3996,11 @@ declare const _default: {
3978
3996
  description: string;
3979
3997
  format: string;
3980
3998
  type: string;
3981
- 'x-title': string;
3982
3999
  };
3983
4000
  connected_account_id: {
3984
4001
  description: string;
3985
4002
  format: string;
3986
4003
  type: string;
3987
- 'x-title': string;
3988
4004
  };
3989
4005
  created_at: {
3990
4006
  description: string;
@@ -3995,7 +4011,6 @@ declare const _default: {
3995
4011
  description: string;
3996
4012
  format: string;
3997
4013
  type: string;
3998
- 'x-title': string;
3999
4014
  };
4000
4015
  event_id: {
4001
4016
  description: string;
@@ -4065,19 +4080,16 @@ declare const _default: {
4065
4080
  description: string;
4066
4081
  format: string;
4067
4082
  type: string;
4068
- 'x-title': string;
4069
4083
  };
4070
4084
  code: {
4071
4085
  description: string;
4072
4086
  type: string;
4073
- 'x-title': string;
4074
4087
  nullable?: never;
4075
4088
  };
4076
4089
  connected_account_id: {
4077
4090
  description: string;
4078
4091
  format: string;
4079
4092
  type: string;
4080
- 'x-title': string;
4081
4093
  };
4082
4094
  created_at: {
4083
4095
  description: string;
@@ -4088,7 +4100,6 @@ declare const _default: {
4088
4100
  description: string;
4089
4101
  format: string;
4090
4102
  type: string;
4091
- 'x-title': string;
4092
4103
  };
4093
4104
  event_id: {
4094
4105
  description: string;
@@ -4157,19 +4168,16 @@ declare const _default: {
4157
4168
  description: string;
4158
4169
  format: string;
4159
4170
  type: string;
4160
- 'x-title': string;
4161
4171
  };
4162
4172
  code: {
4163
4173
  description: string;
4164
4174
  nullable: boolean;
4165
4175
  type: string;
4166
- 'x-title': string;
4167
4176
  };
4168
4177
  connected_account_id: {
4169
4178
  description: string;
4170
4179
  format: string;
4171
4180
  type: string;
4172
- 'x-title': string;
4173
4181
  };
4174
4182
  created_at: {
4175
4183
  description: string;
@@ -4180,7 +4188,6 @@ declare const _default: {
4180
4188
  description: string;
4181
4189
  format: string;
4182
4190
  type: string;
4183
- 'x-title': string;
4184
4191
  };
4185
4192
  event_id: {
4186
4193
  description: string;
@@ -4249,7 +4256,6 @@ declare const _default: {
4249
4256
  description: string;
4250
4257
  format: string;
4251
4258
  type: string;
4252
- 'x-title': string;
4253
4259
  };
4254
4260
  backup_access_code_id: {
4255
4261
  type: string;
@@ -4258,7 +4264,6 @@ declare const _default: {
4258
4264
  description: string;
4259
4265
  format: string;
4260
4266
  type: string;
4261
- 'x-title': string;
4262
4267
  };
4263
4268
  created_at: {
4264
4269
  description: string;
@@ -4269,7 +4274,6 @@ declare const _default: {
4269
4274
  description: string;
4270
4275
  format: string;
4271
4276
  type: string;
4272
- 'x-title': string;
4273
4277
  };
4274
4278
  event_id: {
4275
4279
  description: string;
@@ -4338,13 +4342,11 @@ declare const _default: {
4338
4342
  description: string;
4339
4343
  format: string;
4340
4344
  type: string;
4341
- 'x-title': string;
4342
4345
  };
4343
4346
  connected_account_id: {
4344
4347
  description: string;
4345
4348
  format: string;
4346
4349
  type: string;
4347
- 'x-title': string;
4348
4350
  };
4349
4351
  created_at: {
4350
4352
  description: string;
@@ -4424,13 +4426,11 @@ declare const _default: {
4424
4426
  description: string;
4425
4427
  format: string;
4426
4428
  type: string;
4427
- 'x-title': string;
4428
4429
  };
4429
4430
  connected_account_id: {
4430
4431
  description: string;
4431
4432
  format: string;
4432
4433
  type: string;
4433
- 'x-title': string;
4434
4434
  };
4435
4435
  created_at: {
4436
4436
  description: string;
@@ -4505,7 +4505,6 @@ declare const _default: {
4505
4505
  description: string;
4506
4506
  format: string;
4507
4507
  type: string;
4508
- 'x-title': string;
4509
4508
  };
4510
4509
  acs_user_id: {
4511
4510
  format: string;
@@ -4515,7 +4514,6 @@ declare const _default: {
4515
4514
  description: string;
4516
4515
  format: string;
4517
4516
  type: string;
4518
- 'x-title': string;
4519
4517
  };
4520
4518
  created_at: {
4521
4519
  description: string;
@@ -4595,13 +4593,11 @@ declare const _default: {
4595
4593
  description: string;
4596
4594
  format: string;
4597
4595
  type: string;
4598
- 'x-title': string;
4599
4596
  };
4600
4597
  connected_account_id: {
4601
4598
  description: string;
4602
4599
  format: string;
4603
4600
  type: string;
4604
- 'x-title': string;
4605
4601
  };
4606
4602
  created_at: {
4607
4603
  description: string;
@@ -4676,7 +4672,6 @@ declare const _default: {
4676
4672
  description: string;
4677
4673
  format: string;
4678
4674
  type: string;
4679
- 'x-title': string;
4680
4675
  };
4681
4676
  created_at: {
4682
4677
  description: string;
@@ -4753,13 +4748,11 @@ declare const _default: {
4753
4748
  description: string;
4754
4749
  format: string;
4755
4750
  type: string;
4756
- 'x-title': string;
4757
4751
  };
4758
4752
  connected_account_id: {
4759
4753
  description: string;
4760
4754
  format: string;
4761
4755
  type: string;
4762
- 'x-title': string;
4763
4756
  };
4764
4757
  created_at: {
4765
4758
  description: string;
@@ -4836,13 +4829,11 @@ declare const _default: {
4836
4829
  description: string;
4837
4830
  format: string;
4838
4831
  type: string;
4839
- 'x-title': string;
4840
4832
  };
4841
4833
  connected_account_id: {
4842
4834
  description: string;
4843
4835
  format: string;
4844
4836
  type: string;
4845
- 'x-title': string;
4846
4837
  };
4847
4838
  created_at: {
4848
4839
  description: string;
@@ -4917,7 +4908,6 @@ declare const _default: {
4917
4908
  description: string;
4918
4909
  format: string;
4919
4910
  type: string;
4920
- 'x-title': string;
4921
4911
  };
4922
4912
  created_at: {
4923
4913
  description: string;
@@ -4994,12 +4984,10 @@ declare const _default: {
4994
4984
  description: string;
4995
4985
  format: string;
4996
4986
  type: string;
4997
- 'x-title': string;
4998
4987
  };
4999
4988
  action_type: {
5000
4989
  description: string;
5001
4990
  type: string;
5002
- 'x-title': string;
5003
4991
  };
5004
4992
  created_at: {
5005
4993
  description: string;
@@ -5023,7 +5011,6 @@ declare const _default: {
5023
5011
  status: {
5024
5012
  description: string;
5025
5013
  type: string;
5026
- 'x-title': string;
5027
5014
  };
5028
5015
  workspace_id: {
5029
5016
  description: string;
@@ -5079,7 +5066,6 @@ declare const _default: {
5079
5066
  description: string;
5080
5067
  format: string;
5081
5068
  type: string;
5082
- 'x-title': string;
5083
5069
  };
5084
5070
  created_at: {
5085
5071
  description: string;
@@ -5156,7 +5142,6 @@ declare const _default: {
5156
5142
  description: string;
5157
5143
  format: string;
5158
5144
  type: string;
5159
- 'x-title'?: never;
5160
5145
  };
5161
5146
  created_at: {
5162
5147
  description: string;
@@ -5167,7 +5152,6 @@ declare const _default: {
5167
5152
  description: string;
5168
5153
  format: string;
5169
5154
  type: string;
5170
- 'x-title'?: never;
5171
5155
  };
5172
5156
  event_id: {
5173
5157
  description: string;
@@ -5238,7 +5222,6 @@ declare const _default: {
5238
5222
  description: string;
5239
5223
  format: string;
5240
5224
  type: string;
5241
- 'x-title'?: never;
5242
5225
  };
5243
5226
  created_at: {
5244
5227
  description: string;
@@ -5249,7 +5232,6 @@ declare const _default: {
5249
5232
  description: string;
5250
5233
  format: string;
5251
5234
  type: string;
5252
- 'x-title'?: never;
5253
5235
  };
5254
5236
  error_code: {
5255
5237
  description: string;
@@ -5331,7 +5313,6 @@ declare const _default: {
5331
5313
  description: string;
5332
5314
  format: string;
5333
5315
  type: string;
5334
- 'x-title'?: never;
5335
5316
  };
5336
5317
  created_at: {
5337
5318
  description: string;
@@ -5342,7 +5323,6 @@ declare const _default: {
5342
5323
  description: string;
5343
5324
  format: string;
5344
5325
  type: string;
5345
- 'x-title'?: never;
5346
5326
  };
5347
5327
  event_id: {
5348
5328
  description: string;
@@ -5424,7 +5404,6 @@ declare const _default: {
5424
5404
  description: string;
5425
5405
  format: string;
5426
5406
  type: string;
5427
- 'x-title'?: never;
5428
5407
  };
5429
5408
  created_at: {
5430
5409
  description: string;
@@ -5435,7 +5414,6 @@ declare const _default: {
5435
5414
  description: string;
5436
5415
  format: string;
5437
5416
  type: string;
5438
- 'x-title'?: never;
5439
5417
  };
5440
5418
  event_id: {
5441
5419
  description: string;
@@ -5504,7 +5482,6 @@ declare const _default: {
5504
5482
  description: string;
5505
5483
  format: string;
5506
5484
  type: string;
5507
- 'x-title'?: never;
5508
5485
  };
5509
5486
  created_at: {
5510
5487
  description: string;
@@ -5515,7 +5492,6 @@ declare const _default: {
5515
5492
  description: string;
5516
5493
  format: string;
5517
5494
  type: string;
5518
- 'x-title'?: never;
5519
5495
  };
5520
5496
  event_id: {
5521
5497
  description: string;
@@ -5530,7 +5506,6 @@ declare const _default: {
5530
5506
  additionalProperties: {};
5531
5507
  description: string;
5532
5508
  type: string;
5533
- 'x-title': string;
5534
5509
  };
5535
5510
  noise_level_decibels: {
5536
5511
  description: string;
@@ -5555,7 +5530,6 @@ declare const _default: {
5555
5530
  additionalProperties: {};
5556
5531
  description: string;
5557
5532
  type: string;
5558
- 'x-title': string;
5559
5533
  };
5560
5534
  occurred_at: {
5561
5535
  description: string;
@@ -5611,19 +5585,16 @@ declare const _default: {
5611
5585
  description: string;
5612
5586
  format: string;
5613
5587
  type: string;
5614
- 'x-title'?: never;
5615
5588
  };
5616
5589
  action_attempt_id: {
5617
5590
  description: string;
5618
5591
  format: string;
5619
5592
  type: string;
5620
- 'x-title'?: never;
5621
5593
  };
5622
5594
  connected_account_id: {
5623
5595
  description: string;
5624
5596
  format: string;
5625
5597
  type: string;
5626
- 'x-title'?: never;
5627
5598
  };
5628
5599
  created_at: {
5629
5600
  description: string;
@@ -5634,7 +5605,6 @@ declare const _default: {
5634
5605
  description: string;
5635
5606
  format: string;
5636
5607
  type: string;
5637
- 'x-title'?: never;
5638
5608
  };
5639
5609
  event_id: {
5640
5610
  description: string;
@@ -5700,93 +5670,6 @@ declare const _default: {
5700
5670
  type: string;
5701
5671
  deprecated?: never;
5702
5672
  '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
5673
  } | {
5791
5674
  description: string;
5792
5675
  properties: {
@@ -5798,7 +5681,6 @@ declare const _default: {
5798
5681
  description: string;
5799
5682
  format: string;
5800
5683
  type: string;
5801
- 'x-title'?: never;
5802
5684
  };
5803
5685
  created_at: {
5804
5686
  description: string;
@@ -5809,7 +5691,6 @@ declare const _default: {
5809
5691
  description: string;
5810
5692
  format: string;
5811
5693
  type: string;
5812
- 'x-title'?: never;
5813
5694
  };
5814
5695
  event_id: {
5815
5696
  description: string;
@@ -5887,7 +5768,6 @@ declare const _default: {
5887
5768
  description: string;
5888
5769
  format: string;
5889
5770
  type: string;
5890
- 'x-title'?: never;
5891
5771
  };
5892
5772
  cooling_set_point_celsius: {
5893
5773
  description: string;
@@ -5908,7 +5788,6 @@ declare const _default: {
5908
5788
  description: string;
5909
5789
  format: string;
5910
5790
  type: string;
5911
- 'x-title'?: never;
5912
5791
  };
5913
5792
  event_id: {
5914
5793
  description: string;
@@ -5997,7 +5876,6 @@ declare const _default: {
5997
5876
  description: string;
5998
5877
  format: string;
5999
5878
  type: string;
6000
- 'x-title'?: never;
6001
5879
  };
6002
5880
  created_at: {
6003
5881
  description: string;
@@ -6008,7 +5886,6 @@ declare const _default: {
6008
5886
  description: string;
6009
5887
  format: string;
6010
5888
  type: string;
6011
- 'x-title'?: never;
6012
5889
  };
6013
5890
  event_id: {
6014
5891
  description: string;
@@ -6112,7 +5989,6 @@ declare const _default: {
6112
5989
  description: string;
6113
5990
  format: string;
6114
5991
  type: string;
6115
- 'x-title': string;
6116
5992
  };
6117
5993
  event_id: {
6118
5994
  description: string;
@@ -6189,7 +6065,6 @@ declare const _default: {
6189
6065
  description: string;
6190
6066
  format: string;
6191
6067
  type: string;
6192
- 'x-title': string;
6193
6068
  };
6194
6069
  event_id: {
6195
6070
  description: string;
@@ -6381,21 +6256,29 @@ declare const _default: {
6381
6256
  description: string;
6382
6257
  items: {
6383
6258
  oneOf: ({
6384
- properties: {
6385
- error_code: {
6386
- type: string;
6387
- };
6388
- is_device_error: {
6389
- enum: boolean[];
6390
- type: string;
6391
- };
6392
- message: {
6393
- type: string;
6259
+ description: string;
6260
+ oneOf: {
6261
+ description: string;
6262
+ properties: {
6263
+ error_code: {
6264
+ description: string;
6265
+ enum: string[];
6266
+ type: string;
6267
+ };
6268
+ is_device_error: {
6269
+ enum: boolean[];
6270
+ type: string;
6271
+ };
6272
+ message: {
6273
+ type: string;
6274
+ };
6394
6275
  };
6395
- is_connected_account_error?: never;
6396
- };
6397
- required: string[];
6398
- type: string;
6276
+ required: string[];
6277
+ type: string;
6278
+ }[];
6279
+ properties?: never;
6280
+ required?: never;
6281
+ type?: never;
6399
6282
  } | {
6400
6283
  properties: {
6401
6284
  error_code: {
@@ -6408,10 +6291,11 @@ declare const _default: {
6408
6291
  message: {
6409
6292
  type: string;
6410
6293
  };
6411
- is_device_error?: never;
6412
6294
  };
6413
6295
  required: string[];
6414
6296
  type: string;
6297
+ description?: never;
6298
+ oneOf?: never;
6415
6299
  })[];
6416
6300
  };
6417
6301
  type: string;
@@ -6619,28 +6503,36 @@ declare const _default: {
6619
6503
  message: {
6620
6504
  type: string;
6621
6505
  };
6622
- is_device_error?: never;
6623
6506
  is_connected_account_error?: never;
6624
6507
  };
6625
6508
  required: string[];
6626
6509
  type: string;
6510
+ description?: never;
6511
+ oneOf?: never;
6627
6512
  } | {
6628
- properties: {
6629
- error_code: {
6630
- type: string;
6631
- };
6632
- is_device_error: {
6633
- enum: boolean[];
6634
- type: string;
6635
- };
6636
- message: {
6637
- type: string;
6513
+ description: string;
6514
+ oneOf: {
6515
+ description: string;
6516
+ properties: {
6517
+ error_code: {
6518
+ description: string;
6519
+ enum: string[];
6520
+ type: string;
6521
+ };
6522
+ is_device_error: {
6523
+ enum: boolean[];
6524
+ type: string;
6525
+ };
6526
+ message: {
6527
+ type: string;
6528
+ };
6638
6529
  };
6639
- is_access_code_error?: never;
6640
- is_connected_account_error?: never;
6641
- };
6642
- required: string[];
6643
- type: string;
6530
+ required: string[];
6531
+ type: string;
6532
+ }[];
6533
+ properties?: never;
6534
+ required?: never;
6535
+ type?: never;
6644
6536
  } | {
6645
6537
  properties: {
6646
6538
  error_code: {
@@ -6654,10 +6546,11 @@ declare const _default: {
6654
6546
  type: string;
6655
6547
  };
6656
6548
  is_access_code_error?: never;
6657
- is_device_error?: never;
6658
6549
  };
6659
6550
  required: string[];
6660
6551
  type: string;
6552
+ description?: never;
6553
+ oneOf?: never;
6661
6554
  })[];
6662
6555
  };
6663
6556
  type: string;
@@ -6775,21 +6668,29 @@ declare const _default: {
6775
6668
  description: string;
6776
6669
  items: {
6777
6670
  oneOf: ({
6778
- properties: {
6779
- error_code: {
6780
- type: string;
6781
- };
6782
- is_device_error: {
6783
- enum: boolean[];
6784
- type: string;
6785
- };
6786
- message: {
6787
- type: string;
6671
+ description: string;
6672
+ oneOf: {
6673
+ description: string;
6674
+ properties: {
6675
+ error_code: {
6676
+ description: string;
6677
+ enum: string[];
6678
+ type: string;
6679
+ };
6680
+ is_device_error: {
6681
+ enum: boolean[];
6682
+ type: string;
6683
+ };
6684
+ message: {
6685
+ type: string;
6686
+ };
6788
6687
  };
6789
- is_connected_account_error?: never;
6790
- };
6791
- required: string[];
6792
- type: string;
6688
+ required: string[];
6689
+ type: string;
6690
+ }[];
6691
+ properties?: never;
6692
+ required?: never;
6693
+ type?: never;
6793
6694
  } | {
6794
6695
  properties: {
6795
6696
  error_code: {
@@ -6802,10 +6703,11 @@ declare const _default: {
6802
6703
  message: {
6803
6704
  type: string;
6804
6705
  };
6805
- is_device_error?: never;
6806
6706
  };
6807
6707
  required: string[];
6808
6708
  type: string;
6709
+ description?: never;
6710
+ oneOf?: never;
6809
6711
  })[];
6810
6712
  };
6811
6713
  type: string;