@seamapi/types 1.107.0 → 1.108.1
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.
- package/dist/connect.cjs +296 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +446 -9
- package/lib/seam/connect/openapi.d.ts +370 -0
- package/lib/seam/connect/openapi.js +286 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +76 -9
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +36 -0
- package/lib/seam/connect/unstable/models/acs/credential.js +8 -0
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +5 -5
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +1 -1
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +9 -9
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +286 -1
- package/src/lib/seam/connect/route-types.ts +76 -9
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +12 -0
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +1 -1
|
@@ -1300,6 +1300,7 @@ declare const _default: {
|
|
|
1300
1300
|
schlage_metadata: {
|
|
1301
1301
|
properties: {
|
|
1302
1302
|
access_code_length: {
|
|
1303
|
+
nullable: boolean;
|
|
1303
1304
|
type: string;
|
|
1304
1305
|
};
|
|
1305
1306
|
device_id: {
|
|
@@ -5238,6 +5239,21 @@ declare const _default: {
|
|
|
5238
5239
|
ends_at: {
|
|
5239
5240
|
type: string;
|
|
5240
5241
|
};
|
|
5242
|
+
errors: {
|
|
5243
|
+
items: {
|
|
5244
|
+
properties: {
|
|
5245
|
+
error_code: {
|
|
5246
|
+
type: string;
|
|
5247
|
+
};
|
|
5248
|
+
message: {
|
|
5249
|
+
type: string;
|
|
5250
|
+
};
|
|
5251
|
+
};
|
|
5252
|
+
required: string[];
|
|
5253
|
+
type: string;
|
|
5254
|
+
};
|
|
5255
|
+
type: string;
|
|
5256
|
+
};
|
|
5241
5257
|
external_type: {
|
|
5242
5258
|
enum: string[];
|
|
5243
5259
|
type: string;
|
|
@@ -5281,6 +5297,21 @@ declare const _default: {
|
|
|
5281
5297
|
};
|
|
5282
5298
|
type: string;
|
|
5283
5299
|
};
|
|
5300
|
+
warnings: {
|
|
5301
|
+
items: {
|
|
5302
|
+
properties: {
|
|
5303
|
+
message: {
|
|
5304
|
+
type: string;
|
|
5305
|
+
};
|
|
5306
|
+
warning_code: {
|
|
5307
|
+
type: string;
|
|
5308
|
+
};
|
|
5309
|
+
};
|
|
5310
|
+
required: string[];
|
|
5311
|
+
type: string;
|
|
5312
|
+
};
|
|
5313
|
+
type: string;
|
|
5314
|
+
};
|
|
5284
5315
|
workspace_id: {
|
|
5285
5316
|
format: string;
|
|
5286
5317
|
type: string;
|
|
@@ -5389,6 +5420,21 @@ declare const _default: {
|
|
|
5389
5420
|
ends_at: {
|
|
5390
5421
|
type: string;
|
|
5391
5422
|
};
|
|
5423
|
+
errors: {
|
|
5424
|
+
items: {
|
|
5425
|
+
properties: {
|
|
5426
|
+
error_code: {
|
|
5427
|
+
type: string;
|
|
5428
|
+
};
|
|
5429
|
+
message: {
|
|
5430
|
+
type: string;
|
|
5431
|
+
};
|
|
5432
|
+
};
|
|
5433
|
+
required: string[];
|
|
5434
|
+
type: string;
|
|
5435
|
+
};
|
|
5436
|
+
type: string;
|
|
5437
|
+
};
|
|
5392
5438
|
external_type: {
|
|
5393
5439
|
enum: string[];
|
|
5394
5440
|
type: string;
|
|
@@ -5432,6 +5478,21 @@ declare const _default: {
|
|
|
5432
5478
|
};
|
|
5433
5479
|
type: string;
|
|
5434
5480
|
};
|
|
5481
|
+
warnings: {
|
|
5482
|
+
items: {
|
|
5483
|
+
properties: {
|
|
5484
|
+
message: {
|
|
5485
|
+
type: string;
|
|
5486
|
+
};
|
|
5487
|
+
warning_code: {
|
|
5488
|
+
type: string;
|
|
5489
|
+
};
|
|
5490
|
+
};
|
|
5491
|
+
required: string[];
|
|
5492
|
+
type: string;
|
|
5493
|
+
};
|
|
5494
|
+
type: string;
|
|
5495
|
+
};
|
|
5435
5496
|
workspace_id: {
|
|
5436
5497
|
format: string;
|
|
5437
5498
|
type: string;
|
|
@@ -5586,6 +5647,21 @@ declare const _default: {
|
|
|
5586
5647
|
ends_at: {
|
|
5587
5648
|
type: string;
|
|
5588
5649
|
};
|
|
5650
|
+
errors: {
|
|
5651
|
+
items: {
|
|
5652
|
+
properties: {
|
|
5653
|
+
error_code: {
|
|
5654
|
+
type: string;
|
|
5655
|
+
};
|
|
5656
|
+
message: {
|
|
5657
|
+
type: string;
|
|
5658
|
+
};
|
|
5659
|
+
};
|
|
5660
|
+
required: string[];
|
|
5661
|
+
type: string;
|
|
5662
|
+
};
|
|
5663
|
+
type: string;
|
|
5664
|
+
};
|
|
5589
5665
|
external_type: {
|
|
5590
5666
|
enum: string[];
|
|
5591
5667
|
type: string;
|
|
@@ -5629,6 +5705,21 @@ declare const _default: {
|
|
|
5629
5705
|
};
|
|
5630
5706
|
type: string;
|
|
5631
5707
|
};
|
|
5708
|
+
warnings: {
|
|
5709
|
+
items: {
|
|
5710
|
+
properties: {
|
|
5711
|
+
message: {
|
|
5712
|
+
type: string;
|
|
5713
|
+
};
|
|
5714
|
+
warning_code: {
|
|
5715
|
+
type: string;
|
|
5716
|
+
};
|
|
5717
|
+
};
|
|
5718
|
+
required: string[];
|
|
5719
|
+
type: string;
|
|
5720
|
+
};
|
|
5721
|
+
type: string;
|
|
5722
|
+
};
|
|
5632
5723
|
workspace_id: {
|
|
5633
5724
|
format: string;
|
|
5634
5725
|
type: string;
|
|
@@ -5798,6 +5889,21 @@ declare const _default: {
|
|
|
5798
5889
|
ends_at: {
|
|
5799
5890
|
type: string;
|
|
5800
5891
|
};
|
|
5892
|
+
errors: {
|
|
5893
|
+
items: {
|
|
5894
|
+
properties: {
|
|
5895
|
+
error_code: {
|
|
5896
|
+
type: string;
|
|
5897
|
+
};
|
|
5898
|
+
message: {
|
|
5899
|
+
type: string;
|
|
5900
|
+
};
|
|
5901
|
+
};
|
|
5902
|
+
required: string[];
|
|
5903
|
+
type: string;
|
|
5904
|
+
};
|
|
5905
|
+
type: string;
|
|
5906
|
+
};
|
|
5801
5907
|
external_type: {
|
|
5802
5908
|
enum: string[];
|
|
5803
5909
|
type: string;
|
|
@@ -5841,6 +5947,21 @@ declare const _default: {
|
|
|
5841
5947
|
};
|
|
5842
5948
|
type: string;
|
|
5843
5949
|
};
|
|
5950
|
+
warnings: {
|
|
5951
|
+
items: {
|
|
5952
|
+
properties: {
|
|
5953
|
+
message: {
|
|
5954
|
+
type: string;
|
|
5955
|
+
};
|
|
5956
|
+
warning_code: {
|
|
5957
|
+
type: string;
|
|
5958
|
+
};
|
|
5959
|
+
};
|
|
5960
|
+
required: string[];
|
|
5961
|
+
type: string;
|
|
5962
|
+
};
|
|
5963
|
+
type: string;
|
|
5964
|
+
};
|
|
5844
5965
|
workspace_id: {
|
|
5845
5966
|
format: string;
|
|
5846
5967
|
type: string;
|
|
@@ -5989,6 +6110,21 @@ declare const _default: {
|
|
|
5989
6110
|
ends_at: {
|
|
5990
6111
|
type: string;
|
|
5991
6112
|
};
|
|
6113
|
+
errors: {
|
|
6114
|
+
items: {
|
|
6115
|
+
properties: {
|
|
6116
|
+
error_code: {
|
|
6117
|
+
type: string;
|
|
6118
|
+
};
|
|
6119
|
+
message: {
|
|
6120
|
+
type: string;
|
|
6121
|
+
};
|
|
6122
|
+
};
|
|
6123
|
+
required: string[];
|
|
6124
|
+
type: string;
|
|
6125
|
+
};
|
|
6126
|
+
type: string;
|
|
6127
|
+
};
|
|
5992
6128
|
external_type: {
|
|
5993
6129
|
enum: string[];
|
|
5994
6130
|
type: string;
|
|
@@ -6032,6 +6168,21 @@ declare const _default: {
|
|
|
6032
6168
|
};
|
|
6033
6169
|
type: string;
|
|
6034
6170
|
};
|
|
6171
|
+
warnings: {
|
|
6172
|
+
items: {
|
|
6173
|
+
properties: {
|
|
6174
|
+
message: {
|
|
6175
|
+
type: string;
|
|
6176
|
+
};
|
|
6177
|
+
warning_code: {
|
|
6178
|
+
type: string;
|
|
6179
|
+
};
|
|
6180
|
+
};
|
|
6181
|
+
required: string[];
|
|
6182
|
+
type: string;
|
|
6183
|
+
};
|
|
6184
|
+
type: string;
|
|
6185
|
+
};
|
|
6035
6186
|
workspace_id: {
|
|
6036
6187
|
format: string;
|
|
6037
6188
|
type: string;
|
|
@@ -6153,6 +6304,21 @@ declare const _default: {
|
|
|
6153
6304
|
ends_at: {
|
|
6154
6305
|
type: string;
|
|
6155
6306
|
};
|
|
6307
|
+
errors: {
|
|
6308
|
+
items: {
|
|
6309
|
+
properties: {
|
|
6310
|
+
error_code: {
|
|
6311
|
+
type: string;
|
|
6312
|
+
};
|
|
6313
|
+
message: {
|
|
6314
|
+
type: string;
|
|
6315
|
+
};
|
|
6316
|
+
};
|
|
6317
|
+
required: string[];
|
|
6318
|
+
type: string;
|
|
6319
|
+
};
|
|
6320
|
+
type: string;
|
|
6321
|
+
};
|
|
6156
6322
|
external_type: {
|
|
6157
6323
|
enum: string[];
|
|
6158
6324
|
type: string;
|
|
@@ -6196,6 +6362,21 @@ declare const _default: {
|
|
|
6196
6362
|
};
|
|
6197
6363
|
type: string;
|
|
6198
6364
|
};
|
|
6365
|
+
warnings: {
|
|
6366
|
+
items: {
|
|
6367
|
+
properties: {
|
|
6368
|
+
message: {
|
|
6369
|
+
type: string;
|
|
6370
|
+
};
|
|
6371
|
+
warning_code: {
|
|
6372
|
+
type: string;
|
|
6373
|
+
};
|
|
6374
|
+
};
|
|
6375
|
+
required: string[];
|
|
6376
|
+
type: string;
|
|
6377
|
+
};
|
|
6378
|
+
type: string;
|
|
6379
|
+
};
|
|
6199
6380
|
workspace_id: {
|
|
6200
6381
|
format: string;
|
|
6201
6382
|
type: string;
|
|
@@ -6304,6 +6485,21 @@ declare const _default: {
|
|
|
6304
6485
|
ends_at: {
|
|
6305
6486
|
type: string;
|
|
6306
6487
|
};
|
|
6488
|
+
errors: {
|
|
6489
|
+
items: {
|
|
6490
|
+
properties: {
|
|
6491
|
+
error_code: {
|
|
6492
|
+
type: string;
|
|
6493
|
+
};
|
|
6494
|
+
message: {
|
|
6495
|
+
type: string;
|
|
6496
|
+
};
|
|
6497
|
+
};
|
|
6498
|
+
required: string[];
|
|
6499
|
+
type: string;
|
|
6500
|
+
};
|
|
6501
|
+
type: string;
|
|
6502
|
+
};
|
|
6307
6503
|
external_type: {
|
|
6308
6504
|
enum: string[];
|
|
6309
6505
|
type: string;
|
|
@@ -6347,6 +6543,21 @@ declare const _default: {
|
|
|
6347
6543
|
};
|
|
6348
6544
|
type: string;
|
|
6349
6545
|
};
|
|
6546
|
+
warnings: {
|
|
6547
|
+
items: {
|
|
6548
|
+
properties: {
|
|
6549
|
+
message: {
|
|
6550
|
+
type: string;
|
|
6551
|
+
};
|
|
6552
|
+
warning_code: {
|
|
6553
|
+
type: string;
|
|
6554
|
+
};
|
|
6555
|
+
};
|
|
6556
|
+
required: string[];
|
|
6557
|
+
type: string;
|
|
6558
|
+
};
|
|
6559
|
+
type: string;
|
|
6560
|
+
};
|
|
6350
6561
|
workspace_id: {
|
|
6351
6562
|
format: string;
|
|
6352
6563
|
type: string;
|
|
@@ -6457,6 +6668,21 @@ declare const _default: {
|
|
|
6457
6668
|
ends_at: {
|
|
6458
6669
|
type: string;
|
|
6459
6670
|
};
|
|
6671
|
+
errors: {
|
|
6672
|
+
items: {
|
|
6673
|
+
properties: {
|
|
6674
|
+
error_code: {
|
|
6675
|
+
type: string;
|
|
6676
|
+
};
|
|
6677
|
+
message: {
|
|
6678
|
+
type: string;
|
|
6679
|
+
};
|
|
6680
|
+
};
|
|
6681
|
+
required: string[];
|
|
6682
|
+
type: string;
|
|
6683
|
+
};
|
|
6684
|
+
type: string;
|
|
6685
|
+
};
|
|
6460
6686
|
external_type: {
|
|
6461
6687
|
enum: string[];
|
|
6462
6688
|
type: string;
|
|
@@ -6500,6 +6726,21 @@ declare const _default: {
|
|
|
6500
6726
|
};
|
|
6501
6727
|
type: string;
|
|
6502
6728
|
};
|
|
6729
|
+
warnings: {
|
|
6730
|
+
items: {
|
|
6731
|
+
properties: {
|
|
6732
|
+
message: {
|
|
6733
|
+
type: string;
|
|
6734
|
+
};
|
|
6735
|
+
warning_code: {
|
|
6736
|
+
type: string;
|
|
6737
|
+
};
|
|
6738
|
+
};
|
|
6739
|
+
required: string[];
|
|
6740
|
+
type: string;
|
|
6741
|
+
};
|
|
6742
|
+
type: string;
|
|
6743
|
+
};
|
|
6503
6744
|
workspace_id: {
|
|
6504
6745
|
format: string;
|
|
6505
6746
|
type: string;
|
|
@@ -6607,6 +6848,21 @@ declare const _default: {
|
|
|
6607
6848
|
ends_at: {
|
|
6608
6849
|
type: string;
|
|
6609
6850
|
};
|
|
6851
|
+
errors: {
|
|
6852
|
+
items: {
|
|
6853
|
+
properties: {
|
|
6854
|
+
error_code: {
|
|
6855
|
+
type: string;
|
|
6856
|
+
};
|
|
6857
|
+
message: {
|
|
6858
|
+
type: string;
|
|
6859
|
+
};
|
|
6860
|
+
};
|
|
6861
|
+
required: string[];
|
|
6862
|
+
type: string;
|
|
6863
|
+
};
|
|
6864
|
+
type: string;
|
|
6865
|
+
};
|
|
6610
6866
|
external_type: {
|
|
6611
6867
|
enum: string[];
|
|
6612
6868
|
type: string;
|
|
@@ -6650,6 +6906,21 @@ declare const _default: {
|
|
|
6650
6906
|
};
|
|
6651
6907
|
type: string;
|
|
6652
6908
|
};
|
|
6909
|
+
warnings: {
|
|
6910
|
+
items: {
|
|
6911
|
+
properties: {
|
|
6912
|
+
message: {
|
|
6913
|
+
type: string;
|
|
6914
|
+
};
|
|
6915
|
+
warning_code: {
|
|
6916
|
+
type: string;
|
|
6917
|
+
};
|
|
6918
|
+
};
|
|
6919
|
+
required: string[];
|
|
6920
|
+
type: string;
|
|
6921
|
+
};
|
|
6922
|
+
type: string;
|
|
6923
|
+
};
|
|
6653
6924
|
workspace_id: {
|
|
6654
6925
|
format: string;
|
|
6655
6926
|
type: string;
|
|
@@ -7087,6 +7358,21 @@ declare const _default: {
|
|
|
7087
7358
|
ends_at: {
|
|
7088
7359
|
type: string;
|
|
7089
7360
|
};
|
|
7361
|
+
errors: {
|
|
7362
|
+
items: {
|
|
7363
|
+
properties: {
|
|
7364
|
+
error_code: {
|
|
7365
|
+
type: string;
|
|
7366
|
+
};
|
|
7367
|
+
message: {
|
|
7368
|
+
type: string;
|
|
7369
|
+
};
|
|
7370
|
+
};
|
|
7371
|
+
required: string[];
|
|
7372
|
+
type: string;
|
|
7373
|
+
};
|
|
7374
|
+
type: string;
|
|
7375
|
+
};
|
|
7090
7376
|
external_type: {
|
|
7091
7377
|
enum: string[];
|
|
7092
7378
|
type: string;
|
|
@@ -7130,6 +7416,21 @@ declare const _default: {
|
|
|
7130
7416
|
};
|
|
7131
7417
|
type: string;
|
|
7132
7418
|
};
|
|
7419
|
+
warnings: {
|
|
7420
|
+
items: {
|
|
7421
|
+
properties: {
|
|
7422
|
+
message: {
|
|
7423
|
+
type: string;
|
|
7424
|
+
};
|
|
7425
|
+
warning_code: {
|
|
7426
|
+
type: string;
|
|
7427
|
+
};
|
|
7428
|
+
};
|
|
7429
|
+
required: string[];
|
|
7430
|
+
type: string;
|
|
7431
|
+
};
|
|
7432
|
+
type: string;
|
|
7433
|
+
};
|
|
7133
7434
|
workspace_id: {
|
|
7134
7435
|
format: string;
|
|
7135
7436
|
type: string;
|
|
@@ -12480,6 +12781,75 @@ declare const _default: {
|
|
|
12480
12781
|
'x-fern-sdk-method-name': string;
|
|
12481
12782
|
};
|
|
12482
12783
|
};
|
|
12784
|
+
'/phones/deactivate': {
|
|
12785
|
+
post: {
|
|
12786
|
+
operationId: string;
|
|
12787
|
+
requestBody: {
|
|
12788
|
+
content: {
|
|
12789
|
+
'application/json': {
|
|
12790
|
+
schema: {
|
|
12791
|
+
properties: {
|
|
12792
|
+
device_id: {
|
|
12793
|
+
type: string;
|
|
12794
|
+
};
|
|
12795
|
+
};
|
|
12796
|
+
required: string[];
|
|
12797
|
+
type: string;
|
|
12798
|
+
};
|
|
12799
|
+
};
|
|
12800
|
+
};
|
|
12801
|
+
};
|
|
12802
|
+
responses: {
|
|
12803
|
+
200: {
|
|
12804
|
+
content: {
|
|
12805
|
+
'application/json': {
|
|
12806
|
+
schema: {
|
|
12807
|
+
properties: {
|
|
12808
|
+
ok: {
|
|
12809
|
+
type: string;
|
|
12810
|
+
};
|
|
12811
|
+
};
|
|
12812
|
+
required: string[];
|
|
12813
|
+
type: string;
|
|
12814
|
+
};
|
|
12815
|
+
};
|
|
12816
|
+
};
|
|
12817
|
+
description: string;
|
|
12818
|
+
};
|
|
12819
|
+
400: {
|
|
12820
|
+
description: string;
|
|
12821
|
+
};
|
|
12822
|
+
401: {
|
|
12823
|
+
description: string;
|
|
12824
|
+
};
|
|
12825
|
+
};
|
|
12826
|
+
security: ({
|
|
12827
|
+
client_session: never[];
|
|
12828
|
+
pat_with_workspace?: never;
|
|
12829
|
+
console_session?: never;
|
|
12830
|
+
api_key?: never;
|
|
12831
|
+
} | {
|
|
12832
|
+
pat_with_workspace: never[];
|
|
12833
|
+
client_session?: never;
|
|
12834
|
+
console_session?: never;
|
|
12835
|
+
api_key?: never;
|
|
12836
|
+
} | {
|
|
12837
|
+
console_session: never[];
|
|
12838
|
+
client_session?: never;
|
|
12839
|
+
pat_with_workspace?: never;
|
|
12840
|
+
api_key?: never;
|
|
12841
|
+
} | {
|
|
12842
|
+
api_key: never[];
|
|
12843
|
+
client_session?: never;
|
|
12844
|
+
pat_with_workspace?: never;
|
|
12845
|
+
console_session?: never;
|
|
12846
|
+
})[];
|
|
12847
|
+
summary: string;
|
|
12848
|
+
tags: string[];
|
|
12849
|
+
'x-fern-sdk-group-name': string[];
|
|
12850
|
+
'x-fern-sdk-method-name': string;
|
|
12851
|
+
};
|
|
12852
|
+
};
|
|
12483
12853
|
'/phones/list': {
|
|
12484
12854
|
post: {
|
|
12485
12855
|
operationId: string;
|