@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
package/lib/resources/event.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export type SeamEvent = {
|
|
|
9
9
|
/**
|
|
10
10
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
11
11
|
*/
|
|
12
|
-
connected_account_custom_metadata?: Record<string,
|
|
12
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
13
13
|
/**
|
|
14
14
|
* ID of the connected account associated with the affected access code.
|
|
15
15
|
*/
|
|
@@ -21,7 +21,7 @@ export type SeamEvent = {
|
|
|
21
21
|
/**
|
|
22
22
|
* Custom metadata of the device, present when device_id is provided.
|
|
23
23
|
*/
|
|
24
|
-
device_custom_metadata?: Record<string,
|
|
24
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
25
25
|
/**
|
|
26
26
|
* ID of the device associated with the affected access code.
|
|
27
27
|
*/
|
|
@@ -72,7 +72,7 @@ export type SeamEvent = {
|
|
|
72
72
|
/**
|
|
73
73
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
74
74
|
*/
|
|
75
|
-
connected_account_custom_metadata?: Record<string,
|
|
75
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
76
76
|
/**
|
|
77
77
|
* ID of the connected account associated with the affected access code.
|
|
78
78
|
*/
|
|
@@ -84,7 +84,7 @@ export type SeamEvent = {
|
|
|
84
84
|
/**
|
|
85
85
|
* Custom metadata of the device, present when device_id is provided.
|
|
86
86
|
*/
|
|
87
|
-
device_custom_metadata?: Record<string,
|
|
87
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
88
88
|
/**
|
|
89
89
|
* ID of the device associated with the affected access code.
|
|
90
90
|
*/
|
|
@@ -114,7 +114,7 @@ export type SeamEvent = {
|
|
|
114
114
|
/**
|
|
115
115
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
116
116
|
*/
|
|
117
|
-
connected_account_custom_metadata?: Record<string,
|
|
117
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
118
118
|
/**
|
|
119
119
|
* ID of the connected account associated with the affected access code.
|
|
120
120
|
*/
|
|
@@ -130,7 +130,7 @@ export type SeamEvent = {
|
|
|
130
130
|
/**
|
|
131
131
|
* Custom metadata of the device, present when device_id is provided.
|
|
132
132
|
*/
|
|
133
|
-
device_custom_metadata?: Record<string,
|
|
133
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
134
134
|
/**
|
|
135
135
|
* ID of the device associated with the affected access code.
|
|
136
136
|
*/
|
|
@@ -178,7 +178,7 @@ export type SeamEvent = {
|
|
|
178
178
|
/**
|
|
179
179
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
180
180
|
*/
|
|
181
|
-
connected_account_custom_metadata?: Record<string,
|
|
181
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
182
182
|
/**
|
|
183
183
|
* ID of the connected account associated with the affected access code.
|
|
184
184
|
*/
|
|
@@ -194,7 +194,7 @@ export type SeamEvent = {
|
|
|
194
194
|
/**
|
|
195
195
|
* Custom metadata of the device, present when device_id is provided.
|
|
196
196
|
*/
|
|
197
|
-
device_custom_metadata?: Record<string,
|
|
197
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
198
198
|
/**
|
|
199
199
|
* ID of the device associated with the affected access code.
|
|
200
200
|
*/
|
|
@@ -242,7 +242,7 @@ export type SeamEvent = {
|
|
|
242
242
|
/**
|
|
243
243
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
244
244
|
*/
|
|
245
|
-
connected_account_custom_metadata?: Record<string,
|
|
245
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
246
246
|
/**
|
|
247
247
|
* ID of the connected account associated with the affected access code.
|
|
248
248
|
*/
|
|
@@ -258,7 +258,7 @@ export type SeamEvent = {
|
|
|
258
258
|
/**
|
|
259
259
|
* Custom metadata of the device, present when device_id is provided.
|
|
260
260
|
*/
|
|
261
|
-
device_custom_metadata?: Record<string,
|
|
261
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
262
262
|
/**
|
|
263
263
|
* ID of the device associated with the affected access code.
|
|
264
264
|
*/
|
|
@@ -314,7 +314,7 @@ export type SeamEvent = {
|
|
|
314
314
|
/**
|
|
315
315
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
316
316
|
*/
|
|
317
|
-
connected_account_custom_metadata?: Record<string,
|
|
317
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
318
318
|
/**
|
|
319
319
|
* ID of the connected account associated with the affected access code.
|
|
320
320
|
*/
|
|
@@ -326,7 +326,7 @@ export type SeamEvent = {
|
|
|
326
326
|
/**
|
|
327
327
|
* Custom metadata of the device, present when device_id is provided.
|
|
328
328
|
*/
|
|
329
|
-
device_custom_metadata?: Record<string,
|
|
329
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
330
330
|
/**
|
|
331
331
|
* ID of the device associated with the affected access code.
|
|
332
332
|
*/
|
|
@@ -377,7 +377,7 @@ export type SeamEvent = {
|
|
|
377
377
|
/**
|
|
378
378
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
379
379
|
*/
|
|
380
|
-
connected_account_custom_metadata?: Record<string,
|
|
380
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
381
381
|
/**
|
|
382
382
|
* ID of the connected account associated with the affected access code.
|
|
383
383
|
*/
|
|
@@ -389,7 +389,7 @@ export type SeamEvent = {
|
|
|
389
389
|
/**
|
|
390
390
|
* Custom metadata of the device, present when device_id is provided.
|
|
391
391
|
*/
|
|
392
|
-
device_custom_metadata?: Record<string,
|
|
392
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
393
393
|
/**
|
|
394
394
|
* ID of the device associated with the affected access code.
|
|
395
395
|
*/
|
|
@@ -423,7 +423,7 @@ export type SeamEvent = {
|
|
|
423
423
|
/**
|
|
424
424
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
425
425
|
*/
|
|
426
|
-
connected_account_custom_metadata?: Record<string,
|
|
426
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
427
427
|
/**
|
|
428
428
|
* ID of the connected account associated with the affected access code.
|
|
429
429
|
*/
|
|
@@ -435,7 +435,7 @@ export type SeamEvent = {
|
|
|
435
435
|
/**
|
|
436
436
|
* Custom metadata of the device, present when device_id is provided.
|
|
437
437
|
*/
|
|
438
|
-
device_custom_metadata?: Record<string,
|
|
438
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
439
439
|
/**
|
|
440
440
|
* ID of the device associated with the affected access code.
|
|
441
441
|
*/
|
|
@@ -465,7 +465,7 @@ export type SeamEvent = {
|
|
|
465
465
|
/**
|
|
466
466
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
467
467
|
*/
|
|
468
|
-
connected_account_custom_metadata?: Record<string,
|
|
468
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
469
469
|
/**
|
|
470
470
|
* ID of the connected account associated with the affected access code.
|
|
471
471
|
*/
|
|
@@ -477,7 +477,7 @@ export type SeamEvent = {
|
|
|
477
477
|
/**
|
|
478
478
|
* Custom metadata of the device, present when device_id is provided.
|
|
479
479
|
*/
|
|
480
|
-
device_custom_metadata?: Record<string,
|
|
480
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
481
481
|
/**
|
|
482
482
|
* ID of the device associated with the affected access code.
|
|
483
483
|
*/
|
|
@@ -541,7 +541,7 @@ export type SeamEvent = {
|
|
|
541
541
|
/**
|
|
542
542
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
543
543
|
*/
|
|
544
|
-
connected_account_custom_metadata?: Record<string,
|
|
544
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
545
545
|
/**
|
|
546
546
|
* Errors associated with the connected account.
|
|
547
547
|
*/
|
|
@@ -587,7 +587,7 @@ export type SeamEvent = {
|
|
|
587
587
|
/**
|
|
588
588
|
* Custom metadata of the device, present when device_id is provided.
|
|
589
589
|
*/
|
|
590
|
-
device_custom_metadata?: Record<string,
|
|
590
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
591
591
|
/**
|
|
592
592
|
* Errors associated with the device.
|
|
593
593
|
*/
|
|
@@ -685,7 +685,7 @@ export type SeamEvent = {
|
|
|
685
685
|
/**
|
|
686
686
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
687
687
|
*/
|
|
688
|
-
connected_account_custom_metadata?: Record<string,
|
|
688
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
689
689
|
/**
|
|
690
690
|
* Errors associated with the connected account.
|
|
691
691
|
*/
|
|
@@ -731,7 +731,7 @@ export type SeamEvent = {
|
|
|
731
731
|
/**
|
|
732
732
|
* Custom metadata of the device, present when device_id is provided.
|
|
733
733
|
*/
|
|
734
|
-
device_custom_metadata?: Record<string,
|
|
734
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
735
735
|
/**
|
|
736
736
|
* Errors associated with the device.
|
|
737
737
|
*/
|
|
@@ -799,7 +799,7 @@ export type SeamEvent = {
|
|
|
799
799
|
/**
|
|
800
800
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
801
801
|
*/
|
|
802
|
-
connected_account_custom_metadata?: Record<string,
|
|
802
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
803
803
|
/**
|
|
804
804
|
* ID of the connected account associated with the affected access code.
|
|
805
805
|
*/
|
|
@@ -811,7 +811,7 @@ export type SeamEvent = {
|
|
|
811
811
|
/**
|
|
812
812
|
* Custom metadata of the device, present when device_id is provided.
|
|
813
813
|
*/
|
|
814
|
-
device_custom_metadata?: Record<string,
|
|
814
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
815
815
|
/**
|
|
816
816
|
* ID of the device associated with the affected access code.
|
|
817
817
|
*/
|
|
@@ -875,7 +875,7 @@ export type SeamEvent = {
|
|
|
875
875
|
/**
|
|
876
876
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
877
877
|
*/
|
|
878
|
-
connected_account_custom_metadata?: Record<string,
|
|
878
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
879
879
|
/**
|
|
880
880
|
* Errors associated with the connected account.
|
|
881
881
|
*/
|
|
@@ -921,7 +921,7 @@ export type SeamEvent = {
|
|
|
921
921
|
/**
|
|
922
922
|
* Custom metadata of the device, present when device_id is provided.
|
|
923
923
|
*/
|
|
924
|
-
device_custom_metadata?: Record<string,
|
|
924
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
925
925
|
/**
|
|
926
926
|
* Errors associated with the device.
|
|
927
927
|
*/
|
|
@@ -1019,7 +1019,7 @@ export type SeamEvent = {
|
|
|
1019
1019
|
/**
|
|
1020
1020
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1021
1021
|
*/
|
|
1022
|
-
connected_account_custom_metadata?: Record<string,
|
|
1022
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1023
1023
|
/**
|
|
1024
1024
|
* Errors associated with the connected account.
|
|
1025
1025
|
*/
|
|
@@ -1065,7 +1065,7 @@ export type SeamEvent = {
|
|
|
1065
1065
|
/**
|
|
1066
1066
|
* Custom metadata of the device, present when device_id is provided.
|
|
1067
1067
|
*/
|
|
1068
|
-
device_custom_metadata?: Record<string,
|
|
1068
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1069
1069
|
/**
|
|
1070
1070
|
* Errors associated with the device.
|
|
1071
1071
|
*/
|
|
@@ -1129,7 +1129,7 @@ export type SeamEvent = {
|
|
|
1129
1129
|
/**
|
|
1130
1130
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1131
1131
|
*/
|
|
1132
|
-
connected_account_custom_metadata?: Record<string,
|
|
1132
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1133
1133
|
/**
|
|
1134
1134
|
* ID of the connected account associated with the affected access code.
|
|
1135
1135
|
*/
|
|
@@ -1141,7 +1141,7 @@ export type SeamEvent = {
|
|
|
1141
1141
|
/**
|
|
1142
1142
|
* Custom metadata of the device, present when device_id is provided.
|
|
1143
1143
|
*/
|
|
1144
|
-
device_custom_metadata?: Record<string,
|
|
1144
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1145
1145
|
/**
|
|
1146
1146
|
* ID of the device associated with the affected access code.
|
|
1147
1147
|
*/
|
|
@@ -1171,7 +1171,7 @@ export type SeamEvent = {
|
|
|
1171
1171
|
/**
|
|
1172
1172
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1173
1173
|
*/
|
|
1174
|
-
connected_account_custom_metadata?: Record<string,
|
|
1174
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1175
1175
|
/**
|
|
1176
1176
|
* ID of the connected account associated with the affected access code.
|
|
1177
1177
|
*/
|
|
@@ -1183,7 +1183,7 @@ export type SeamEvent = {
|
|
|
1183
1183
|
/**
|
|
1184
1184
|
* Custom metadata of the device, present when device_id is provided.
|
|
1185
1185
|
*/
|
|
1186
|
-
device_custom_metadata?: Record<string,
|
|
1186
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1187
1187
|
/**
|
|
1188
1188
|
* ID of the device associated with the affected access code.
|
|
1189
1189
|
*/
|
|
@@ -1217,7 +1217,7 @@ export type SeamEvent = {
|
|
|
1217
1217
|
/**
|
|
1218
1218
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1219
1219
|
*/
|
|
1220
|
-
connected_account_custom_metadata?: Record<string,
|
|
1220
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1221
1221
|
/**
|
|
1222
1222
|
* ID of the connected account associated with the affected access code.
|
|
1223
1223
|
*/
|
|
@@ -1229,7 +1229,7 @@ export type SeamEvent = {
|
|
|
1229
1229
|
/**
|
|
1230
1230
|
* Custom metadata of the device, present when device_id is provided.
|
|
1231
1231
|
*/
|
|
1232
|
-
device_custom_metadata?: Record<string,
|
|
1232
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1233
1233
|
/**
|
|
1234
1234
|
* ID of the device associated with the affected access code.
|
|
1235
1235
|
*/
|
|
@@ -1259,7 +1259,7 @@ export type SeamEvent = {
|
|
|
1259
1259
|
/**
|
|
1260
1260
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1261
1261
|
*/
|
|
1262
|
-
connected_account_custom_metadata?: Record<string,
|
|
1262
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1263
1263
|
/**
|
|
1264
1264
|
* ID of the connected account associated with the affected access code.
|
|
1265
1265
|
*/
|
|
@@ -1271,7 +1271,7 @@ export type SeamEvent = {
|
|
|
1271
1271
|
/**
|
|
1272
1272
|
* Custom metadata of the device, present when device_id is provided.
|
|
1273
1273
|
*/
|
|
1274
|
-
device_custom_metadata?: Record<string,
|
|
1274
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1275
1275
|
/**
|
|
1276
1276
|
* ID of the device associated with the affected access code.
|
|
1277
1277
|
*/
|
|
@@ -1335,7 +1335,7 @@ export type SeamEvent = {
|
|
|
1335
1335
|
/**
|
|
1336
1336
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1337
1337
|
*/
|
|
1338
|
-
connected_account_custom_metadata?: Record<string,
|
|
1338
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1339
1339
|
/**
|
|
1340
1340
|
* Errors associated with the connected account.
|
|
1341
1341
|
*/
|
|
@@ -1381,7 +1381,7 @@ export type SeamEvent = {
|
|
|
1381
1381
|
/**
|
|
1382
1382
|
* Custom metadata of the device, present when device_id is provided.
|
|
1383
1383
|
*/
|
|
1384
|
-
device_custom_metadata?: Record<string,
|
|
1384
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1385
1385
|
/**
|
|
1386
1386
|
* Errors associated with the device.
|
|
1387
1387
|
*/
|
|
@@ -1445,7 +1445,7 @@ export type SeamEvent = {
|
|
|
1445
1445
|
/**
|
|
1446
1446
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1447
1447
|
*/
|
|
1448
|
-
connected_account_custom_metadata?: Record<string,
|
|
1448
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1449
1449
|
/**
|
|
1450
1450
|
* ID of the connected account associated with the affected access code.
|
|
1451
1451
|
*/
|
|
@@ -1457,7 +1457,7 @@ export type SeamEvent = {
|
|
|
1457
1457
|
/**
|
|
1458
1458
|
* Custom metadata of the device, present when device_id is provided.
|
|
1459
1459
|
*/
|
|
1460
|
-
device_custom_metadata?: Record<string,
|
|
1460
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1461
1461
|
/**
|
|
1462
1462
|
* ID of the device associated with the affected access code.
|
|
1463
1463
|
*/
|
|
@@ -1487,7 +1487,7 @@ export type SeamEvent = {
|
|
|
1487
1487
|
/**
|
|
1488
1488
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
1489
1489
|
*/
|
|
1490
|
-
connected_account_custom_metadata?: Record<string,
|
|
1490
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1491
1491
|
/**
|
|
1492
1492
|
* ID of the connected account associated with the affected access code.
|
|
1493
1493
|
*/
|
|
@@ -1499,7 +1499,7 @@ export type SeamEvent = {
|
|
|
1499
1499
|
/**
|
|
1500
1500
|
* Custom metadata of the device, present when device_id is provided.
|
|
1501
1501
|
*/
|
|
1502
|
-
device_custom_metadata?: Record<string,
|
|
1502
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1503
1503
|
/**
|
|
1504
1504
|
* ID of the device associated with the affected access code.
|
|
1505
1505
|
*/
|
|
@@ -2585,7 +2585,7 @@ export type SeamEvent = {
|
|
|
2585
2585
|
/**
|
|
2586
2586
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
2587
2587
|
*/
|
|
2588
|
-
connected_account_custom_metadata?: Record<string,
|
|
2588
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2589
2589
|
/**
|
|
2590
2590
|
* ID of the affected connected account.
|
|
2591
2591
|
*/
|
|
@@ -2623,7 +2623,7 @@ export type SeamEvent = {
|
|
|
2623
2623
|
/**
|
|
2624
2624
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
2625
2625
|
*/
|
|
2626
|
-
connected_account_custom_metadata?: Record<string,
|
|
2626
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2627
2627
|
/**
|
|
2628
2628
|
* ID of the affected connected account.
|
|
2629
2629
|
*/
|
|
@@ -2657,7 +2657,7 @@ export type SeamEvent = {
|
|
|
2657
2657
|
/**
|
|
2658
2658
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
2659
2659
|
*/
|
|
2660
|
-
connected_account_custom_metadata?: Record<string,
|
|
2660
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2661
2661
|
/**
|
|
2662
2662
|
* ID of the affected connected account.
|
|
2663
2663
|
*/
|
|
@@ -2687,7 +2687,7 @@ export type SeamEvent = {
|
|
|
2687
2687
|
/**
|
|
2688
2688
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
2689
2689
|
*/
|
|
2690
|
-
connected_account_custom_metadata?: Record<string,
|
|
2690
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2691
2691
|
/**
|
|
2692
2692
|
* Errors associated with the connected account.
|
|
2693
2693
|
*/
|
|
@@ -2751,7 +2751,7 @@ export type SeamEvent = {
|
|
|
2751
2751
|
/**
|
|
2752
2752
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
2753
2753
|
*/
|
|
2754
|
-
connected_account_custom_metadata?: Record<string,
|
|
2754
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2755
2755
|
/**
|
|
2756
2756
|
* ID of the affected connected account.
|
|
2757
2757
|
*/
|
|
@@ -2781,7 +2781,7 @@ export type SeamEvent = {
|
|
|
2781
2781
|
/**
|
|
2782
2782
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
2783
2783
|
*/
|
|
2784
|
-
connected_account_custom_metadata?: Record<string,
|
|
2784
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2785
2785
|
/**
|
|
2786
2786
|
* ID of the affected connected account.
|
|
2787
2787
|
*/
|
|
@@ -2815,7 +2815,7 @@ export type SeamEvent = {
|
|
|
2815
2815
|
/**
|
|
2816
2816
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
2817
2817
|
*/
|
|
2818
|
-
connected_account_custom_metadata?: Record<string,
|
|
2818
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2819
2819
|
/**
|
|
2820
2820
|
* ID of the affected connected account.
|
|
2821
2821
|
*/
|
|
@@ -2845,7 +2845,7 @@ export type SeamEvent = {
|
|
|
2845
2845
|
/**
|
|
2846
2846
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
2847
2847
|
*/
|
|
2848
|
-
connected_account_custom_metadata?: Record<string,
|
|
2848
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2849
2849
|
/**
|
|
2850
2850
|
* Errors associated with the connected account.
|
|
2851
2851
|
*/
|
|
@@ -3249,7 +3249,7 @@ export type SeamEvent = {
|
|
|
3249
3249
|
/**
|
|
3250
3250
|
* Custom metadata of the connected account; present when connected_account_id is provided.
|
|
3251
3251
|
*/
|
|
3252
|
-
connected_account_custom_metadata?: Record<string,
|
|
3252
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3253
3253
|
/**
|
|
3254
3254
|
* ID of the connected account associated with the event.
|
|
3255
3255
|
*/
|
|
@@ -3309,7 +3309,7 @@ export type SeamEvent = {
|
|
|
3309
3309
|
/**
|
|
3310
3310
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3311
3311
|
*/
|
|
3312
|
-
connected_account_custom_metadata?: Record<string,
|
|
3312
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3313
3313
|
/**
|
|
3314
3314
|
* ID of the connected account associated with the event.
|
|
3315
3315
|
*/
|
|
@@ -3325,7 +3325,7 @@ export type SeamEvent = {
|
|
|
3325
3325
|
/**
|
|
3326
3326
|
* Custom metadata of the device, present when device_id is provided.
|
|
3327
3327
|
*/
|
|
3328
|
-
device_custom_metadata?: Record<string,
|
|
3328
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3329
3329
|
/**
|
|
3330
3330
|
* ID of the affected device.
|
|
3331
3331
|
*/
|
|
@@ -3351,7 +3351,7 @@ export type SeamEvent = {
|
|
|
3351
3351
|
/**
|
|
3352
3352
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3353
3353
|
*/
|
|
3354
|
-
connected_account_custom_metadata?: Record<string,
|
|
3354
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3355
3355
|
/**
|
|
3356
3356
|
* ID of the connected account associated with the event.
|
|
3357
3357
|
*/
|
|
@@ -3367,7 +3367,7 @@ export type SeamEvent = {
|
|
|
3367
3367
|
/**
|
|
3368
3368
|
* Custom metadata of the device, present when device_id is provided.
|
|
3369
3369
|
*/
|
|
3370
|
-
device_custom_metadata?: Record<string,
|
|
3370
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3371
3371
|
/**
|
|
3372
3372
|
* ID of the affected device.
|
|
3373
3373
|
*/
|
|
@@ -3393,7 +3393,7 @@ export type SeamEvent = {
|
|
|
3393
3393
|
/**
|
|
3394
3394
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3395
3395
|
*/
|
|
3396
|
-
connected_account_custom_metadata?: Record<string,
|
|
3396
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3397
3397
|
/**
|
|
3398
3398
|
* ID of the connected account associated with the event.
|
|
3399
3399
|
*/
|
|
@@ -3409,7 +3409,7 @@ export type SeamEvent = {
|
|
|
3409
3409
|
/**
|
|
3410
3410
|
* Custom metadata of the device, present when device_id is provided.
|
|
3411
3411
|
*/
|
|
3412
|
-
device_custom_metadata?: Record<string,
|
|
3412
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3413
3413
|
/**
|
|
3414
3414
|
* ID of the affected device.
|
|
3415
3415
|
*/
|
|
@@ -3435,7 +3435,7 @@ export type SeamEvent = {
|
|
|
3435
3435
|
/**
|
|
3436
3436
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3437
3437
|
*/
|
|
3438
|
-
connected_account_custom_metadata?: Record<string,
|
|
3438
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3439
3439
|
/**
|
|
3440
3440
|
* ID of the connected account associated with the event.
|
|
3441
3441
|
*/
|
|
@@ -3451,7 +3451,7 @@ export type SeamEvent = {
|
|
|
3451
3451
|
/**
|
|
3452
3452
|
* Custom metadata of the device, present when device_id is provided.
|
|
3453
3453
|
*/
|
|
3454
|
-
device_custom_metadata?: Record<string,
|
|
3454
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3455
3455
|
/**
|
|
3456
3456
|
* ID of the affected device.
|
|
3457
3457
|
*/
|
|
@@ -3477,7 +3477,7 @@ export type SeamEvent = {
|
|
|
3477
3477
|
/**
|
|
3478
3478
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3479
3479
|
*/
|
|
3480
|
-
connected_account_custom_metadata?: Record<string,
|
|
3480
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3481
3481
|
/**
|
|
3482
3482
|
* ID of the connected account associated with the event.
|
|
3483
3483
|
*/
|
|
@@ -3493,7 +3493,7 @@ export type SeamEvent = {
|
|
|
3493
3493
|
/**
|
|
3494
3494
|
* Custom metadata of the device, present when device_id is provided.
|
|
3495
3495
|
*/
|
|
3496
|
-
device_custom_metadata?: Record<string,
|
|
3496
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3497
3497
|
/**
|
|
3498
3498
|
* ID of the affected device.
|
|
3499
3499
|
*/
|
|
@@ -3519,7 +3519,7 @@ export type SeamEvent = {
|
|
|
3519
3519
|
/**
|
|
3520
3520
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3521
3521
|
*/
|
|
3522
|
-
connected_account_custom_metadata?: Record<string,
|
|
3522
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3523
3523
|
/**
|
|
3524
3524
|
* Errors associated with the connected account.
|
|
3525
3525
|
*/
|
|
@@ -3569,7 +3569,7 @@ export type SeamEvent = {
|
|
|
3569
3569
|
/**
|
|
3570
3570
|
* Custom metadata of the device, present when device_id is provided.
|
|
3571
3571
|
*/
|
|
3572
|
-
device_custom_metadata?: Record<string,
|
|
3572
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3573
3573
|
/**
|
|
3574
3574
|
* Errors associated with the device.
|
|
3575
3575
|
*/
|
|
@@ -3633,7 +3633,7 @@ export type SeamEvent = {
|
|
|
3633
3633
|
/**
|
|
3634
3634
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3635
3635
|
*/
|
|
3636
|
-
connected_account_custom_metadata?: Record<string,
|
|
3636
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3637
3637
|
/**
|
|
3638
3638
|
* Errors associated with the connected account.
|
|
3639
3639
|
*/
|
|
@@ -3683,7 +3683,7 @@ export type SeamEvent = {
|
|
|
3683
3683
|
/**
|
|
3684
3684
|
* Custom metadata of the device, present when device_id is provided.
|
|
3685
3685
|
*/
|
|
3686
|
-
device_custom_metadata?: Record<string,
|
|
3686
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3687
3687
|
/**
|
|
3688
3688
|
* Errors associated with the device.
|
|
3689
3689
|
*/
|
|
@@ -3747,7 +3747,7 @@ export type SeamEvent = {
|
|
|
3747
3747
|
/**
|
|
3748
3748
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3749
3749
|
*/
|
|
3750
|
-
connected_account_custom_metadata?: Record<string,
|
|
3750
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3751
3751
|
/**
|
|
3752
3752
|
* ID of the connected account associated with the event.
|
|
3753
3753
|
*/
|
|
@@ -3763,7 +3763,7 @@ export type SeamEvent = {
|
|
|
3763
3763
|
/**
|
|
3764
3764
|
* Custom metadata of the device, present when device_id is provided.
|
|
3765
3765
|
*/
|
|
3766
|
-
device_custom_metadata?: Record<string,
|
|
3766
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3767
3767
|
/**
|
|
3768
3768
|
* ID of the affected device.
|
|
3769
3769
|
*/
|
|
@@ -3793,7 +3793,7 @@ export type SeamEvent = {
|
|
|
3793
3793
|
/**
|
|
3794
3794
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3795
3795
|
*/
|
|
3796
|
-
connected_account_custom_metadata?: Record<string,
|
|
3796
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3797
3797
|
/**
|
|
3798
3798
|
* ID of the connected account associated with the event.
|
|
3799
3799
|
*/
|
|
@@ -3809,7 +3809,7 @@ export type SeamEvent = {
|
|
|
3809
3809
|
/**
|
|
3810
3810
|
* Custom metadata of the device, present when device_id is provided.
|
|
3811
3811
|
*/
|
|
3812
|
-
device_custom_metadata?: Record<string,
|
|
3812
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3813
3813
|
/**
|
|
3814
3814
|
* ID of the affected device.
|
|
3815
3815
|
*/
|
|
@@ -3843,7 +3843,7 @@ export type SeamEvent = {
|
|
|
3843
3843
|
/**
|
|
3844
3844
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3845
3845
|
*/
|
|
3846
|
-
connected_account_custom_metadata?: Record<string,
|
|
3846
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3847
3847
|
/**
|
|
3848
3848
|
* ID of the connected account associated with the event.
|
|
3849
3849
|
*/
|
|
@@ -3859,7 +3859,7 @@ export type SeamEvent = {
|
|
|
3859
3859
|
/**
|
|
3860
3860
|
* Custom metadata of the device, present when device_id is provided.
|
|
3861
3861
|
*/
|
|
3862
|
-
device_custom_metadata?: Record<string,
|
|
3862
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3863
3863
|
/**
|
|
3864
3864
|
* ID of the affected device.
|
|
3865
3865
|
*/
|
|
@@ -3885,7 +3885,7 @@ export type SeamEvent = {
|
|
|
3885
3885
|
/**
|
|
3886
3886
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3887
3887
|
*/
|
|
3888
|
-
connected_account_custom_metadata?: Record<string,
|
|
3888
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3889
3889
|
/**
|
|
3890
3890
|
* ID of the connected account associated with the event.
|
|
3891
3891
|
*/
|
|
@@ -3901,7 +3901,7 @@ export type SeamEvent = {
|
|
|
3901
3901
|
/**
|
|
3902
3902
|
* Custom metadata of the device, present when device_id is provided.
|
|
3903
3903
|
*/
|
|
3904
|
-
device_custom_metadata?: Record<string,
|
|
3904
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3905
3905
|
/**
|
|
3906
3906
|
* ID of the affected device.
|
|
3907
3907
|
*/
|
|
@@ -3927,7 +3927,7 @@ export type SeamEvent = {
|
|
|
3927
3927
|
/**
|
|
3928
3928
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3929
3929
|
*/
|
|
3930
|
-
connected_account_custom_metadata?: Record<string,
|
|
3930
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3931
3931
|
/**
|
|
3932
3932
|
* ID of the connected account associated with the event.
|
|
3933
3933
|
*/
|
|
@@ -3943,7 +3943,7 @@ export type SeamEvent = {
|
|
|
3943
3943
|
/**
|
|
3944
3944
|
* Custom metadata of the device, present when device_id is provided.
|
|
3945
3945
|
*/
|
|
3946
|
-
device_custom_metadata?: Record<string,
|
|
3946
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3947
3947
|
/**
|
|
3948
3948
|
* ID of the affected device.
|
|
3949
3949
|
*/
|
|
@@ -3973,7 +3973,7 @@ export type SeamEvent = {
|
|
|
3973
3973
|
/**
|
|
3974
3974
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
3975
3975
|
*/
|
|
3976
|
-
connected_account_custom_metadata?: Record<string,
|
|
3976
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3977
3977
|
/**
|
|
3978
3978
|
* ID of the connected account associated with the event.
|
|
3979
3979
|
*/
|
|
@@ -3989,7 +3989,7 @@ export type SeamEvent = {
|
|
|
3989
3989
|
/**
|
|
3990
3990
|
* Custom metadata of the device, present when device_id is provided.
|
|
3991
3991
|
*/
|
|
3992
|
-
device_custom_metadata?: Record<string,
|
|
3992
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3993
3993
|
/**
|
|
3994
3994
|
* ID of the affected device.
|
|
3995
3995
|
*/
|
|
@@ -4015,7 +4015,7 @@ export type SeamEvent = {
|
|
|
4015
4015
|
/**
|
|
4016
4016
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4017
4017
|
*/
|
|
4018
|
-
connected_account_custom_metadata?: Record<string,
|
|
4018
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4019
4019
|
/**
|
|
4020
4020
|
* ID of the connected account associated with the event.
|
|
4021
4021
|
*/
|
|
@@ -4031,7 +4031,7 @@ export type SeamEvent = {
|
|
|
4031
4031
|
/**
|
|
4032
4032
|
* Custom metadata of the device, present when device_id is provided.
|
|
4033
4033
|
*/
|
|
4034
|
-
device_custom_metadata?: Record<string,
|
|
4034
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4035
4035
|
/**
|
|
4036
4036
|
* ID of the affected device.
|
|
4037
4037
|
*/
|
|
@@ -4057,7 +4057,7 @@ export type SeamEvent = {
|
|
|
4057
4057
|
/**
|
|
4058
4058
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4059
4059
|
*/
|
|
4060
|
-
connected_account_custom_metadata?: Record<string,
|
|
4060
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4061
4061
|
/**
|
|
4062
4062
|
* ID of the connected account associated with the event.
|
|
4063
4063
|
*/
|
|
@@ -4073,7 +4073,7 @@ export type SeamEvent = {
|
|
|
4073
4073
|
/**
|
|
4074
4074
|
* Custom metadata of the device, present when device_id is provided.
|
|
4075
4075
|
*/
|
|
4076
|
-
device_custom_metadata?: Record<string,
|
|
4076
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4077
4077
|
/**
|
|
4078
4078
|
* ID of the affected device.
|
|
4079
4079
|
*/
|
|
@@ -4099,7 +4099,7 @@ export type SeamEvent = {
|
|
|
4099
4099
|
/**
|
|
4100
4100
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4101
4101
|
*/
|
|
4102
|
-
connected_account_custom_metadata?: Record<string,
|
|
4102
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4103
4103
|
/**
|
|
4104
4104
|
* ID of the connected account associated with the event.
|
|
4105
4105
|
*/
|
|
@@ -4115,7 +4115,7 @@ export type SeamEvent = {
|
|
|
4115
4115
|
/**
|
|
4116
4116
|
* Custom metadata of the device, present when device_id is provided.
|
|
4117
4117
|
*/
|
|
4118
|
-
device_custom_metadata?: Record<string,
|
|
4118
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4119
4119
|
/**
|
|
4120
4120
|
* ID of the affected device.
|
|
4121
4121
|
*/
|
|
@@ -4141,7 +4141,7 @@ export type SeamEvent = {
|
|
|
4141
4141
|
/**
|
|
4142
4142
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4143
4143
|
*/
|
|
4144
|
-
connected_account_custom_metadata?: Record<string,
|
|
4144
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4145
4145
|
/**
|
|
4146
4146
|
* Errors associated with the connected account.
|
|
4147
4147
|
*/
|
|
@@ -4191,7 +4191,7 @@ export type SeamEvent = {
|
|
|
4191
4191
|
/**
|
|
4192
4192
|
* Custom metadata of the device, present when device_id is provided.
|
|
4193
4193
|
*/
|
|
4194
|
-
device_custom_metadata?: Record<string,
|
|
4194
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4195
4195
|
/**
|
|
4196
4196
|
* Errors associated with the device.
|
|
4197
4197
|
*/
|
|
@@ -4251,7 +4251,7 @@ export type SeamEvent = {
|
|
|
4251
4251
|
/**
|
|
4252
4252
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4253
4253
|
*/
|
|
4254
|
-
connected_account_custom_metadata?: Record<string,
|
|
4254
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4255
4255
|
/**
|
|
4256
4256
|
* ID of the connected account associated with the event.
|
|
4257
4257
|
*/
|
|
@@ -4267,7 +4267,7 @@ export type SeamEvent = {
|
|
|
4267
4267
|
/**
|
|
4268
4268
|
* Custom metadata of the device, present when device_id is provided.
|
|
4269
4269
|
*/
|
|
4270
|
-
device_custom_metadata?: Record<string,
|
|
4270
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4271
4271
|
/**
|
|
4272
4272
|
* ID of the affected device.
|
|
4273
4273
|
*/
|
|
@@ -4293,7 +4293,7 @@ export type SeamEvent = {
|
|
|
4293
4293
|
/**
|
|
4294
4294
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4295
4295
|
*/
|
|
4296
|
-
connected_account_custom_metadata?: Record<string,
|
|
4296
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4297
4297
|
/**
|
|
4298
4298
|
* Errors associated with the connected account.
|
|
4299
4299
|
*/
|
|
@@ -4343,7 +4343,7 @@ export type SeamEvent = {
|
|
|
4343
4343
|
/**
|
|
4344
4344
|
* Custom metadata of the device, present when device_id is provided.
|
|
4345
4345
|
*/
|
|
4346
|
-
device_custom_metadata?: Record<string,
|
|
4346
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4347
4347
|
/**
|
|
4348
4348
|
* Errors associated with the device.
|
|
4349
4349
|
*/
|
|
@@ -4403,7 +4403,7 @@ export type SeamEvent = {
|
|
|
4403
4403
|
/**
|
|
4404
4404
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4405
4405
|
*/
|
|
4406
|
-
connected_account_custom_metadata?: Record<string,
|
|
4406
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4407
4407
|
/**
|
|
4408
4408
|
* ID of the connected account associated with the event.
|
|
4409
4409
|
*/
|
|
@@ -4419,7 +4419,7 @@ export type SeamEvent = {
|
|
|
4419
4419
|
/**
|
|
4420
4420
|
* Custom metadata of the device, present when device_id is provided.
|
|
4421
4421
|
*/
|
|
4422
|
-
device_custom_metadata?: Record<string,
|
|
4422
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4423
4423
|
/**
|
|
4424
4424
|
* ID of the affected device.
|
|
4425
4425
|
*/
|
|
@@ -4445,7 +4445,7 @@ export type SeamEvent = {
|
|
|
4445
4445
|
/**
|
|
4446
4446
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4447
4447
|
*/
|
|
4448
|
-
connected_account_custom_metadata?: Record<string,
|
|
4448
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4449
4449
|
/**
|
|
4450
4450
|
* ID of the connected account associated with the event.
|
|
4451
4451
|
*/
|
|
@@ -4461,7 +4461,7 @@ export type SeamEvent = {
|
|
|
4461
4461
|
/**
|
|
4462
4462
|
* Custom metadata of the device, present when device_id is provided.
|
|
4463
4463
|
*/
|
|
4464
|
-
device_custom_metadata?: Record<string,
|
|
4464
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4465
4465
|
/**
|
|
4466
4466
|
* ID of the affected device.
|
|
4467
4467
|
*/
|
|
@@ -4487,7 +4487,7 @@ export type SeamEvent = {
|
|
|
4487
4487
|
/**
|
|
4488
4488
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4489
4489
|
*/
|
|
4490
|
-
connected_account_custom_metadata?: Record<string,
|
|
4490
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4491
4491
|
/**
|
|
4492
4492
|
* Errors associated with the connected account.
|
|
4493
4493
|
*/
|
|
@@ -4537,7 +4537,7 @@ export type SeamEvent = {
|
|
|
4537
4537
|
/**
|
|
4538
4538
|
* Custom metadata of the device, present when device_id is provided.
|
|
4539
4539
|
*/
|
|
4540
|
-
device_custom_metadata?: Record<string,
|
|
4540
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4541
4541
|
/**
|
|
4542
4542
|
* Errors associated with the device.
|
|
4543
4543
|
*/
|
|
@@ -4597,7 +4597,7 @@ export type SeamEvent = {
|
|
|
4597
4597
|
/**
|
|
4598
4598
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4599
4599
|
*/
|
|
4600
|
-
connected_account_custom_metadata?: Record<string,
|
|
4600
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4601
4601
|
/**
|
|
4602
4602
|
* ID of the connected account associated with the event.
|
|
4603
4603
|
*/
|
|
@@ -4613,7 +4613,7 @@ export type SeamEvent = {
|
|
|
4613
4613
|
/**
|
|
4614
4614
|
* Custom metadata of the device, present when device_id is provided.
|
|
4615
4615
|
*/
|
|
4616
|
-
device_custom_metadata?: Record<string,
|
|
4616
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4617
4617
|
/**
|
|
4618
4618
|
* ID of the affected device.
|
|
4619
4619
|
*/
|
|
@@ -4679,7 +4679,7 @@ export type SeamEvent = {
|
|
|
4679
4679
|
/**
|
|
4680
4680
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4681
4681
|
*/
|
|
4682
|
-
connected_account_custom_metadata?: Record<string,
|
|
4682
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4683
4683
|
/**
|
|
4684
4684
|
* ID of the connected account associated with the event.
|
|
4685
4685
|
*/
|
|
@@ -4695,7 +4695,7 @@ export type SeamEvent = {
|
|
|
4695
4695
|
/**
|
|
4696
4696
|
* Custom metadata of the device, present when device_id is provided.
|
|
4697
4697
|
*/
|
|
4698
|
-
device_custom_metadata?: Record<string,
|
|
4698
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4699
4699
|
/**
|
|
4700
4700
|
* ID of the affected device.
|
|
4701
4701
|
*/
|
|
@@ -4749,7 +4749,7 @@ export type SeamEvent = {
|
|
|
4749
4749
|
/**
|
|
4750
4750
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4751
4751
|
*/
|
|
4752
|
-
connected_account_custom_metadata?: Record<string,
|
|
4752
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4753
4753
|
/**
|
|
4754
4754
|
* ID of the connected account associated with the event.
|
|
4755
4755
|
*/
|
|
@@ -4765,7 +4765,7 @@ export type SeamEvent = {
|
|
|
4765
4765
|
/**
|
|
4766
4766
|
* Custom metadata of the device, present when device_id is provided.
|
|
4767
4767
|
*/
|
|
4768
|
-
device_custom_metadata?: Record<string,
|
|
4768
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4769
4769
|
/**
|
|
4770
4770
|
* ID of the affected device.
|
|
4771
4771
|
*/
|
|
@@ -4807,7 +4807,7 @@ export type SeamEvent = {
|
|
|
4807
4807
|
/**
|
|
4808
4808
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4809
4809
|
*/
|
|
4810
|
-
connected_account_custom_metadata?: Record<string,
|
|
4810
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4811
4811
|
/**
|
|
4812
4812
|
* ID of the connected account associated with the event.
|
|
4813
4813
|
*/
|
|
@@ -4823,7 +4823,7 @@ export type SeamEvent = {
|
|
|
4823
4823
|
/**
|
|
4824
4824
|
* Custom metadata of the device, present when device_id is provided.
|
|
4825
4825
|
*/
|
|
4826
|
-
device_custom_metadata?: Record<string,
|
|
4826
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4827
4827
|
/**
|
|
4828
4828
|
* ID of the affected device.
|
|
4829
4829
|
*/
|
|
@@ -4866,7 +4866,7 @@ export type SeamEvent = {
|
|
|
4866
4866
|
/**
|
|
4867
4867
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4868
4868
|
*/
|
|
4869
|
-
connected_account_custom_metadata?: Record<string,
|
|
4869
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4870
4870
|
/**
|
|
4871
4871
|
* ID of the connected account associated with the event.
|
|
4872
4872
|
*/
|
|
@@ -4882,7 +4882,7 @@ export type SeamEvent = {
|
|
|
4882
4882
|
/**
|
|
4883
4883
|
* Custom metadata of the device, present when device_id is provided.
|
|
4884
4884
|
*/
|
|
4885
|
-
device_custom_metadata?: Record<string,
|
|
4885
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4886
4886
|
/**
|
|
4887
4887
|
* ID of the affected device.
|
|
4888
4888
|
*/
|
|
@@ -4916,7 +4916,7 @@ export type SeamEvent = {
|
|
|
4916
4916
|
/**
|
|
4917
4917
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4918
4918
|
*/
|
|
4919
|
-
connected_account_custom_metadata?: Record<string,
|
|
4919
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4920
4920
|
/**
|
|
4921
4921
|
* ID of the connected account associated with the event.
|
|
4922
4922
|
*/
|
|
@@ -4940,7 +4940,7 @@ export type SeamEvent = {
|
|
|
4940
4940
|
/**
|
|
4941
4941
|
* Custom metadata of the device, present when device_id is provided.
|
|
4942
4942
|
*/
|
|
4943
|
-
device_custom_metadata?: Record<string,
|
|
4943
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4944
4944
|
/**
|
|
4945
4945
|
* ID of the affected device.
|
|
4946
4946
|
*/
|
|
@@ -4986,7 +4986,7 @@ export type SeamEvent = {
|
|
|
4986
4986
|
/**
|
|
4987
4987
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
4988
4988
|
*/
|
|
4989
|
-
connected_account_custom_metadata?: Record<string,
|
|
4989
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4990
4990
|
/**
|
|
4991
4991
|
* ID of the connected account associated with the event.
|
|
4992
4992
|
*/
|
|
@@ -5002,7 +5002,7 @@ export type SeamEvent = {
|
|
|
5002
5002
|
/**
|
|
5003
5003
|
* Custom metadata of the device, present when device_id is provided.
|
|
5004
5004
|
*/
|
|
5005
|
-
device_custom_metadata?: Record<string,
|
|
5005
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5006
5006
|
/**
|
|
5007
5007
|
* ID of the affected device.
|
|
5008
5008
|
*/
|
|
@@ -5052,7 +5052,7 @@ export type SeamEvent = {
|
|
|
5052
5052
|
/**
|
|
5053
5053
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5054
5054
|
*/
|
|
5055
|
-
connected_account_custom_metadata?: Record<string,
|
|
5055
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5056
5056
|
/**
|
|
5057
5057
|
* ID of the connected account associated with the event.
|
|
5058
5058
|
*/
|
|
@@ -5068,7 +5068,7 @@ export type SeamEvent = {
|
|
|
5068
5068
|
/**
|
|
5069
5069
|
* Custom metadata of the device, present when device_id is provided.
|
|
5070
5070
|
*/
|
|
5071
|
-
device_custom_metadata?: Record<string,
|
|
5071
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5072
5072
|
/**
|
|
5073
5073
|
* ID of the affected device.
|
|
5074
5074
|
*/
|
|
@@ -5118,7 +5118,7 @@ export type SeamEvent = {
|
|
|
5118
5118
|
/**
|
|
5119
5119
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5120
5120
|
*/
|
|
5121
|
-
connected_account_custom_metadata?: Record<string,
|
|
5121
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5122
5122
|
/**
|
|
5123
5123
|
* ID of the connected account associated with the event.
|
|
5124
5124
|
*/
|
|
@@ -5142,7 +5142,7 @@ export type SeamEvent = {
|
|
|
5142
5142
|
/**
|
|
5143
5143
|
* Custom metadata of the device, present when device_id is provided.
|
|
5144
5144
|
*/
|
|
5145
|
-
device_custom_metadata?: Record<string,
|
|
5145
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5146
5146
|
/**
|
|
5147
5147
|
* ID of the affected device.
|
|
5148
5148
|
*/
|
|
@@ -5176,7 +5176,7 @@ export type SeamEvent = {
|
|
|
5176
5176
|
/**
|
|
5177
5177
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5178
5178
|
*/
|
|
5179
|
-
connected_account_custom_metadata?: Record<string,
|
|
5179
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5180
5180
|
/**
|
|
5181
5181
|
* ID of the connected account associated with the event.
|
|
5182
5182
|
*/
|
|
@@ -5192,7 +5192,7 @@ export type SeamEvent = {
|
|
|
5192
5192
|
/**
|
|
5193
5193
|
* Custom metadata of the device, present when device_id is provided.
|
|
5194
5194
|
*/
|
|
5195
|
-
device_custom_metadata?: Record<string,
|
|
5195
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5196
5196
|
/**
|
|
5197
5197
|
* ID of the affected device.
|
|
5198
5198
|
*/
|
|
@@ -5226,7 +5226,7 @@ export type SeamEvent = {
|
|
|
5226
5226
|
/**
|
|
5227
5227
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5228
5228
|
*/
|
|
5229
|
-
connected_account_custom_metadata?: Record<string,
|
|
5229
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5230
5230
|
/**
|
|
5231
5231
|
* ID of the connected account associated with the event.
|
|
5232
5232
|
*/
|
|
@@ -5242,7 +5242,7 @@ export type SeamEvent = {
|
|
|
5242
5242
|
/**
|
|
5243
5243
|
* Custom metadata of the device, present when device_id is provided.
|
|
5244
5244
|
*/
|
|
5245
|
-
device_custom_metadata?: Record<string,
|
|
5245
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5246
5246
|
/**
|
|
5247
5247
|
* ID of the affected device.
|
|
5248
5248
|
*/
|
|
@@ -5276,7 +5276,7 @@ export type SeamEvent = {
|
|
|
5276
5276
|
/**
|
|
5277
5277
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5278
5278
|
*/
|
|
5279
|
-
connected_account_custom_metadata?: Record<string,
|
|
5279
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5280
5280
|
/**
|
|
5281
5281
|
* ID of the connected account associated with the event.
|
|
5282
5282
|
*/
|
|
@@ -5292,7 +5292,7 @@ export type SeamEvent = {
|
|
|
5292
5292
|
/**
|
|
5293
5293
|
* Custom metadata of the device, present when device_id is provided.
|
|
5294
5294
|
*/
|
|
5295
|
-
device_custom_metadata?: Record<string,
|
|
5295
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5296
5296
|
/**
|
|
5297
5297
|
* ID of the affected device.
|
|
5298
5298
|
*/
|
|
@@ -5330,7 +5330,7 @@ export type SeamEvent = {
|
|
|
5330
5330
|
/**
|
|
5331
5331
|
* Custom metadata of the connected account, present when connected_account_id is provided.
|
|
5332
5332
|
*/
|
|
5333
|
-
connected_account_custom_metadata?: Record<string,
|
|
5333
|
+
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5334
5334
|
/**
|
|
5335
5335
|
* ID of the connected account associated with the event.
|
|
5336
5336
|
*/
|
|
@@ -5346,7 +5346,7 @@ export type SeamEvent = {
|
|
|
5346
5346
|
/**
|
|
5347
5347
|
* Custom metadata of the device, present when device_id is provided.
|
|
5348
5348
|
*/
|
|
5349
|
-
device_custom_metadata?: Record<string,
|
|
5349
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5350
5350
|
/**
|
|
5351
5351
|
* ID of the affected device.
|
|
5352
5352
|
*/
|
|
@@ -5384,7 +5384,7 @@ export type SeamEvent = {
|
|
|
5384
5384
|
/**
|
|
5385
5385
|
* Custom metadata of the device; present when device_id is provided.
|
|
5386
5386
|
*/
|
|
5387
|
-
device_custom_metadata?: Record<string,
|
|
5387
|
+
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5388
5388
|
/**
|
|
5389
5389
|
* ID of the affected phone device.
|
|
5390
5390
|
*/
|