@seamapi/http 2.11.1 → 2.12.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/README.md +13 -2
- package/lib/client.js +10 -3
- package/lib/client.js.map +1 -1
- package/lib/resources/connect-webview.d.ts +1 -1
- package/lib/resources/connected-account.d.ts +1 -1
- package/lib/resources/device.d.ts +1 -1
- package/lib/resources/event.d.ts +122 -122
- package/lib/resources/phone.d.ts +1 -1
- package/lib/resources/unmanaged-device.d.ts +1 -1
- package/lib/routes/connect-webviews/connect-webviews.d.ts +2 -2
- package/lib/routes/connected-accounts/connected-accounts.d.ts +2 -2
- package/lib/routes/customers/customers.d.ts +4 -4
- package/lib/routes/devices/devices.d.ts +2 -2
- package/lib/routes/devices/unmanaged/unmanaged.d.ts +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +2 -2
- package/src/lib/client.ts +13 -3
- package/src/lib/resources/connect-webview.ts +1 -1
- package/src/lib/resources/connected-account.ts +1 -1
- package/src/lib/resources/device.ts +1 -1
- package/src/lib/resources/event.ts +187 -122
- package/src/lib/resources/phone.ts +1 -1
- package/src/lib/resources/unmanaged-device.ts +1 -1
- package/src/lib/routes/connect-webviews/connect-webviews.ts +2 -2
- package/src/lib/routes/connected-accounts/connected-accounts.ts +2 -2
- package/src/lib/routes/customers/customers.ts +4 -4
- package/src/lib/routes/devices/devices.ts +2 -2
- package/src/lib/routes/devices/unmanaged/unmanaged.ts +1 -1
- package/src/lib/version.ts +1 -1
|
@@ -16,7 +16,8 @@ export type SeamEvent =
|
|
|
16
16
|
/**
|
|
17
17
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
18
18
|
*/
|
|
19
|
-
connected_account_custom_metadata?:
|
|
19
|
+
connected_account_custom_metadata?:
|
|
20
|
+
Record<string, string | boolean> | undefined
|
|
20
21
|
/**
|
|
21
22
|
* ID of the connected account associated with the affected access code.
|
|
22
23
|
*/
|
|
@@ -30,7 +31,7 @@ export type SeamEvent =
|
|
|
30
31
|
/**
|
|
31
32
|
* Custom metadata of the device, present when device_id is provided.
|
|
32
33
|
*/
|
|
33
|
-
device_custom_metadata?: Record<string,
|
|
34
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
34
35
|
/**
|
|
35
36
|
* ID of the device associated with the affected access code.
|
|
36
37
|
*/
|
|
@@ -90,7 +91,8 @@ export type SeamEvent =
|
|
|
90
91
|
/**
|
|
91
92
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
92
93
|
*/
|
|
93
|
-
connected_account_custom_metadata?:
|
|
94
|
+
connected_account_custom_metadata?:
|
|
95
|
+
Record<string, string | boolean> | undefined
|
|
94
96
|
/**
|
|
95
97
|
* ID of the connected account associated with the affected access code.
|
|
96
98
|
*/
|
|
@@ -104,7 +106,7 @@ export type SeamEvent =
|
|
|
104
106
|
/**
|
|
105
107
|
* Custom metadata of the device, present when device_id is provided.
|
|
106
108
|
*/
|
|
107
|
-
device_custom_metadata?: Record<string,
|
|
109
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
108
110
|
/**
|
|
109
111
|
* ID of the device associated with the affected access code.
|
|
110
112
|
*/
|
|
@@ -140,7 +142,8 @@ export type SeamEvent =
|
|
|
140
142
|
/**
|
|
141
143
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
142
144
|
*/
|
|
143
|
-
connected_account_custom_metadata?:
|
|
145
|
+
connected_account_custom_metadata?:
|
|
146
|
+
Record<string, string | boolean> | undefined
|
|
144
147
|
/**
|
|
145
148
|
* ID of the connected account associated with the affected access code.
|
|
146
149
|
*/
|
|
@@ -159,7 +162,7 @@ export type SeamEvent =
|
|
|
159
162
|
/**
|
|
160
163
|
* Custom metadata of the device, present when device_id is provided.
|
|
161
164
|
*/
|
|
162
|
-
device_custom_metadata?: Record<string,
|
|
165
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
163
166
|
/**
|
|
164
167
|
* ID of the device associated with the affected access code.
|
|
165
168
|
*/
|
|
@@ -215,7 +218,8 @@ export type SeamEvent =
|
|
|
215
218
|
/**
|
|
216
219
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
217
220
|
*/
|
|
218
|
-
connected_account_custom_metadata?:
|
|
221
|
+
connected_account_custom_metadata?:
|
|
222
|
+
Record<string, string | boolean> | undefined
|
|
219
223
|
/**
|
|
220
224
|
* ID of the connected account associated with the affected access code.
|
|
221
225
|
*/
|
|
@@ -234,7 +238,7 @@ export type SeamEvent =
|
|
|
234
238
|
/**
|
|
235
239
|
* Custom metadata of the device, present when device_id is provided.
|
|
236
240
|
*/
|
|
237
|
-
device_custom_metadata?: Record<string,
|
|
241
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
238
242
|
/**
|
|
239
243
|
* ID of the device associated with the affected access code.
|
|
240
244
|
*/
|
|
@@ -290,7 +294,8 @@ export type SeamEvent =
|
|
|
290
294
|
/**
|
|
291
295
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
292
296
|
*/
|
|
293
|
-
connected_account_custom_metadata?:
|
|
297
|
+
connected_account_custom_metadata?:
|
|
298
|
+
Record<string, string | boolean> | undefined
|
|
294
299
|
/**
|
|
295
300
|
* ID of the connected account associated with the affected access code.
|
|
296
301
|
*/
|
|
@@ -309,7 +314,7 @@ export type SeamEvent =
|
|
|
309
314
|
/**
|
|
310
315
|
* Custom metadata of the device, present when device_id is provided.
|
|
311
316
|
*/
|
|
312
|
-
device_custom_metadata?: Record<string,
|
|
317
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
313
318
|
/**
|
|
314
319
|
* ID of the device associated with the affected access code.
|
|
315
320
|
*/
|
|
@@ -373,7 +378,8 @@ export type SeamEvent =
|
|
|
373
378
|
/**
|
|
374
379
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
375
380
|
*/
|
|
376
|
-
connected_account_custom_metadata?:
|
|
381
|
+
connected_account_custom_metadata?:
|
|
382
|
+
Record<string, string | boolean> | undefined
|
|
377
383
|
/**
|
|
378
384
|
* ID of the connected account associated with the affected access code.
|
|
379
385
|
*/
|
|
@@ -387,7 +393,7 @@ export type SeamEvent =
|
|
|
387
393
|
/**
|
|
388
394
|
* Custom metadata of the device, present when device_id is provided.
|
|
389
395
|
*/
|
|
390
|
-
device_custom_metadata?: Record<string,
|
|
396
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
391
397
|
/**
|
|
392
398
|
* ID of the device associated with the affected access code.
|
|
393
399
|
*/
|
|
@@ -453,7 +459,8 @@ export type SeamEvent =
|
|
|
453
459
|
/**
|
|
454
460
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
455
461
|
*/
|
|
456
|
-
connected_account_custom_metadata?:
|
|
462
|
+
connected_account_custom_metadata?:
|
|
463
|
+
Record<string, string | boolean> | undefined
|
|
457
464
|
/**
|
|
458
465
|
* ID of the connected account associated with the affected access code.
|
|
459
466
|
*/
|
|
@@ -467,7 +474,7 @@ export type SeamEvent =
|
|
|
467
474
|
/**
|
|
468
475
|
* Custom metadata of the device, present when device_id is provided.
|
|
469
476
|
*/
|
|
470
|
-
device_custom_metadata?: Record<string,
|
|
477
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
471
478
|
/**
|
|
472
479
|
* ID of the device associated with the affected access code.
|
|
473
480
|
*/
|
|
@@ -508,7 +515,8 @@ export type SeamEvent =
|
|
|
508
515
|
/**
|
|
509
516
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
510
517
|
*/
|
|
511
|
-
connected_account_custom_metadata?:
|
|
518
|
+
connected_account_custom_metadata?:
|
|
519
|
+
Record<string, string | boolean> | undefined
|
|
512
520
|
/**
|
|
513
521
|
* ID of the connected account associated with the affected access code.
|
|
514
522
|
*/
|
|
@@ -522,7 +530,7 @@ export type SeamEvent =
|
|
|
522
530
|
/**
|
|
523
531
|
* Custom metadata of the device, present when device_id is provided.
|
|
524
532
|
*/
|
|
525
|
-
device_custom_metadata?: Record<string,
|
|
533
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
526
534
|
/**
|
|
527
535
|
* ID of the device associated with the affected access code.
|
|
528
536
|
*/
|
|
@@ -558,7 +566,8 @@ export type SeamEvent =
|
|
|
558
566
|
/**
|
|
559
567
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
560
568
|
*/
|
|
561
|
-
connected_account_custom_metadata?:
|
|
569
|
+
connected_account_custom_metadata?:
|
|
570
|
+
Record<string, string | boolean> | undefined
|
|
562
571
|
/**
|
|
563
572
|
* ID of the connected account associated with the affected access code.
|
|
564
573
|
*/
|
|
@@ -572,7 +581,7 @@ export type SeamEvent =
|
|
|
572
581
|
/**
|
|
573
582
|
* Custom metadata of the device, present when device_id is provided.
|
|
574
583
|
*/
|
|
575
|
-
device_custom_metadata?: Record<string,
|
|
584
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
576
585
|
/**
|
|
577
586
|
* ID of the device associated with the affected access code.
|
|
578
587
|
*/
|
|
@@ -648,7 +657,8 @@ export type SeamEvent =
|
|
|
648
657
|
/**
|
|
649
658
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
650
659
|
*/
|
|
651
|
-
connected_account_custom_metadata?:
|
|
660
|
+
connected_account_custom_metadata?:
|
|
661
|
+
Record<string, string | boolean> | undefined
|
|
652
662
|
/**
|
|
653
663
|
* Errors associated with the connected account.
|
|
654
664
|
*/
|
|
@@ -702,7 +712,7 @@ export type SeamEvent =
|
|
|
702
712
|
/**
|
|
703
713
|
* Custom metadata of the device, present when device_id is provided.
|
|
704
714
|
*/
|
|
705
|
-
device_custom_metadata?: Record<string,
|
|
715
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
706
716
|
/**
|
|
707
717
|
* Errors associated with the device.
|
|
708
718
|
*/
|
|
@@ -818,7 +828,8 @@ export type SeamEvent =
|
|
|
818
828
|
/**
|
|
819
829
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
820
830
|
*/
|
|
821
|
-
connected_account_custom_metadata?:
|
|
831
|
+
connected_account_custom_metadata?:
|
|
832
|
+
Record<string, string | boolean> | undefined
|
|
822
833
|
/**
|
|
823
834
|
* Errors associated with the connected account.
|
|
824
835
|
*/
|
|
@@ -872,7 +883,7 @@ export type SeamEvent =
|
|
|
872
883
|
/**
|
|
873
884
|
* Custom metadata of the device, present when device_id is provided.
|
|
874
885
|
*/
|
|
875
|
-
device_custom_metadata?: Record<string,
|
|
886
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
876
887
|
/**
|
|
877
888
|
* Errors associated with the device.
|
|
878
889
|
*/
|
|
@@ -952,7 +963,8 @@ export type SeamEvent =
|
|
|
952
963
|
/**
|
|
953
964
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
954
965
|
*/
|
|
955
|
-
connected_account_custom_metadata?:
|
|
966
|
+
connected_account_custom_metadata?:
|
|
967
|
+
Record<string, string | boolean> | undefined
|
|
956
968
|
/**
|
|
957
969
|
* ID of the connected account associated with the affected access code.
|
|
958
970
|
*/
|
|
@@ -966,7 +978,7 @@ export type SeamEvent =
|
|
|
966
978
|
/**
|
|
967
979
|
* Custom metadata of the device, present when device_id is provided.
|
|
968
980
|
*/
|
|
969
|
-
device_custom_metadata?: Record<string,
|
|
981
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
970
982
|
/**
|
|
971
983
|
* ID of the device associated with the affected access code.
|
|
972
984
|
*/
|
|
@@ -1042,7 +1054,8 @@ export type SeamEvent =
|
|
|
1042
1054
|
/**
|
|
1043
1055
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1044
1056
|
*/
|
|
1045
|
-
connected_account_custom_metadata?:
|
|
1057
|
+
connected_account_custom_metadata?:
|
|
1058
|
+
Record<string, string | boolean> | undefined
|
|
1046
1059
|
/**
|
|
1047
1060
|
* Errors associated with the connected account.
|
|
1048
1061
|
*/
|
|
@@ -1096,7 +1109,7 @@ export type SeamEvent =
|
|
|
1096
1109
|
/**
|
|
1097
1110
|
* Custom metadata of the device, present when device_id is provided.
|
|
1098
1111
|
*/
|
|
1099
|
-
device_custom_metadata?: Record<string,
|
|
1112
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
1100
1113
|
/**
|
|
1101
1114
|
* Errors associated with the device.
|
|
1102
1115
|
*/
|
|
@@ -1212,7 +1225,8 @@ export type SeamEvent =
|
|
|
1212
1225
|
/**
|
|
1213
1226
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1214
1227
|
*/
|
|
1215
|
-
connected_account_custom_metadata?:
|
|
1228
|
+
connected_account_custom_metadata?:
|
|
1229
|
+
Record<string, string | boolean> | undefined
|
|
1216
1230
|
/**
|
|
1217
1231
|
* Errors associated with the connected account.
|
|
1218
1232
|
*/
|
|
@@ -1266,7 +1280,7 @@ export type SeamEvent =
|
|
|
1266
1280
|
/**
|
|
1267
1281
|
* Custom metadata of the device, present when device_id is provided.
|
|
1268
1282
|
*/
|
|
1269
|
-
device_custom_metadata?: Record<string,
|
|
1283
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
1270
1284
|
/**
|
|
1271
1285
|
* Errors associated with the device.
|
|
1272
1286
|
*/
|
|
@@ -1342,7 +1356,8 @@ export type SeamEvent =
|
|
|
1342
1356
|
/**
|
|
1343
1357
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1344
1358
|
*/
|
|
1345
|
-
connected_account_custom_metadata?:
|
|
1359
|
+
connected_account_custom_metadata?:
|
|
1360
|
+
Record<string, string | boolean> | undefined
|
|
1346
1361
|
/**
|
|
1347
1362
|
* ID of the connected account associated with the affected access code.
|
|
1348
1363
|
*/
|
|
@@ -1356,7 +1371,7 @@ export type SeamEvent =
|
|
|
1356
1371
|
/**
|
|
1357
1372
|
* Custom metadata of the device, present when device_id is provided.
|
|
1358
1373
|
*/
|
|
1359
|
-
device_custom_metadata?: Record<string,
|
|
1374
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
1360
1375
|
/**
|
|
1361
1376
|
* ID of the device associated with the affected access code.
|
|
1362
1377
|
*/
|
|
@@ -1392,7 +1407,8 @@ export type SeamEvent =
|
|
|
1392
1407
|
/**
|
|
1393
1408
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1394
1409
|
*/
|
|
1395
|
-
connected_account_custom_metadata?:
|
|
1410
|
+
connected_account_custom_metadata?:
|
|
1411
|
+
Record<string, string | boolean> | undefined
|
|
1396
1412
|
/**
|
|
1397
1413
|
* ID of the connected account associated with the affected access code.
|
|
1398
1414
|
*/
|
|
@@ -1406,7 +1422,7 @@ export type SeamEvent =
|
|
|
1406
1422
|
/**
|
|
1407
1423
|
* Custom metadata of the device, present when device_id is provided.
|
|
1408
1424
|
*/
|
|
1409
|
-
device_custom_metadata?: Record<string,
|
|
1425
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
1410
1426
|
/**
|
|
1411
1427
|
* ID of the device associated with the affected access code.
|
|
1412
1428
|
*/
|
|
@@ -1447,7 +1463,8 @@ export type SeamEvent =
|
|
|
1447
1463
|
/**
|
|
1448
1464
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1449
1465
|
*/
|
|
1450
|
-
connected_account_custom_metadata?:
|
|
1466
|
+
connected_account_custom_metadata?:
|
|
1467
|
+
Record<string, string | boolean> | undefined
|
|
1451
1468
|
/**
|
|
1452
1469
|
* ID of the connected account associated with the affected access code.
|
|
1453
1470
|
*/
|
|
@@ -1461,7 +1478,7 @@ export type SeamEvent =
|
|
|
1461
1478
|
/**
|
|
1462
1479
|
* Custom metadata of the device, present when device_id is provided.
|
|
1463
1480
|
*/
|
|
1464
|
-
device_custom_metadata?: Record<string,
|
|
1481
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
1465
1482
|
/**
|
|
1466
1483
|
* ID of the device associated with the affected access code.
|
|
1467
1484
|
*/
|
|
@@ -1497,7 +1514,8 @@ export type SeamEvent =
|
|
|
1497
1514
|
/**
|
|
1498
1515
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1499
1516
|
*/
|
|
1500
|
-
connected_account_custom_metadata?:
|
|
1517
|
+
connected_account_custom_metadata?:
|
|
1518
|
+
Record<string, string | boolean> | undefined
|
|
1501
1519
|
/**
|
|
1502
1520
|
* ID of the connected account associated with the affected access code.
|
|
1503
1521
|
*/
|
|
@@ -1511,7 +1529,7 @@ export type SeamEvent =
|
|
|
1511
1529
|
/**
|
|
1512
1530
|
* Custom metadata of the device, present when device_id is provided.
|
|
1513
1531
|
*/
|
|
1514
|
-
device_custom_metadata?: Record<string,
|
|
1532
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
1515
1533
|
/**
|
|
1516
1534
|
* ID of the device associated with the affected access code.
|
|
1517
1535
|
*/
|
|
@@ -1587,7 +1605,8 @@ export type SeamEvent =
|
|
|
1587
1605
|
/**
|
|
1588
1606
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1589
1607
|
*/
|
|
1590
|
-
connected_account_custom_metadata?:
|
|
1608
|
+
connected_account_custom_metadata?:
|
|
1609
|
+
Record<string, string | boolean> | undefined
|
|
1591
1610
|
/**
|
|
1592
1611
|
* Errors associated with the connected account.
|
|
1593
1612
|
*/
|
|
@@ -1641,7 +1660,7 @@ export type SeamEvent =
|
|
|
1641
1660
|
/**
|
|
1642
1661
|
* Custom metadata of the device, present when device_id is provided.
|
|
1643
1662
|
*/
|
|
1644
|
-
device_custom_metadata?: Record<string,
|
|
1663
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
1645
1664
|
/**
|
|
1646
1665
|
* Errors associated with the device.
|
|
1647
1666
|
*/
|
|
@@ -1717,7 +1736,8 @@ export type SeamEvent =
|
|
|
1717
1736
|
/**
|
|
1718
1737
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1719
1738
|
*/
|
|
1720
|
-
connected_account_custom_metadata?:
|
|
1739
|
+
connected_account_custom_metadata?:
|
|
1740
|
+
Record<string, string | boolean> | undefined
|
|
1721
1741
|
/**
|
|
1722
1742
|
* ID of the connected account associated with the affected access code.
|
|
1723
1743
|
*/
|
|
@@ -1731,7 +1751,7 @@ export type SeamEvent =
|
|
|
1731
1751
|
/**
|
|
1732
1752
|
* Custom metadata of the device, present when device_id is provided.
|
|
1733
1753
|
*/
|
|
1734
|
-
device_custom_metadata?: Record<string,
|
|
1754
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
1735
1755
|
/**
|
|
1736
1756
|
* ID of the device associated with the affected access code.
|
|
1737
1757
|
*/
|
|
@@ -1767,7 +1787,8 @@ export type SeamEvent =
|
|
|
1767
1787
|
/**
|
|
1768
1788
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1769
1789
|
*/
|
|
1770
|
-
connected_account_custom_metadata?:
|
|
1790
|
+
connected_account_custom_metadata?:
|
|
1791
|
+
Record<string, string | boolean> | undefined
|
|
1771
1792
|
/**
|
|
1772
1793
|
* ID of the connected account associated with the affected access code.
|
|
1773
1794
|
*/
|
|
@@ -1781,7 +1802,7 @@ export type SeamEvent =
|
|
|
1781
1802
|
/**
|
|
1782
1803
|
* Custom metadata of the device, present when device_id is provided.
|
|
1783
1804
|
*/
|
|
1784
|
-
device_custom_metadata?: Record<string,
|
|
1805
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
1785
1806
|
/**
|
|
1786
1807
|
* ID of the device associated with the affected access code.
|
|
1787
1808
|
*/
|
|
@@ -3086,7 +3107,8 @@ export type SeamEvent =
|
|
|
3086
3107
|
/**
|
|
3087
3108
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3088
3109
|
*/
|
|
3089
|
-
connected_account_custom_metadata?:
|
|
3110
|
+
connected_account_custom_metadata?:
|
|
3111
|
+
Record<string, string | boolean> | undefined
|
|
3090
3112
|
/**
|
|
3091
3113
|
* ID of the affected connected account.
|
|
3092
3114
|
*/
|
|
@@ -3131,7 +3153,8 @@ export type SeamEvent =
|
|
|
3131
3153
|
/**
|
|
3132
3154
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3133
3155
|
*/
|
|
3134
|
-
connected_account_custom_metadata?:
|
|
3156
|
+
connected_account_custom_metadata?:
|
|
3157
|
+
Record<string, string | boolean> | undefined
|
|
3135
3158
|
/**
|
|
3136
3159
|
* ID of the affected connected account.
|
|
3137
3160
|
*/
|
|
@@ -3172,7 +3195,8 @@ export type SeamEvent =
|
|
|
3172
3195
|
/**
|
|
3173
3196
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3174
3197
|
*/
|
|
3175
|
-
connected_account_custom_metadata?:
|
|
3198
|
+
connected_account_custom_metadata?:
|
|
3199
|
+
Record<string, string | boolean> | undefined
|
|
3176
3200
|
/**
|
|
3177
3201
|
* ID of the affected connected account.
|
|
3178
3202
|
*/
|
|
@@ -3208,7 +3232,8 @@ export type SeamEvent =
|
|
|
3208
3232
|
/**
|
|
3209
3233
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3210
3234
|
*/
|
|
3211
|
-
connected_account_custom_metadata?:
|
|
3235
|
+
connected_account_custom_metadata?:
|
|
3236
|
+
Record<string, string | boolean> | undefined
|
|
3212
3237
|
/**
|
|
3213
3238
|
* Errors associated with the connected account.
|
|
3214
3239
|
*/
|
|
@@ -3284,7 +3309,8 @@ export type SeamEvent =
|
|
|
3284
3309
|
/**
|
|
3285
3310
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3286
3311
|
*/
|
|
3287
|
-
connected_account_custom_metadata?:
|
|
3312
|
+
connected_account_custom_metadata?:
|
|
3313
|
+
Record<string, string | boolean> | undefined
|
|
3288
3314
|
/**
|
|
3289
3315
|
* ID of the affected connected account.
|
|
3290
3316
|
*/
|
|
@@ -3320,7 +3346,8 @@ export type SeamEvent =
|
|
|
3320
3346
|
/**
|
|
3321
3347
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3322
3348
|
*/
|
|
3323
|
-
connected_account_custom_metadata?:
|
|
3349
|
+
connected_account_custom_metadata?:
|
|
3350
|
+
Record<string, string | boolean> | undefined
|
|
3324
3351
|
/**
|
|
3325
3352
|
* ID of the affected connected account.
|
|
3326
3353
|
*/
|
|
@@ -3360,7 +3387,8 @@ export type SeamEvent =
|
|
|
3360
3387
|
/**
|
|
3361
3388
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3362
3389
|
*/
|
|
3363
|
-
connected_account_custom_metadata?:
|
|
3390
|
+
connected_account_custom_metadata?:
|
|
3391
|
+
Record<string, string | boolean> | undefined
|
|
3364
3392
|
/**
|
|
3365
3393
|
* ID of the affected connected account.
|
|
3366
3394
|
*/
|
|
@@ -3396,7 +3424,8 @@ export type SeamEvent =
|
|
|
3396
3424
|
/**
|
|
3397
3425
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3398
3426
|
*/
|
|
3399
|
-
connected_account_custom_metadata?:
|
|
3427
|
+
connected_account_custom_metadata?:
|
|
3428
|
+
Record<string, string | boolean> | undefined
|
|
3400
3429
|
/**
|
|
3401
3430
|
* Errors associated with the connected account.
|
|
3402
3431
|
*/
|
|
@@ -3877,7 +3906,8 @@ export type SeamEvent =
|
|
|
3877
3906
|
/**
|
|
3878
3907
|
* Custom metadata of the connected account; present when connected_account_id is provided.
|
|
3879
3908
|
*/
|
|
3880
|
-
connected_account_custom_metadata?:
|
|
3909
|
+
connected_account_custom_metadata?:
|
|
3910
|
+
Record<string, string | boolean> | undefined
|
|
3881
3911
|
/**
|
|
3882
3912
|
* ID of the connected account associated with the event.
|
|
3883
3913
|
*/
|
|
@@ -3949,7 +3979,8 @@ export type SeamEvent =
|
|
|
3949
3979
|
/**
|
|
3950
3980
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3951
3981
|
*/
|
|
3952
|
-
connected_account_custom_metadata?:
|
|
3982
|
+
connected_account_custom_metadata?:
|
|
3983
|
+
Record<string, string | boolean> | undefined
|
|
3953
3984
|
/**
|
|
3954
3985
|
* ID of the connected account associated with the event.
|
|
3955
3986
|
*/
|
|
@@ -3967,7 +3998,7 @@ export type SeamEvent =
|
|
|
3967
3998
|
/**
|
|
3968
3999
|
* Custom metadata of the device, present when device_id is provided.
|
|
3969
4000
|
*/
|
|
3970
|
-
device_custom_metadata?: Record<string,
|
|
4001
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
3971
4002
|
/**
|
|
3972
4003
|
* ID of the affected device.
|
|
3973
4004
|
*/
|
|
@@ -3998,7 +4029,8 @@ export type SeamEvent =
|
|
|
3998
4029
|
/**
|
|
3999
4030
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4000
4031
|
*/
|
|
4001
|
-
connected_account_custom_metadata?:
|
|
4032
|
+
connected_account_custom_metadata?:
|
|
4033
|
+
Record<string, string | boolean> | undefined
|
|
4002
4034
|
/**
|
|
4003
4035
|
* ID of the connected account associated with the event.
|
|
4004
4036
|
*/
|
|
@@ -4016,7 +4048,7 @@ export type SeamEvent =
|
|
|
4016
4048
|
/**
|
|
4017
4049
|
* Custom metadata of the device, present when device_id is provided.
|
|
4018
4050
|
*/
|
|
4019
|
-
device_custom_metadata?: Record<string,
|
|
4051
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4020
4052
|
/**
|
|
4021
4053
|
* ID of the affected device.
|
|
4022
4054
|
*/
|
|
@@ -4047,7 +4079,8 @@ export type SeamEvent =
|
|
|
4047
4079
|
/**
|
|
4048
4080
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4049
4081
|
*/
|
|
4050
|
-
connected_account_custom_metadata?:
|
|
4082
|
+
connected_account_custom_metadata?:
|
|
4083
|
+
Record<string, string | boolean> | undefined
|
|
4051
4084
|
/**
|
|
4052
4085
|
* ID of the connected account associated with the event.
|
|
4053
4086
|
*/
|
|
@@ -4065,7 +4098,7 @@ export type SeamEvent =
|
|
|
4065
4098
|
/**
|
|
4066
4099
|
* Custom metadata of the device, present when device_id is provided.
|
|
4067
4100
|
*/
|
|
4068
|
-
device_custom_metadata?: Record<string,
|
|
4101
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4069
4102
|
/**
|
|
4070
4103
|
* ID of the affected device.
|
|
4071
4104
|
*/
|
|
@@ -4096,7 +4129,8 @@ export type SeamEvent =
|
|
|
4096
4129
|
/**
|
|
4097
4130
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4098
4131
|
*/
|
|
4099
|
-
connected_account_custom_metadata?:
|
|
4132
|
+
connected_account_custom_metadata?:
|
|
4133
|
+
Record<string, string | boolean> | undefined
|
|
4100
4134
|
/**
|
|
4101
4135
|
* ID of the connected account associated with the event.
|
|
4102
4136
|
*/
|
|
@@ -4114,7 +4148,7 @@ export type SeamEvent =
|
|
|
4114
4148
|
/**
|
|
4115
4149
|
* Custom metadata of the device, present when device_id is provided.
|
|
4116
4150
|
*/
|
|
4117
|
-
device_custom_metadata?: Record<string,
|
|
4151
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4118
4152
|
/**
|
|
4119
4153
|
* ID of the affected device.
|
|
4120
4154
|
*/
|
|
@@ -4145,7 +4179,8 @@ export type SeamEvent =
|
|
|
4145
4179
|
/**
|
|
4146
4180
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4147
4181
|
*/
|
|
4148
|
-
connected_account_custom_metadata?:
|
|
4182
|
+
connected_account_custom_metadata?:
|
|
4183
|
+
Record<string, string | boolean> | undefined
|
|
4149
4184
|
/**
|
|
4150
4185
|
* ID of the connected account associated with the event.
|
|
4151
4186
|
*/
|
|
@@ -4163,7 +4198,7 @@ export type SeamEvent =
|
|
|
4163
4198
|
/**
|
|
4164
4199
|
* Custom metadata of the device, present when device_id is provided.
|
|
4165
4200
|
*/
|
|
4166
|
-
device_custom_metadata?: Record<string,
|
|
4201
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4167
4202
|
/**
|
|
4168
4203
|
* ID of the affected device.
|
|
4169
4204
|
*/
|
|
@@ -4194,7 +4229,8 @@ export type SeamEvent =
|
|
|
4194
4229
|
/**
|
|
4195
4230
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4196
4231
|
*/
|
|
4197
|
-
connected_account_custom_metadata?:
|
|
4232
|
+
connected_account_custom_metadata?:
|
|
4233
|
+
Record<string, string | boolean> | undefined
|
|
4198
4234
|
/**
|
|
4199
4235
|
* Errors associated with the connected account.
|
|
4200
4236
|
*/
|
|
@@ -4252,7 +4288,7 @@ export type SeamEvent =
|
|
|
4252
4288
|
/**
|
|
4253
4289
|
* Custom metadata of the device, present when device_id is provided.
|
|
4254
4290
|
*/
|
|
4255
|
-
device_custom_metadata?: Record<string,
|
|
4291
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4256
4292
|
/**
|
|
4257
4293
|
* Errors associated with the device.
|
|
4258
4294
|
*/
|
|
@@ -4329,7 +4365,8 @@ export type SeamEvent =
|
|
|
4329
4365
|
/**
|
|
4330
4366
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4331
4367
|
*/
|
|
4332
|
-
connected_account_custom_metadata?:
|
|
4368
|
+
connected_account_custom_metadata?:
|
|
4369
|
+
Record<string, string | boolean> | undefined
|
|
4333
4370
|
/**
|
|
4334
4371
|
* Errors associated with the connected account.
|
|
4335
4372
|
*/
|
|
@@ -4387,7 +4424,7 @@ export type SeamEvent =
|
|
|
4387
4424
|
/**
|
|
4388
4425
|
* Custom metadata of the device, present when device_id is provided.
|
|
4389
4426
|
*/
|
|
4390
|
-
device_custom_metadata?: Record<string,
|
|
4427
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4391
4428
|
/**
|
|
4392
4429
|
* Errors associated with the device.
|
|
4393
4430
|
*/
|
|
@@ -4464,7 +4501,8 @@ export type SeamEvent =
|
|
|
4464
4501
|
/**
|
|
4465
4502
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4466
4503
|
*/
|
|
4467
|
-
connected_account_custom_metadata?:
|
|
4504
|
+
connected_account_custom_metadata?:
|
|
4505
|
+
Record<string, string | boolean> | undefined
|
|
4468
4506
|
/**
|
|
4469
4507
|
* ID of the connected account associated with the event.
|
|
4470
4508
|
*/
|
|
@@ -4482,7 +4520,7 @@ export type SeamEvent =
|
|
|
4482
4520
|
/**
|
|
4483
4521
|
* Custom metadata of the device, present when device_id is provided.
|
|
4484
4522
|
*/
|
|
4485
|
-
device_custom_metadata?: Record<string,
|
|
4523
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4486
4524
|
/**
|
|
4487
4525
|
* ID of the affected device.
|
|
4488
4526
|
*/
|
|
@@ -4518,7 +4556,8 @@ export type SeamEvent =
|
|
|
4518
4556
|
/**
|
|
4519
4557
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4520
4558
|
*/
|
|
4521
|
-
connected_account_custom_metadata?:
|
|
4559
|
+
connected_account_custom_metadata?:
|
|
4560
|
+
Record<string, string | boolean> | undefined
|
|
4522
4561
|
/**
|
|
4523
4562
|
* ID of the connected account associated with the event.
|
|
4524
4563
|
*/
|
|
@@ -4536,7 +4575,7 @@ export type SeamEvent =
|
|
|
4536
4575
|
/**
|
|
4537
4576
|
* Custom metadata of the device, present when device_id is provided.
|
|
4538
4577
|
*/
|
|
4539
|
-
device_custom_metadata?: Record<string,
|
|
4578
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4540
4579
|
/**
|
|
4541
4580
|
* ID of the affected device.
|
|
4542
4581
|
*/
|
|
@@ -4577,7 +4616,8 @@ export type SeamEvent =
|
|
|
4577
4616
|
/**
|
|
4578
4617
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4579
4618
|
*/
|
|
4580
|
-
connected_account_custom_metadata?:
|
|
4619
|
+
connected_account_custom_metadata?:
|
|
4620
|
+
Record<string, string | boolean> | undefined
|
|
4581
4621
|
/**
|
|
4582
4622
|
* ID of the connected account associated with the event.
|
|
4583
4623
|
*/
|
|
@@ -4595,7 +4635,7 @@ export type SeamEvent =
|
|
|
4595
4635
|
/**
|
|
4596
4636
|
* Custom metadata of the device, present when device_id is provided.
|
|
4597
4637
|
*/
|
|
4598
|
-
device_custom_metadata?: Record<string,
|
|
4638
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4599
4639
|
/**
|
|
4600
4640
|
* ID of the affected device.
|
|
4601
4641
|
*/
|
|
@@ -4626,7 +4666,8 @@ export type SeamEvent =
|
|
|
4626
4666
|
/**
|
|
4627
4667
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4628
4668
|
*/
|
|
4629
|
-
connected_account_custom_metadata?:
|
|
4669
|
+
connected_account_custom_metadata?:
|
|
4670
|
+
Record<string, string | boolean> | undefined
|
|
4630
4671
|
/**
|
|
4631
4672
|
* ID of the connected account associated with the event.
|
|
4632
4673
|
*/
|
|
@@ -4644,7 +4685,7 @@ export type SeamEvent =
|
|
|
4644
4685
|
/**
|
|
4645
4686
|
* Custom metadata of the device, present when device_id is provided.
|
|
4646
4687
|
*/
|
|
4647
|
-
device_custom_metadata?: Record<string,
|
|
4688
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4648
4689
|
/**
|
|
4649
4690
|
* ID of the affected device.
|
|
4650
4691
|
*/
|
|
@@ -4675,7 +4716,8 @@ export type SeamEvent =
|
|
|
4675
4716
|
/**
|
|
4676
4717
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4677
4718
|
*/
|
|
4678
|
-
connected_account_custom_metadata?:
|
|
4719
|
+
connected_account_custom_metadata?:
|
|
4720
|
+
Record<string, string | boolean> | undefined
|
|
4679
4721
|
/**
|
|
4680
4722
|
* ID of the connected account associated with the event.
|
|
4681
4723
|
*/
|
|
@@ -4693,7 +4735,7 @@ export type SeamEvent =
|
|
|
4693
4735
|
/**
|
|
4694
4736
|
* Custom metadata of the device, present when device_id is provided.
|
|
4695
4737
|
*/
|
|
4696
|
-
device_custom_metadata?: Record<string,
|
|
4738
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4697
4739
|
/**
|
|
4698
4740
|
* ID of the affected device.
|
|
4699
4741
|
*/
|
|
@@ -4728,7 +4770,8 @@ export type SeamEvent =
|
|
|
4728
4770
|
/**
|
|
4729
4771
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4730
4772
|
*/
|
|
4731
|
-
connected_account_custom_metadata?:
|
|
4773
|
+
connected_account_custom_metadata?:
|
|
4774
|
+
Record<string, string | boolean> | undefined
|
|
4732
4775
|
/**
|
|
4733
4776
|
* ID of the connected account associated with the event.
|
|
4734
4777
|
*/
|
|
@@ -4746,7 +4789,7 @@ export type SeamEvent =
|
|
|
4746
4789
|
/**
|
|
4747
4790
|
* Custom metadata of the device, present when device_id is provided.
|
|
4748
4791
|
*/
|
|
4749
|
-
device_custom_metadata?: Record<string,
|
|
4792
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4750
4793
|
/**
|
|
4751
4794
|
* ID of the affected device.
|
|
4752
4795
|
*/
|
|
@@ -4777,7 +4820,8 @@ export type SeamEvent =
|
|
|
4777
4820
|
/**
|
|
4778
4821
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4779
4822
|
*/
|
|
4780
|
-
connected_account_custom_metadata?:
|
|
4823
|
+
connected_account_custom_metadata?:
|
|
4824
|
+
Record<string, string | boolean> | undefined
|
|
4781
4825
|
/**
|
|
4782
4826
|
* ID of the connected account associated with the event.
|
|
4783
4827
|
*/
|
|
@@ -4795,7 +4839,7 @@ export type SeamEvent =
|
|
|
4795
4839
|
/**
|
|
4796
4840
|
* Custom metadata of the device, present when device_id is provided.
|
|
4797
4841
|
*/
|
|
4798
|
-
device_custom_metadata?: Record<string,
|
|
4842
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4799
4843
|
/**
|
|
4800
4844
|
* ID of the affected device.
|
|
4801
4845
|
*/
|
|
@@ -4826,7 +4870,8 @@ export type SeamEvent =
|
|
|
4826
4870
|
/**
|
|
4827
4871
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4828
4872
|
*/
|
|
4829
|
-
connected_account_custom_metadata?:
|
|
4873
|
+
connected_account_custom_metadata?:
|
|
4874
|
+
Record<string, string | boolean> | undefined
|
|
4830
4875
|
/**
|
|
4831
4876
|
* ID of the connected account associated with the event.
|
|
4832
4877
|
*/
|
|
@@ -4844,7 +4889,7 @@ export type SeamEvent =
|
|
|
4844
4889
|
/**
|
|
4845
4890
|
* Custom metadata of the device, present when device_id is provided.
|
|
4846
4891
|
*/
|
|
4847
|
-
device_custom_metadata?: Record<string,
|
|
4892
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4848
4893
|
/**
|
|
4849
4894
|
* ID of the affected device.
|
|
4850
4895
|
*/
|
|
@@ -4875,7 +4920,8 @@ export type SeamEvent =
|
|
|
4875
4920
|
/**
|
|
4876
4921
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4877
4922
|
*/
|
|
4878
|
-
connected_account_custom_metadata?:
|
|
4923
|
+
connected_account_custom_metadata?:
|
|
4924
|
+
Record<string, string | boolean> | undefined
|
|
4879
4925
|
/**
|
|
4880
4926
|
* ID of the connected account associated with the event.
|
|
4881
4927
|
*/
|
|
@@ -4893,7 +4939,7 @@ export type SeamEvent =
|
|
|
4893
4939
|
/**
|
|
4894
4940
|
* Custom metadata of the device, present when device_id is provided.
|
|
4895
4941
|
*/
|
|
4896
|
-
device_custom_metadata?: Record<string,
|
|
4942
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4897
4943
|
/**
|
|
4898
4944
|
* ID of the affected device.
|
|
4899
4945
|
*/
|
|
@@ -4924,7 +4970,8 @@ export type SeamEvent =
|
|
|
4924
4970
|
/**
|
|
4925
4971
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4926
4972
|
*/
|
|
4927
|
-
connected_account_custom_metadata?:
|
|
4973
|
+
connected_account_custom_metadata?:
|
|
4974
|
+
Record<string, string | boolean> | undefined
|
|
4928
4975
|
/**
|
|
4929
4976
|
* Errors associated with the connected account.
|
|
4930
4977
|
*/
|
|
@@ -4982,7 +5029,7 @@ export type SeamEvent =
|
|
|
4982
5029
|
/**
|
|
4983
5030
|
* Custom metadata of the device, present when device_id is provided.
|
|
4984
5031
|
*/
|
|
4985
|
-
device_custom_metadata?: Record<string,
|
|
5032
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
4986
5033
|
/**
|
|
4987
5034
|
* Errors associated with the device.
|
|
4988
5035
|
*/
|
|
@@ -5053,7 +5100,8 @@ export type SeamEvent =
|
|
|
5053
5100
|
/**
|
|
5054
5101
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5055
5102
|
*/
|
|
5056
|
-
connected_account_custom_metadata?:
|
|
5103
|
+
connected_account_custom_metadata?:
|
|
5104
|
+
Record<string, string | boolean> | undefined
|
|
5057
5105
|
/**
|
|
5058
5106
|
* ID of the connected account associated with the event.
|
|
5059
5107
|
*/
|
|
@@ -5071,7 +5119,7 @@ export type SeamEvent =
|
|
|
5071
5119
|
/**
|
|
5072
5120
|
* Custom metadata of the device, present when device_id is provided.
|
|
5073
5121
|
*/
|
|
5074
|
-
device_custom_metadata?: Record<string,
|
|
5122
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
5075
5123
|
/**
|
|
5076
5124
|
* ID of the affected device.
|
|
5077
5125
|
*/
|
|
@@ -5102,7 +5150,8 @@ export type SeamEvent =
|
|
|
5102
5150
|
/**
|
|
5103
5151
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5104
5152
|
*/
|
|
5105
|
-
connected_account_custom_metadata?:
|
|
5153
|
+
connected_account_custom_metadata?:
|
|
5154
|
+
Record<string, string | boolean> | undefined
|
|
5106
5155
|
/**
|
|
5107
5156
|
* Errors associated with the connected account.
|
|
5108
5157
|
*/
|
|
@@ -5160,7 +5209,7 @@ export type SeamEvent =
|
|
|
5160
5209
|
/**
|
|
5161
5210
|
* Custom metadata of the device, present when device_id is provided.
|
|
5162
5211
|
*/
|
|
5163
|
-
device_custom_metadata?: Record<string,
|
|
5212
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
5164
5213
|
/**
|
|
5165
5214
|
* Errors associated with the device.
|
|
5166
5215
|
*/
|
|
@@ -5231,7 +5280,8 @@ export type SeamEvent =
|
|
|
5231
5280
|
/**
|
|
5232
5281
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5233
5282
|
*/
|
|
5234
|
-
connected_account_custom_metadata?:
|
|
5283
|
+
connected_account_custom_metadata?:
|
|
5284
|
+
Record<string, string | boolean> | undefined
|
|
5235
5285
|
/**
|
|
5236
5286
|
* ID of the connected account associated with the event.
|
|
5237
5287
|
*/
|
|
@@ -5249,7 +5299,7 @@ export type SeamEvent =
|
|
|
5249
5299
|
/**
|
|
5250
5300
|
* Custom metadata of the device, present when device_id is provided.
|
|
5251
5301
|
*/
|
|
5252
|
-
device_custom_metadata?: Record<string,
|
|
5302
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
5253
5303
|
/**
|
|
5254
5304
|
* ID of the affected device.
|
|
5255
5305
|
*/
|
|
@@ -5280,7 +5330,8 @@ export type SeamEvent =
|
|
|
5280
5330
|
/**
|
|
5281
5331
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5282
5332
|
*/
|
|
5283
|
-
connected_account_custom_metadata?:
|
|
5333
|
+
connected_account_custom_metadata?:
|
|
5334
|
+
Record<string, string | boolean> | undefined
|
|
5284
5335
|
/**
|
|
5285
5336
|
* ID of the connected account associated with the event.
|
|
5286
5337
|
*/
|
|
@@ -5298,7 +5349,7 @@ export type SeamEvent =
|
|
|
5298
5349
|
/**
|
|
5299
5350
|
* Custom metadata of the device, present when device_id is provided.
|
|
5300
5351
|
*/
|
|
5301
|
-
device_custom_metadata?: Record<string,
|
|
5352
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
5302
5353
|
/**
|
|
5303
5354
|
* ID of the affected device.
|
|
5304
5355
|
*/
|
|
@@ -5329,7 +5380,8 @@ export type SeamEvent =
|
|
|
5329
5380
|
/**
|
|
5330
5381
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5331
5382
|
*/
|
|
5332
|
-
connected_account_custom_metadata?:
|
|
5383
|
+
connected_account_custom_metadata?:
|
|
5384
|
+
Record<string, string | boolean> | undefined
|
|
5333
5385
|
/**
|
|
5334
5386
|
* Errors associated with the connected account.
|
|
5335
5387
|
*/
|
|
@@ -5387,7 +5439,7 @@ export type SeamEvent =
|
|
|
5387
5439
|
/**
|
|
5388
5440
|
* Custom metadata of the device, present when device_id is provided.
|
|
5389
5441
|
*/
|
|
5390
|
-
device_custom_metadata?: Record<string,
|
|
5442
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
5391
5443
|
/**
|
|
5392
5444
|
* Errors associated with the device.
|
|
5393
5445
|
*/
|
|
@@ -5458,7 +5510,8 @@ export type SeamEvent =
|
|
|
5458
5510
|
/**
|
|
5459
5511
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5460
5512
|
*/
|
|
5461
|
-
connected_account_custom_metadata?:
|
|
5513
|
+
connected_account_custom_metadata?:
|
|
5514
|
+
Record<string, string | boolean> | undefined
|
|
5462
5515
|
/**
|
|
5463
5516
|
* ID of the connected account associated with the event.
|
|
5464
5517
|
*/
|
|
@@ -5476,7 +5529,7 @@ export type SeamEvent =
|
|
|
5476
5529
|
/**
|
|
5477
5530
|
* Custom metadata of the device, present when device_id is provided.
|
|
5478
5531
|
*/
|
|
5479
|
-
device_custom_metadata?: Record<string,
|
|
5532
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
5480
5533
|
/**
|
|
5481
5534
|
* ID of the affected device.
|
|
5482
5535
|
*/
|
|
@@ -5547,7 +5600,8 @@ export type SeamEvent =
|
|
|
5547
5600
|
/**
|
|
5548
5601
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5549
5602
|
*/
|
|
5550
|
-
connected_account_custom_metadata?:
|
|
5603
|
+
connected_account_custom_metadata?:
|
|
5604
|
+
Record<string, string | boolean> | undefined
|
|
5551
5605
|
/**
|
|
5552
5606
|
* ID of the connected account associated with the event.
|
|
5553
5607
|
*/
|
|
@@ -5565,7 +5619,7 @@ export type SeamEvent =
|
|
|
5565
5619
|
/**
|
|
5566
5620
|
* Custom metadata of the device, present when device_id is provided.
|
|
5567
5621
|
*/
|
|
5568
|
-
device_custom_metadata?: Record<string,
|
|
5622
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
5569
5623
|
/**
|
|
5570
5624
|
* ID of the affected device.
|
|
5571
5625
|
*/
|
|
@@ -5625,7 +5679,8 @@ export type SeamEvent =
|
|
|
5625
5679
|
/**
|
|
5626
5680
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5627
5681
|
*/
|
|
5628
|
-
connected_account_custom_metadata?:
|
|
5682
|
+
connected_account_custom_metadata?:
|
|
5683
|
+
Record<string, string | boolean> | undefined
|
|
5629
5684
|
/**
|
|
5630
5685
|
* ID of the connected account associated with the event.
|
|
5631
5686
|
*/
|
|
@@ -5643,7 +5698,7 @@ export type SeamEvent =
|
|
|
5643
5698
|
/**
|
|
5644
5699
|
* Custom metadata of the device, present when device_id is provided.
|
|
5645
5700
|
*/
|
|
5646
|
-
device_custom_metadata?: Record<string,
|
|
5701
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
5647
5702
|
/**
|
|
5648
5703
|
* ID of the affected device.
|
|
5649
5704
|
*/
|
|
@@ -5690,7 +5745,8 @@ export type SeamEvent =
|
|
|
5690
5745
|
/**
|
|
5691
5746
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5692
5747
|
*/
|
|
5693
|
-
connected_account_custom_metadata?:
|
|
5748
|
+
connected_account_custom_metadata?:
|
|
5749
|
+
Record<string, string | boolean> | undefined
|
|
5694
5750
|
/**
|
|
5695
5751
|
* ID of the connected account associated with the event.
|
|
5696
5752
|
*/
|
|
@@ -5708,7 +5764,7 @@ export type SeamEvent =
|
|
|
5708
5764
|
/**
|
|
5709
5765
|
* Custom metadata of the device, present when device_id is provided.
|
|
5710
5766
|
*/
|
|
5711
|
-
device_custom_metadata?: Record<string,
|
|
5767
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
5712
5768
|
/**
|
|
5713
5769
|
* ID of the affected device.
|
|
5714
5770
|
*/
|
|
@@ -5765,7 +5821,8 @@ export type SeamEvent =
|
|
|
5765
5821
|
/**
|
|
5766
5822
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5767
5823
|
*/
|
|
5768
|
-
connected_account_custom_metadata?:
|
|
5824
|
+
connected_account_custom_metadata?:
|
|
5825
|
+
Record<string, string | boolean> | undefined
|
|
5769
5826
|
/**
|
|
5770
5827
|
* ID of the connected account associated with the event.
|
|
5771
5828
|
*/
|
|
@@ -5783,7 +5840,7 @@ export type SeamEvent =
|
|
|
5783
5840
|
/**
|
|
5784
5841
|
* Custom metadata of the device, present when device_id is provided.
|
|
5785
5842
|
*/
|
|
5786
|
-
device_custom_metadata?: Record<string,
|
|
5843
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
5787
5844
|
/**
|
|
5788
5845
|
* ID of the affected device.
|
|
5789
5846
|
*/
|
|
@@ -5823,7 +5880,8 @@ export type SeamEvent =
|
|
|
5823
5880
|
/**
|
|
5824
5881
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5825
5882
|
*/
|
|
5826
|
-
connected_account_custom_metadata?:
|
|
5883
|
+
connected_account_custom_metadata?:
|
|
5884
|
+
Record<string, string | boolean> | undefined
|
|
5827
5885
|
/**
|
|
5828
5886
|
* ID of the connected account associated with the event.
|
|
5829
5887
|
*/
|
|
@@ -5849,7 +5907,7 @@ export type SeamEvent =
|
|
|
5849
5907
|
/**
|
|
5850
5908
|
* Custom metadata of the device, present when device_id is provided.
|
|
5851
5909
|
*/
|
|
5852
|
-
device_custom_metadata?: Record<string,
|
|
5910
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
5853
5911
|
/**
|
|
5854
5912
|
* ID of the affected device.
|
|
5855
5913
|
*/
|
|
@@ -5902,7 +5960,8 @@ export type SeamEvent =
|
|
|
5902
5960
|
/**
|
|
5903
5961
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5904
5962
|
*/
|
|
5905
|
-
connected_account_custom_metadata?:
|
|
5963
|
+
connected_account_custom_metadata?:
|
|
5964
|
+
Record<string, string | boolean> | undefined
|
|
5906
5965
|
/**
|
|
5907
5966
|
* ID of the connected account associated with the event.
|
|
5908
5967
|
*/
|
|
@@ -5920,7 +5979,7 @@ export type SeamEvent =
|
|
|
5920
5979
|
/**
|
|
5921
5980
|
* Custom metadata of the device, present when device_id is provided.
|
|
5922
5981
|
*/
|
|
5923
|
-
device_custom_metadata?: Record<string,
|
|
5982
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
5924
5983
|
/**
|
|
5925
5984
|
* ID of the affected device.
|
|
5926
5985
|
*/
|
|
@@ -5977,7 +6036,8 @@ export type SeamEvent =
|
|
|
5977
6036
|
/**
|
|
5978
6037
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5979
6038
|
*/
|
|
5980
|
-
connected_account_custom_metadata?:
|
|
6039
|
+
connected_account_custom_metadata?:
|
|
6040
|
+
Record<string, string | boolean> | undefined
|
|
5981
6041
|
/**
|
|
5982
6042
|
* ID of the connected account associated with the event.
|
|
5983
6043
|
*/
|
|
@@ -5995,7 +6055,7 @@ export type SeamEvent =
|
|
|
5995
6055
|
/**
|
|
5996
6056
|
* Custom metadata of the device, present when device_id is provided.
|
|
5997
6057
|
*/
|
|
5998
|
-
device_custom_metadata?: Record<string,
|
|
6058
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
5999
6059
|
/**
|
|
6000
6060
|
* ID of the affected device.
|
|
6001
6061
|
*/
|
|
@@ -6052,7 +6112,8 @@ export type SeamEvent =
|
|
|
6052
6112
|
/**
|
|
6053
6113
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
6054
6114
|
*/
|
|
6055
|
-
connected_account_custom_metadata?:
|
|
6115
|
+
connected_account_custom_metadata?:
|
|
6116
|
+
Record<string, string | boolean> | undefined
|
|
6056
6117
|
/**
|
|
6057
6118
|
* ID of the connected account associated with the event.
|
|
6058
6119
|
*/
|
|
@@ -6078,7 +6139,7 @@ export type SeamEvent =
|
|
|
6078
6139
|
/**
|
|
6079
6140
|
* Custom metadata of the device, present when device_id is provided.
|
|
6080
6141
|
*/
|
|
6081
|
-
device_custom_metadata?: Record<string,
|
|
6142
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
6082
6143
|
/**
|
|
6083
6144
|
* ID of the affected device.
|
|
6084
6145
|
*/
|
|
@@ -6119,7 +6180,8 @@ export type SeamEvent =
|
|
|
6119
6180
|
/**
|
|
6120
6181
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
6121
6182
|
*/
|
|
6122
|
-
connected_account_custom_metadata?:
|
|
6183
|
+
connected_account_custom_metadata?:
|
|
6184
|
+
Record<string, string | boolean> | undefined
|
|
6123
6185
|
/**
|
|
6124
6186
|
* ID of the connected account associated with the event.
|
|
6125
6187
|
*/
|
|
@@ -6137,7 +6199,7 @@ export type SeamEvent =
|
|
|
6137
6199
|
/**
|
|
6138
6200
|
* Custom metadata of the device, present when device_id is provided.
|
|
6139
6201
|
*/
|
|
6140
|
-
device_custom_metadata?: Record<string,
|
|
6202
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
6141
6203
|
/**
|
|
6142
6204
|
* ID of the affected device.
|
|
6143
6205
|
*/
|
|
@@ -6178,7 +6240,8 @@ export type SeamEvent =
|
|
|
6178
6240
|
/**
|
|
6179
6241
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
6180
6242
|
*/
|
|
6181
|
-
connected_account_custom_metadata?:
|
|
6243
|
+
connected_account_custom_metadata?:
|
|
6244
|
+
Record<string, string | boolean> | undefined
|
|
6182
6245
|
/**
|
|
6183
6246
|
* ID of the connected account associated with the event.
|
|
6184
6247
|
*/
|
|
@@ -6196,7 +6259,7 @@ export type SeamEvent =
|
|
|
6196
6259
|
/**
|
|
6197
6260
|
* Custom metadata of the device, present when device_id is provided.
|
|
6198
6261
|
*/
|
|
6199
|
-
device_custom_metadata?: Record<string,
|
|
6262
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
6200
6263
|
/**
|
|
6201
6264
|
* ID of the affected device.
|
|
6202
6265
|
*/
|
|
@@ -6237,7 +6300,8 @@ export type SeamEvent =
|
|
|
6237
6300
|
/**
|
|
6238
6301
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
6239
6302
|
*/
|
|
6240
|
-
connected_account_custom_metadata?:
|
|
6303
|
+
connected_account_custom_metadata?:
|
|
6304
|
+
Record<string, string | boolean> | undefined
|
|
6241
6305
|
/**
|
|
6242
6306
|
* ID of the connected account associated with the event.
|
|
6243
6307
|
*/
|
|
@@ -6255,7 +6319,7 @@ export type SeamEvent =
|
|
|
6255
6319
|
/**
|
|
6256
6320
|
* Custom metadata of the device, present when device_id is provided.
|
|
6257
6321
|
*/
|
|
6258
|
-
device_custom_metadata?: Record<string,
|
|
6322
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
6259
6323
|
/**
|
|
6260
6324
|
* ID of the affected device.
|
|
6261
6325
|
*/
|
|
@@ -6298,7 +6362,8 @@ export type SeamEvent =
|
|
|
6298
6362
|
/**
|
|
6299
6363
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
6300
6364
|
*/
|
|
6301
|
-
connected_account_custom_metadata?:
|
|
6365
|
+
connected_account_custom_metadata?:
|
|
6366
|
+
Record<string, string | boolean> | undefined
|
|
6302
6367
|
/**
|
|
6303
6368
|
* ID of the connected account associated with the event.
|
|
6304
6369
|
*/
|
|
@@ -6316,7 +6381,7 @@ export type SeamEvent =
|
|
|
6316
6381
|
/**
|
|
6317
6382
|
* Custom metadata of the device, present when device_id is provided.
|
|
6318
6383
|
*/
|
|
6319
|
-
device_custom_metadata?: Record<string,
|
|
6384
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
6320
6385
|
/**
|
|
6321
6386
|
* ID of the affected device.
|
|
6322
6387
|
*/
|
|
@@ -6360,7 +6425,7 @@ export type SeamEvent =
|
|
|
6360
6425
|
/**
|
|
6361
6426
|
* Custom metadata of the device; present when device_id is provided.
|
|
6362
6427
|
*/
|
|
6363
|
-
device_custom_metadata?: Record<string,
|
|
6428
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined
|
|
6364
6429
|
/**
|
|
6365
6430
|
* ID of the affected phone device.
|
|
6366
6431
|
*/
|