@seamapi/types 1.324.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.
- package/dist/connect.cjs +991 -49
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3076 -281
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +257 -5
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +257 -5
- package/lib/seam/connect/models/acs/acs-system.d.ts +10 -10
- package/lib/seam/connect/models/devices/device.d.ts +419 -11
- package/lib/seam/connect/models/devices/device.js +103 -3
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.d.ts +258 -6
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +258 -6
- package/lib/seam/connect/openapi.d.ts +124 -79
- package/lib/seam/connect/openapi.js +925 -35
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1630 -44
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +118 -3
- package/src/lib/seam/connect/openapi.ts +995 -35
- package/src/lib/seam/connect/route-types.ts +2080 -130
|
@@ -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
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
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
|
-
|
|
70
|
-
|
|
71
|
-
};
|
|
72
|
-
|
|
73
|
-
|
|
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
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
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
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
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;
|
|
@@ -6238,21 +6256,29 @@ declare const _default: {
|
|
|
6238
6256
|
description: string;
|
|
6239
6257
|
items: {
|
|
6240
6258
|
oneOf: ({
|
|
6241
|
-
|
|
6242
|
-
|
|
6243
|
-
|
|
6244
|
-
|
|
6245
|
-
|
|
6246
|
-
|
|
6247
|
-
|
|
6248
|
-
|
|
6249
|
-
|
|
6250
|
-
|
|
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
|
+
};
|
|
6251
6275
|
};
|
|
6252
|
-
|
|
6253
|
-
|
|
6254
|
-
|
|
6255
|
-
|
|
6276
|
+
required: string[];
|
|
6277
|
+
type: string;
|
|
6278
|
+
}[];
|
|
6279
|
+
properties?: never;
|
|
6280
|
+
required?: never;
|
|
6281
|
+
type?: never;
|
|
6256
6282
|
} | {
|
|
6257
6283
|
properties: {
|
|
6258
6284
|
error_code: {
|
|
@@ -6265,10 +6291,11 @@ declare const _default: {
|
|
|
6265
6291
|
message: {
|
|
6266
6292
|
type: string;
|
|
6267
6293
|
};
|
|
6268
|
-
is_device_error?: never;
|
|
6269
6294
|
};
|
|
6270
6295
|
required: string[];
|
|
6271
6296
|
type: string;
|
|
6297
|
+
description?: never;
|
|
6298
|
+
oneOf?: never;
|
|
6272
6299
|
})[];
|
|
6273
6300
|
};
|
|
6274
6301
|
type: string;
|
|
@@ -6476,28 +6503,36 @@ declare const _default: {
|
|
|
6476
6503
|
message: {
|
|
6477
6504
|
type: string;
|
|
6478
6505
|
};
|
|
6479
|
-
is_device_error?: never;
|
|
6480
6506
|
is_connected_account_error?: never;
|
|
6481
6507
|
};
|
|
6482
6508
|
required: string[];
|
|
6483
6509
|
type: string;
|
|
6510
|
+
description?: never;
|
|
6511
|
+
oneOf?: never;
|
|
6484
6512
|
} | {
|
|
6485
|
-
|
|
6486
|
-
|
|
6487
|
-
|
|
6488
|
-
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
|
|
6492
|
-
|
|
6493
|
-
|
|
6494
|
-
|
|
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
|
+
};
|
|
6495
6529
|
};
|
|
6496
|
-
|
|
6497
|
-
|
|
6498
|
-
};
|
|
6499
|
-
|
|
6500
|
-
|
|
6530
|
+
required: string[];
|
|
6531
|
+
type: string;
|
|
6532
|
+
}[];
|
|
6533
|
+
properties?: never;
|
|
6534
|
+
required?: never;
|
|
6535
|
+
type?: never;
|
|
6501
6536
|
} | {
|
|
6502
6537
|
properties: {
|
|
6503
6538
|
error_code: {
|
|
@@ -6511,10 +6546,11 @@ declare const _default: {
|
|
|
6511
6546
|
type: string;
|
|
6512
6547
|
};
|
|
6513
6548
|
is_access_code_error?: never;
|
|
6514
|
-
is_device_error?: never;
|
|
6515
6549
|
};
|
|
6516
6550
|
required: string[];
|
|
6517
6551
|
type: string;
|
|
6552
|
+
description?: never;
|
|
6553
|
+
oneOf?: never;
|
|
6518
6554
|
})[];
|
|
6519
6555
|
};
|
|
6520
6556
|
type: string;
|
|
@@ -6632,21 +6668,29 @@ declare const _default: {
|
|
|
6632
6668
|
description: string;
|
|
6633
6669
|
items: {
|
|
6634
6670
|
oneOf: ({
|
|
6635
|
-
|
|
6636
|
-
|
|
6637
|
-
|
|
6638
|
-
|
|
6639
|
-
|
|
6640
|
-
|
|
6641
|
-
|
|
6642
|
-
|
|
6643
|
-
|
|
6644
|
-
|
|
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
|
+
};
|
|
6645
6687
|
};
|
|
6646
|
-
|
|
6647
|
-
|
|
6648
|
-
|
|
6649
|
-
|
|
6688
|
+
required: string[];
|
|
6689
|
+
type: string;
|
|
6690
|
+
}[];
|
|
6691
|
+
properties?: never;
|
|
6692
|
+
required?: never;
|
|
6693
|
+
type?: never;
|
|
6650
6694
|
} | {
|
|
6651
6695
|
properties: {
|
|
6652
6696
|
error_code: {
|
|
@@ -6659,10 +6703,11 @@ declare const _default: {
|
|
|
6659
6703
|
message: {
|
|
6660
6704
|
type: string;
|
|
6661
6705
|
};
|
|
6662
|
-
is_device_error?: never;
|
|
6663
6706
|
};
|
|
6664
6707
|
required: string[];
|
|
6665
6708
|
type: string;
|
|
6709
|
+
description?: never;
|
|
6710
|
+
oneOf?: never;
|
|
6666
6711
|
})[];
|
|
6667
6712
|
};
|
|
6668
6713
|
type: string;
|