@seamapi/types 1.278.0 → 1.280.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +678 -147
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1813 -0
- package/lib/seam/connect/models/acs/acs-credential.js +81 -22
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +169 -0
- package/lib/seam/connect/openapi.js +619 -114
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1644 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +107 -28
- package/src/lib/seam/connect/openapi.ts +765 -114
- package/src/lib/seam/connect/route-types.ts +1644 -0
|
@@ -231,12 +231,15 @@ declare const _default: {
|
|
|
231
231
|
type: string;
|
|
232
232
|
};
|
|
233
233
|
acs_credential: {
|
|
234
|
+
description: string;
|
|
234
235
|
properties: {
|
|
235
236
|
access_method: {
|
|
237
|
+
description: string;
|
|
236
238
|
enum: string[];
|
|
237
239
|
type: string;
|
|
238
240
|
};
|
|
239
241
|
acs_credential_id: {
|
|
242
|
+
description: string;
|
|
240
243
|
format: string;
|
|
241
244
|
type: string;
|
|
242
245
|
};
|
|
@@ -245,10 +248,12 @@ declare const _default: {
|
|
|
245
248
|
type: string;
|
|
246
249
|
};
|
|
247
250
|
acs_system_id: {
|
|
251
|
+
description: string;
|
|
248
252
|
format: string;
|
|
249
253
|
type: string;
|
|
250
254
|
};
|
|
251
255
|
acs_user_id: {
|
|
256
|
+
description: string;
|
|
252
257
|
format: string;
|
|
253
258
|
type: string;
|
|
254
259
|
};
|
|
@@ -257,18 +262,22 @@ declare const _default: {
|
|
|
257
262
|
type: string;
|
|
258
263
|
};
|
|
259
264
|
code: {
|
|
265
|
+
description: string;
|
|
260
266
|
nullable: boolean;
|
|
261
267
|
type: string;
|
|
262
268
|
};
|
|
263
269
|
created_at: {
|
|
270
|
+
description: string;
|
|
264
271
|
format: string;
|
|
265
272
|
type: string;
|
|
266
273
|
};
|
|
267
274
|
display_name: {
|
|
275
|
+
description: string;
|
|
268
276
|
minLength: number;
|
|
269
277
|
type: string;
|
|
270
278
|
};
|
|
271
279
|
ends_at: {
|
|
280
|
+
description: string;
|
|
272
281
|
type: string;
|
|
273
282
|
};
|
|
274
283
|
errors: {
|
|
@@ -287,16 +296,19 @@ declare const _default: {
|
|
|
287
296
|
type: string;
|
|
288
297
|
};
|
|
289
298
|
external_type: {
|
|
299
|
+
description: string;
|
|
290
300
|
enum: string[];
|
|
291
301
|
type: string;
|
|
292
302
|
};
|
|
293
303
|
external_type_display_name: {
|
|
304
|
+
description: string;
|
|
294
305
|
type: string;
|
|
295
306
|
};
|
|
296
307
|
is_issued: {
|
|
297
308
|
type: string;
|
|
298
309
|
};
|
|
299
310
|
is_latest_desired_state_synced_with_provider: {
|
|
311
|
+
description: string;
|
|
300
312
|
type: string;
|
|
301
313
|
};
|
|
302
314
|
is_managed: {
|
|
@@ -304,6 +316,7 @@ declare const _default: {
|
|
|
304
316
|
type: string;
|
|
305
317
|
};
|
|
306
318
|
is_multi_phone_sync_credential: {
|
|
319
|
+
description: string;
|
|
307
320
|
type: string;
|
|
308
321
|
};
|
|
309
322
|
issued_at: {
|
|
@@ -312,17 +325,21 @@ declare const _default: {
|
|
|
312
325
|
type: string;
|
|
313
326
|
};
|
|
314
327
|
latest_desired_state_synced_with_provider_at: {
|
|
328
|
+
description: string;
|
|
315
329
|
format: string;
|
|
316
330
|
type: string;
|
|
317
331
|
};
|
|
318
332
|
parent_acs_credential_id: {
|
|
333
|
+
description: string;
|
|
319
334
|
format: string;
|
|
320
335
|
type: string;
|
|
321
336
|
};
|
|
322
337
|
starts_at: {
|
|
338
|
+
description: string;
|
|
323
339
|
type: string;
|
|
324
340
|
};
|
|
325
341
|
visionline_metadata: {
|
|
342
|
+
description: string;
|
|
326
343
|
properties: {
|
|
327
344
|
auto_join: {
|
|
328
345
|
type: string;
|
|
@@ -381,6 +398,7 @@ declare const _default: {
|
|
|
381
398
|
type: string;
|
|
382
399
|
};
|
|
383
400
|
workspace_id: {
|
|
401
|
+
description: string;
|
|
384
402
|
format: string;
|
|
385
403
|
type: string;
|
|
386
404
|
};
|
|
@@ -944,6 +962,7 @@ declare const _default: {
|
|
|
944
962
|
properties?: never;
|
|
945
963
|
type?: never;
|
|
946
964
|
required?: never;
|
|
965
|
+
description?: never;
|
|
947
966
|
oneOf?: never;
|
|
948
967
|
};
|
|
949
968
|
status: {
|
|
@@ -984,6 +1003,7 @@ declare const _default: {
|
|
|
984
1003
|
type: string;
|
|
985
1004
|
nullable?: never;
|
|
986
1005
|
required?: never;
|
|
1006
|
+
description?: never;
|
|
987
1007
|
oneOf?: never;
|
|
988
1008
|
};
|
|
989
1009
|
status: {
|
|
@@ -1026,6 +1046,7 @@ declare const _default: {
|
|
|
1026
1046
|
properties?: never;
|
|
1027
1047
|
type?: never;
|
|
1028
1048
|
required?: never;
|
|
1049
|
+
description?: never;
|
|
1029
1050
|
oneOf?: never;
|
|
1030
1051
|
};
|
|
1031
1052
|
status: {
|
|
@@ -1088,6 +1109,7 @@ declare const _default: {
|
|
|
1088
1109
|
type: string;
|
|
1089
1110
|
};
|
|
1090
1111
|
visionline_metadata: {
|
|
1112
|
+
description: string;
|
|
1091
1113
|
properties: {
|
|
1092
1114
|
cancelled: {
|
|
1093
1115
|
type: string;
|
|
@@ -1147,12 +1169,15 @@ declare const _default: {
|
|
|
1147
1169
|
description: string;
|
|
1148
1170
|
nullable: boolean;
|
|
1149
1171
|
oneOf: {
|
|
1172
|
+
description: string;
|
|
1150
1173
|
properties: {
|
|
1151
1174
|
access_method: {
|
|
1175
|
+
description: string;
|
|
1152
1176
|
enum: string[];
|
|
1153
1177
|
type: string;
|
|
1154
1178
|
};
|
|
1155
1179
|
acs_credential_id: {
|
|
1180
|
+
description: string;
|
|
1156
1181
|
format: string;
|
|
1157
1182
|
type: string;
|
|
1158
1183
|
};
|
|
@@ -1161,10 +1186,12 @@ declare const _default: {
|
|
|
1161
1186
|
type: string;
|
|
1162
1187
|
};
|
|
1163
1188
|
acs_system_id: {
|
|
1189
|
+
description: string;
|
|
1164
1190
|
format: string;
|
|
1165
1191
|
type: string;
|
|
1166
1192
|
};
|
|
1167
1193
|
acs_user_id: {
|
|
1194
|
+
description: string;
|
|
1168
1195
|
format: string;
|
|
1169
1196
|
type: string;
|
|
1170
1197
|
};
|
|
@@ -1173,18 +1200,22 @@ declare const _default: {
|
|
|
1173
1200
|
type: string;
|
|
1174
1201
|
};
|
|
1175
1202
|
code: {
|
|
1203
|
+
description: string;
|
|
1176
1204
|
nullable: boolean;
|
|
1177
1205
|
type: string;
|
|
1178
1206
|
};
|
|
1179
1207
|
created_at: {
|
|
1208
|
+
description: string;
|
|
1180
1209
|
format: string;
|
|
1181
1210
|
type: string;
|
|
1182
1211
|
};
|
|
1183
1212
|
display_name: {
|
|
1213
|
+
description: string;
|
|
1184
1214
|
minLength: number;
|
|
1185
1215
|
type: string;
|
|
1186
1216
|
};
|
|
1187
1217
|
ends_at: {
|
|
1218
|
+
description: string;
|
|
1188
1219
|
type: string;
|
|
1189
1220
|
};
|
|
1190
1221
|
errors: {
|
|
@@ -1203,16 +1234,19 @@ declare const _default: {
|
|
|
1203
1234
|
type: string;
|
|
1204
1235
|
};
|
|
1205
1236
|
external_type: {
|
|
1237
|
+
description: string;
|
|
1206
1238
|
enum: string[];
|
|
1207
1239
|
type: string;
|
|
1208
1240
|
};
|
|
1209
1241
|
external_type_display_name: {
|
|
1242
|
+
description: string;
|
|
1210
1243
|
type: string;
|
|
1211
1244
|
};
|
|
1212
1245
|
is_issued: {
|
|
1213
1246
|
type: string;
|
|
1214
1247
|
};
|
|
1215
1248
|
is_latest_desired_state_synced_with_provider: {
|
|
1249
|
+
description: string;
|
|
1216
1250
|
type: string;
|
|
1217
1251
|
};
|
|
1218
1252
|
is_managed: {
|
|
@@ -1220,6 +1254,7 @@ declare const _default: {
|
|
|
1220
1254
|
type: string;
|
|
1221
1255
|
};
|
|
1222
1256
|
is_multi_phone_sync_credential: {
|
|
1257
|
+
description: string;
|
|
1223
1258
|
type: string;
|
|
1224
1259
|
};
|
|
1225
1260
|
issued_at: {
|
|
@@ -1228,17 +1263,21 @@ declare const _default: {
|
|
|
1228
1263
|
type: string;
|
|
1229
1264
|
};
|
|
1230
1265
|
latest_desired_state_synced_with_provider_at: {
|
|
1266
|
+
description: string;
|
|
1231
1267
|
format: string;
|
|
1232
1268
|
type: string;
|
|
1233
1269
|
};
|
|
1234
1270
|
parent_acs_credential_id: {
|
|
1271
|
+
description: string;
|
|
1235
1272
|
format: string;
|
|
1236
1273
|
type: string;
|
|
1237
1274
|
};
|
|
1238
1275
|
starts_at: {
|
|
1276
|
+
description: string;
|
|
1239
1277
|
type: string;
|
|
1240
1278
|
};
|
|
1241
1279
|
visionline_metadata: {
|
|
1280
|
+
description: string;
|
|
1242
1281
|
properties: {
|
|
1243
1282
|
auto_join: {
|
|
1244
1283
|
type: string;
|
|
@@ -1297,6 +1336,7 @@ declare const _default: {
|
|
|
1297
1336
|
type: string;
|
|
1298
1337
|
};
|
|
1299
1338
|
workspace_id: {
|
|
1339
|
+
description: string;
|
|
1300
1340
|
format: string;
|
|
1301
1341
|
type: string;
|
|
1302
1342
|
};
|
|
@@ -1327,6 +1367,7 @@ declare const _default: {
|
|
|
1327
1367
|
required: string[];
|
|
1328
1368
|
type: string;
|
|
1329
1369
|
nullable?: never;
|
|
1370
|
+
description?: never;
|
|
1330
1371
|
oneOf?: never;
|
|
1331
1372
|
};
|
|
1332
1373
|
status: {
|
|
@@ -1369,6 +1410,7 @@ declare const _default: {
|
|
|
1369
1410
|
properties?: never;
|
|
1370
1411
|
type?: never;
|
|
1371
1412
|
required?: never;
|
|
1413
|
+
description?: never;
|
|
1372
1414
|
oneOf?: never;
|
|
1373
1415
|
};
|
|
1374
1416
|
status: {
|
|
@@ -1399,13 +1441,17 @@ declare const _default: {
|
|
|
1399
1441
|
oneOf?: never;
|
|
1400
1442
|
};
|
|
1401
1443
|
result: {
|
|
1444
|
+
description: string;
|
|
1402
1445
|
oneOf: {
|
|
1446
|
+
description: string;
|
|
1403
1447
|
properties: {
|
|
1404
1448
|
access_method: {
|
|
1449
|
+
description: string;
|
|
1405
1450
|
enum: string[];
|
|
1406
1451
|
type: string;
|
|
1407
1452
|
};
|
|
1408
1453
|
acs_credential_id: {
|
|
1454
|
+
description: string;
|
|
1409
1455
|
format: string;
|
|
1410
1456
|
type: string;
|
|
1411
1457
|
};
|
|
@@ -1414,10 +1460,12 @@ declare const _default: {
|
|
|
1414
1460
|
type: string;
|
|
1415
1461
|
};
|
|
1416
1462
|
acs_system_id: {
|
|
1463
|
+
description: string;
|
|
1417
1464
|
format: string;
|
|
1418
1465
|
type: string;
|
|
1419
1466
|
};
|
|
1420
1467
|
acs_user_id: {
|
|
1468
|
+
description: string;
|
|
1421
1469
|
format: string;
|
|
1422
1470
|
type: string;
|
|
1423
1471
|
};
|
|
@@ -1426,18 +1474,22 @@ declare const _default: {
|
|
|
1426
1474
|
type: string;
|
|
1427
1475
|
};
|
|
1428
1476
|
code: {
|
|
1477
|
+
description: string;
|
|
1429
1478
|
nullable: boolean;
|
|
1430
1479
|
type: string;
|
|
1431
1480
|
};
|
|
1432
1481
|
created_at: {
|
|
1482
|
+
description: string;
|
|
1433
1483
|
format: string;
|
|
1434
1484
|
type: string;
|
|
1435
1485
|
};
|
|
1436
1486
|
display_name: {
|
|
1487
|
+
description: string;
|
|
1437
1488
|
minLength: number;
|
|
1438
1489
|
type: string;
|
|
1439
1490
|
};
|
|
1440
1491
|
ends_at: {
|
|
1492
|
+
description: string;
|
|
1441
1493
|
type: string;
|
|
1442
1494
|
};
|
|
1443
1495
|
errors: {
|
|
@@ -1456,16 +1508,19 @@ declare const _default: {
|
|
|
1456
1508
|
type: string;
|
|
1457
1509
|
};
|
|
1458
1510
|
external_type: {
|
|
1511
|
+
description: string;
|
|
1459
1512
|
enum: string[];
|
|
1460
1513
|
type: string;
|
|
1461
1514
|
};
|
|
1462
1515
|
external_type_display_name: {
|
|
1516
|
+
description: string;
|
|
1463
1517
|
type: string;
|
|
1464
1518
|
};
|
|
1465
1519
|
is_issued: {
|
|
1466
1520
|
type: string;
|
|
1467
1521
|
};
|
|
1468
1522
|
is_latest_desired_state_synced_with_provider: {
|
|
1523
|
+
description: string;
|
|
1469
1524
|
type: string;
|
|
1470
1525
|
};
|
|
1471
1526
|
is_managed: {
|
|
@@ -1473,6 +1528,7 @@ declare const _default: {
|
|
|
1473
1528
|
type: string;
|
|
1474
1529
|
};
|
|
1475
1530
|
is_multi_phone_sync_credential: {
|
|
1531
|
+
description: string;
|
|
1476
1532
|
type: string;
|
|
1477
1533
|
};
|
|
1478
1534
|
issued_at: {
|
|
@@ -1481,17 +1537,21 @@ declare const _default: {
|
|
|
1481
1537
|
type: string;
|
|
1482
1538
|
};
|
|
1483
1539
|
latest_desired_state_synced_with_provider_at: {
|
|
1540
|
+
description: string;
|
|
1484
1541
|
format: string;
|
|
1485
1542
|
type: string;
|
|
1486
1543
|
};
|
|
1487
1544
|
parent_acs_credential_id: {
|
|
1545
|
+
description: string;
|
|
1488
1546
|
format: string;
|
|
1489
1547
|
type: string;
|
|
1490
1548
|
};
|
|
1491
1549
|
starts_at: {
|
|
1550
|
+
description: string;
|
|
1492
1551
|
type: string;
|
|
1493
1552
|
};
|
|
1494
1553
|
visionline_metadata: {
|
|
1554
|
+
description: string;
|
|
1495
1555
|
properties: {
|
|
1496
1556
|
auto_join: {
|
|
1497
1557
|
type: string;
|
|
@@ -1550,6 +1610,7 @@ declare const _default: {
|
|
|
1550
1610
|
type: string;
|
|
1551
1611
|
};
|
|
1552
1612
|
workspace_id: {
|
|
1613
|
+
description: string;
|
|
1553
1614
|
format: string;
|
|
1554
1615
|
type: string;
|
|
1555
1616
|
};
|
|
@@ -1606,6 +1667,7 @@ declare const _default: {
|
|
|
1606
1667
|
properties?: never;
|
|
1607
1668
|
type?: never;
|
|
1608
1669
|
required?: never;
|
|
1670
|
+
description?: never;
|
|
1609
1671
|
oneOf?: never;
|
|
1610
1672
|
};
|
|
1611
1673
|
status: {
|
|
@@ -1639,6 +1701,7 @@ declare const _default: {
|
|
|
1639
1701
|
properties?: never;
|
|
1640
1702
|
type?: never;
|
|
1641
1703
|
required?: never;
|
|
1704
|
+
description?: never;
|
|
1642
1705
|
oneOf?: never;
|
|
1643
1706
|
};
|
|
1644
1707
|
status: {
|
|
@@ -1679,6 +1742,7 @@ declare const _default: {
|
|
|
1679
1742
|
type: string;
|
|
1680
1743
|
nullable?: never;
|
|
1681
1744
|
required?: never;
|
|
1745
|
+
description?: never;
|
|
1682
1746
|
oneOf?: never;
|
|
1683
1747
|
};
|
|
1684
1748
|
status: {
|
|
@@ -1721,6 +1785,7 @@ declare const _default: {
|
|
|
1721
1785
|
properties?: never;
|
|
1722
1786
|
type?: never;
|
|
1723
1787
|
required?: never;
|
|
1788
|
+
description?: never;
|
|
1724
1789
|
oneOf?: never;
|
|
1725
1790
|
};
|
|
1726
1791
|
status: {
|
|
@@ -1761,6 +1826,7 @@ declare const _default: {
|
|
|
1761
1826
|
type: string;
|
|
1762
1827
|
nullable?: never;
|
|
1763
1828
|
required?: never;
|
|
1829
|
+
description?: never;
|
|
1764
1830
|
oneOf?: never;
|
|
1765
1831
|
};
|
|
1766
1832
|
status: {
|
|
@@ -1801,6 +1867,7 @@ declare const _default: {
|
|
|
1801
1867
|
type: string;
|
|
1802
1868
|
nullable?: never;
|
|
1803
1869
|
required?: never;
|
|
1870
|
+
description?: never;
|
|
1804
1871
|
oneOf?: never;
|
|
1805
1872
|
};
|
|
1806
1873
|
status: {
|
|
@@ -7525,6 +7592,7 @@ declare const _default: {
|
|
|
7525
7592
|
};
|
|
7526
7593
|
'/acs/credentials/assign': {
|
|
7527
7594
|
patch: {
|
|
7595
|
+
description: string;
|
|
7528
7596
|
operationId: string;
|
|
7529
7597
|
requestBody: {
|
|
7530
7598
|
content: {
|
|
@@ -7532,10 +7600,12 @@ declare const _default: {
|
|
|
7532
7600
|
schema: {
|
|
7533
7601
|
properties: {
|
|
7534
7602
|
acs_credential_id: {
|
|
7603
|
+
description: string;
|
|
7535
7604
|
format: string;
|
|
7536
7605
|
type: string;
|
|
7537
7606
|
};
|
|
7538
7607
|
acs_user_id: {
|
|
7608
|
+
description: string;
|
|
7539
7609
|
format: string;
|
|
7540
7610
|
type: string;
|
|
7541
7611
|
};
|
|
@@ -7590,8 +7660,10 @@ declare const _default: {
|
|
|
7590
7660
|
tags: string[];
|
|
7591
7661
|
'x-fern-ignore': boolean;
|
|
7592
7662
|
'x-response-key': null;
|
|
7663
|
+
'x-title': string;
|
|
7593
7664
|
};
|
|
7594
7665
|
post: {
|
|
7666
|
+
description: string;
|
|
7595
7667
|
operationId: string;
|
|
7596
7668
|
requestBody: {
|
|
7597
7669
|
content: {
|
|
@@ -7599,10 +7671,12 @@ declare const _default: {
|
|
|
7599
7671
|
schema: {
|
|
7600
7672
|
properties: {
|
|
7601
7673
|
acs_credential_id: {
|
|
7674
|
+
description: string;
|
|
7602
7675
|
format: string;
|
|
7603
7676
|
type: string;
|
|
7604
7677
|
};
|
|
7605
7678
|
acs_user_id: {
|
|
7679
|
+
description: string;
|
|
7606
7680
|
format: string;
|
|
7607
7681
|
type: string;
|
|
7608
7682
|
};
|
|
@@ -7658,10 +7732,12 @@ declare const _default: {
|
|
|
7658
7732
|
'x-fern-sdk-group-name': string[];
|
|
7659
7733
|
'x-fern-sdk-method-name': string;
|
|
7660
7734
|
'x-response-key': null;
|
|
7735
|
+
'x-title': string;
|
|
7661
7736
|
};
|
|
7662
7737
|
};
|
|
7663
7738
|
'/acs/credentials/create': {
|
|
7664
7739
|
post: {
|
|
7740
|
+
description: string;
|
|
7665
7741
|
operationId: string;
|
|
7666
7742
|
requestBody: {
|
|
7667
7743
|
content: {
|
|
@@ -7669,15 +7745,18 @@ declare const _default: {
|
|
|
7669
7745
|
schema: {
|
|
7670
7746
|
properties: {
|
|
7671
7747
|
access_method: {
|
|
7748
|
+
description: string;
|
|
7672
7749
|
enum: string[];
|
|
7673
7750
|
type: string;
|
|
7674
7751
|
};
|
|
7675
7752
|
acs_user_id: {
|
|
7753
|
+
description: string;
|
|
7676
7754
|
format: string;
|
|
7677
7755
|
type: string;
|
|
7678
7756
|
};
|
|
7679
7757
|
allowed_acs_entrance_ids: {
|
|
7680
7758
|
default: never[];
|
|
7759
|
+
description: string;
|
|
7681
7760
|
items: {
|
|
7682
7761
|
format: string;
|
|
7683
7762
|
type: string;
|
|
@@ -7685,26 +7764,32 @@ declare const _default: {
|
|
|
7685
7764
|
type: string;
|
|
7686
7765
|
};
|
|
7687
7766
|
code: {
|
|
7767
|
+
description: string;
|
|
7688
7768
|
pattern: string;
|
|
7689
7769
|
type: string;
|
|
7690
7770
|
};
|
|
7691
7771
|
credential_manager_acs_system_id: {
|
|
7772
|
+
description: string;
|
|
7692
7773
|
format: string;
|
|
7693
7774
|
type: string;
|
|
7694
7775
|
};
|
|
7695
7776
|
ends_at: {
|
|
7777
|
+
description: string;
|
|
7696
7778
|
format: string;
|
|
7697
7779
|
type: string;
|
|
7698
7780
|
};
|
|
7699
7781
|
is_multi_phone_sync_credential: {
|
|
7700
7782
|
default: boolean;
|
|
7783
|
+
description: string;
|
|
7701
7784
|
type: string;
|
|
7702
7785
|
};
|
|
7703
7786
|
starts_at: {
|
|
7787
|
+
description: string;
|
|
7704
7788
|
format: string;
|
|
7705
7789
|
type: string;
|
|
7706
7790
|
};
|
|
7707
7791
|
visionline_metadata: {
|
|
7792
|
+
description: string;
|
|
7708
7793
|
properties: {
|
|
7709
7794
|
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
7710
7795
|
format: string;
|
|
@@ -7793,10 +7878,12 @@ declare const _default: {
|
|
|
7793
7878
|
'x-fern-sdk-method-name': string;
|
|
7794
7879
|
'x-fern-sdk-return-value': string;
|
|
7795
7880
|
'x-response-key': string;
|
|
7881
|
+
'x-title': string;
|
|
7796
7882
|
};
|
|
7797
7883
|
};
|
|
7798
7884
|
'/acs/credentials/delete': {
|
|
7799
7885
|
post: {
|
|
7886
|
+
description: string;
|
|
7800
7887
|
operationId: string;
|
|
7801
7888
|
requestBody: {
|
|
7802
7889
|
content: {
|
|
@@ -7804,6 +7891,7 @@ declare const _default: {
|
|
|
7804
7891
|
schema: {
|
|
7805
7892
|
properties: {
|
|
7806
7893
|
acs_credential_id: {
|
|
7894
|
+
description: string;
|
|
7807
7895
|
format: string;
|
|
7808
7896
|
type: string;
|
|
7809
7897
|
};
|
|
@@ -7856,10 +7944,12 @@ declare const _default: {
|
|
|
7856
7944
|
'x-fern-sdk-group-name': string[];
|
|
7857
7945
|
'x-fern-sdk-method-name': string;
|
|
7858
7946
|
'x-response-key': null;
|
|
7947
|
+
'x-title': string;
|
|
7859
7948
|
};
|
|
7860
7949
|
};
|
|
7861
7950
|
'/acs/credentials/get': {
|
|
7862
7951
|
post: {
|
|
7952
|
+
description: string;
|
|
7863
7953
|
operationId: string;
|
|
7864
7954
|
requestBody: {
|
|
7865
7955
|
content: {
|
|
@@ -7867,6 +7957,7 @@ declare const _default: {
|
|
|
7867
7957
|
schema: {
|
|
7868
7958
|
properties: {
|
|
7869
7959
|
acs_credential_id: {
|
|
7960
|
+
description: string;
|
|
7870
7961
|
format: string;
|
|
7871
7962
|
type: string;
|
|
7872
7963
|
};
|
|
@@ -7923,10 +8014,12 @@ declare const _default: {
|
|
|
7923
8014
|
'x-fern-sdk-method-name': string;
|
|
7924
8015
|
'x-fern-sdk-return-value': string;
|
|
7925
8016
|
'x-response-key': string;
|
|
8017
|
+
'x-title': string;
|
|
7926
8018
|
};
|
|
7927
8019
|
};
|
|
7928
8020
|
'/acs/credentials/list': {
|
|
7929
8021
|
post: {
|
|
8022
|
+
description: string;
|
|
7930
8023
|
operationId: string;
|
|
7931
8024
|
requestBody: {
|
|
7932
8025
|
content: {
|
|
@@ -7936,6 +8029,7 @@ declare const _default: {
|
|
|
7936
8029
|
oneOf: ({
|
|
7937
8030
|
properties: {
|
|
7938
8031
|
acs_user_id: {
|
|
8032
|
+
description: string;
|
|
7939
8033
|
format: string;
|
|
7940
8034
|
type: string;
|
|
7941
8035
|
};
|
|
@@ -7947,6 +8041,7 @@ declare const _default: {
|
|
|
7947
8041
|
} | {
|
|
7948
8042
|
properties: {
|
|
7949
8043
|
acs_system_id: {
|
|
8044
|
+
description: string;
|
|
7950
8045
|
format: string;
|
|
7951
8046
|
type: string;
|
|
7952
8047
|
};
|
|
@@ -7958,10 +8053,12 @@ declare const _default: {
|
|
|
7958
8053
|
} | {
|
|
7959
8054
|
properties: {
|
|
7960
8055
|
acs_system_id: {
|
|
8056
|
+
description: string;
|
|
7961
8057
|
format: string;
|
|
7962
8058
|
type: string;
|
|
7963
8059
|
};
|
|
7964
8060
|
acs_user_id: {
|
|
8061
|
+
description: string;
|
|
7965
8062
|
format: string;
|
|
7966
8063
|
type: string;
|
|
7967
8064
|
};
|
|
@@ -7972,6 +8069,7 @@ declare const _default: {
|
|
|
7972
8069
|
} | {
|
|
7973
8070
|
properties: {
|
|
7974
8071
|
user_identity_id: {
|
|
8072
|
+
description: string;
|
|
7975
8073
|
format: string;
|
|
7976
8074
|
type: string;
|
|
7977
8075
|
};
|
|
@@ -7986,14 +8084,17 @@ declare const _default: {
|
|
|
7986
8084
|
} | {
|
|
7987
8085
|
properties: {
|
|
7988
8086
|
created_before: {
|
|
8087
|
+
description: string;
|
|
7989
8088
|
format: string;
|
|
7990
8089
|
type: string;
|
|
7991
8090
|
};
|
|
7992
8091
|
is_multi_phone_sync_credential: {
|
|
8092
|
+
description: string;
|
|
7993
8093
|
type: string;
|
|
7994
8094
|
};
|
|
7995
8095
|
limit: {
|
|
7996
8096
|
default: number;
|
|
8097
|
+
description: string;
|
|
7997
8098
|
format: string;
|
|
7998
8099
|
type: string;
|
|
7999
8100
|
};
|
|
@@ -8062,10 +8163,12 @@ declare const _default: {
|
|
|
8062
8163
|
'x-fern-sdk-method-name': string;
|
|
8063
8164
|
'x-fern-sdk-return-value': string;
|
|
8064
8165
|
'x-response-key': string;
|
|
8166
|
+
'x-title': string;
|
|
8065
8167
|
};
|
|
8066
8168
|
};
|
|
8067
8169
|
'/acs/credentials/list_accessible_entrances': {
|
|
8068
8170
|
post: {
|
|
8171
|
+
description: string;
|
|
8069
8172
|
operationId: string;
|
|
8070
8173
|
requestBody: {
|
|
8071
8174
|
content: {
|
|
@@ -8073,6 +8176,7 @@ declare const _default: {
|
|
|
8073
8176
|
schema: {
|
|
8074
8177
|
properties: {
|
|
8075
8178
|
acs_credential_id: {
|
|
8179
|
+
description: string;
|
|
8076
8180
|
format: string;
|
|
8077
8181
|
type: string;
|
|
8078
8182
|
};
|
|
@@ -8132,10 +8236,12 @@ declare const _default: {
|
|
|
8132
8236
|
'x-fern-sdk-method-name': string;
|
|
8133
8237
|
'x-fern-sdk-return-value': string;
|
|
8134
8238
|
'x-response-key': string;
|
|
8239
|
+
'x-title': string;
|
|
8135
8240
|
};
|
|
8136
8241
|
};
|
|
8137
8242
|
'/acs/credentials/unassign': {
|
|
8138
8243
|
patch: {
|
|
8244
|
+
description: string;
|
|
8139
8245
|
operationId: string;
|
|
8140
8246
|
requestBody: {
|
|
8141
8247
|
content: {
|
|
@@ -8143,10 +8249,12 @@ declare const _default: {
|
|
|
8143
8249
|
schema: {
|
|
8144
8250
|
properties: {
|
|
8145
8251
|
acs_credential_id: {
|
|
8252
|
+
description: string;
|
|
8146
8253
|
format: string;
|
|
8147
8254
|
type: string;
|
|
8148
8255
|
};
|
|
8149
8256
|
acs_user_id: {
|
|
8257
|
+
description: string;
|
|
8150
8258
|
format: string;
|
|
8151
8259
|
type: string;
|
|
8152
8260
|
};
|
|
@@ -8201,8 +8309,10 @@ declare const _default: {
|
|
|
8201
8309
|
tags: string[];
|
|
8202
8310
|
'x-fern-ignore': boolean;
|
|
8203
8311
|
'x-response-key': null;
|
|
8312
|
+
'x-title': string;
|
|
8204
8313
|
};
|
|
8205
8314
|
post: {
|
|
8315
|
+
description: string;
|
|
8206
8316
|
operationId: string;
|
|
8207
8317
|
requestBody: {
|
|
8208
8318
|
content: {
|
|
@@ -8210,10 +8320,12 @@ declare const _default: {
|
|
|
8210
8320
|
schema: {
|
|
8211
8321
|
properties: {
|
|
8212
8322
|
acs_credential_id: {
|
|
8323
|
+
description: string;
|
|
8213
8324
|
format: string;
|
|
8214
8325
|
type: string;
|
|
8215
8326
|
};
|
|
8216
8327
|
acs_user_id: {
|
|
8328
|
+
description: string;
|
|
8217
8329
|
format: string;
|
|
8218
8330
|
type: string;
|
|
8219
8331
|
};
|
|
@@ -8269,10 +8381,12 @@ declare const _default: {
|
|
|
8269
8381
|
'x-fern-sdk-group-name': string[];
|
|
8270
8382
|
'x-fern-sdk-method-name': string;
|
|
8271
8383
|
'x-response-key': null;
|
|
8384
|
+
'x-title': string;
|
|
8272
8385
|
};
|
|
8273
8386
|
};
|
|
8274
8387
|
'/acs/credentials/unmanaged/get': {
|
|
8275
8388
|
post: {
|
|
8389
|
+
description: string;
|
|
8276
8390
|
operationId: string;
|
|
8277
8391
|
requestBody: {
|
|
8278
8392
|
content: {
|
|
@@ -8280,6 +8394,7 @@ declare const _default: {
|
|
|
8280
8394
|
schema: {
|
|
8281
8395
|
properties: {
|
|
8282
8396
|
acs_credential_id: {
|
|
8397
|
+
description: string;
|
|
8283
8398
|
format: string;
|
|
8284
8399
|
type: string;
|
|
8285
8400
|
};
|
|
@@ -8297,12 +8412,15 @@ declare const _default: {
|
|
|
8297
8412
|
schema: {
|
|
8298
8413
|
properties: {
|
|
8299
8414
|
acs_credential: {
|
|
8415
|
+
description: string;
|
|
8300
8416
|
properties: {
|
|
8301
8417
|
access_method: {
|
|
8418
|
+
description: string;
|
|
8302
8419
|
enum: string[];
|
|
8303
8420
|
type: string;
|
|
8304
8421
|
};
|
|
8305
8422
|
acs_credential_id: {
|
|
8423
|
+
description: string;
|
|
8306
8424
|
format: string;
|
|
8307
8425
|
type: string;
|
|
8308
8426
|
};
|
|
@@ -8311,10 +8429,12 @@ declare const _default: {
|
|
|
8311
8429
|
type: string;
|
|
8312
8430
|
};
|
|
8313
8431
|
acs_system_id: {
|
|
8432
|
+
description: string;
|
|
8314
8433
|
format: string;
|
|
8315
8434
|
type: string;
|
|
8316
8435
|
};
|
|
8317
8436
|
acs_user_id: {
|
|
8437
|
+
description: string;
|
|
8318
8438
|
format: string;
|
|
8319
8439
|
type: string;
|
|
8320
8440
|
};
|
|
@@ -8323,18 +8443,22 @@ declare const _default: {
|
|
|
8323
8443
|
type: string;
|
|
8324
8444
|
};
|
|
8325
8445
|
code: {
|
|
8446
|
+
description: string;
|
|
8326
8447
|
nullable: boolean;
|
|
8327
8448
|
type: string;
|
|
8328
8449
|
};
|
|
8329
8450
|
created_at: {
|
|
8451
|
+
description: string;
|
|
8330
8452
|
format: string;
|
|
8331
8453
|
type: string;
|
|
8332
8454
|
};
|
|
8333
8455
|
display_name: {
|
|
8456
|
+
description: string;
|
|
8334
8457
|
minLength: number;
|
|
8335
8458
|
type: string;
|
|
8336
8459
|
};
|
|
8337
8460
|
ends_at: {
|
|
8461
|
+
description: string;
|
|
8338
8462
|
type: string;
|
|
8339
8463
|
};
|
|
8340
8464
|
errors: {
|
|
@@ -8353,16 +8477,19 @@ declare const _default: {
|
|
|
8353
8477
|
type: string;
|
|
8354
8478
|
};
|
|
8355
8479
|
external_type: {
|
|
8480
|
+
description: string;
|
|
8356
8481
|
enum: string[];
|
|
8357
8482
|
type: string;
|
|
8358
8483
|
};
|
|
8359
8484
|
external_type_display_name: {
|
|
8485
|
+
description: string;
|
|
8360
8486
|
type: string;
|
|
8361
8487
|
};
|
|
8362
8488
|
is_issued: {
|
|
8363
8489
|
type: string;
|
|
8364
8490
|
};
|
|
8365
8491
|
is_latest_desired_state_synced_with_provider: {
|
|
8492
|
+
description: string;
|
|
8366
8493
|
type: string;
|
|
8367
8494
|
};
|
|
8368
8495
|
is_managed: {
|
|
@@ -8370,6 +8497,7 @@ declare const _default: {
|
|
|
8370
8497
|
type: string;
|
|
8371
8498
|
};
|
|
8372
8499
|
is_multi_phone_sync_credential: {
|
|
8500
|
+
description: string;
|
|
8373
8501
|
type: string;
|
|
8374
8502
|
};
|
|
8375
8503
|
issued_at: {
|
|
@@ -8378,17 +8506,21 @@ declare const _default: {
|
|
|
8378
8506
|
type: string;
|
|
8379
8507
|
};
|
|
8380
8508
|
latest_desired_state_synced_with_provider_at: {
|
|
8509
|
+
description: string;
|
|
8381
8510
|
format: string;
|
|
8382
8511
|
type: string;
|
|
8383
8512
|
};
|
|
8384
8513
|
parent_acs_credential_id: {
|
|
8514
|
+
description: string;
|
|
8385
8515
|
format: string;
|
|
8386
8516
|
type: string;
|
|
8387
8517
|
};
|
|
8388
8518
|
starts_at: {
|
|
8519
|
+
description: string;
|
|
8389
8520
|
type: string;
|
|
8390
8521
|
};
|
|
8391
8522
|
visionline_metadata: {
|
|
8523
|
+
description: string;
|
|
8392
8524
|
properties: {
|
|
8393
8525
|
auto_join: {
|
|
8394
8526
|
type: string;
|
|
@@ -8447,6 +8579,7 @@ declare const _default: {
|
|
|
8447
8579
|
type: string;
|
|
8448
8580
|
};
|
|
8449
8581
|
workspace_id: {
|
|
8582
|
+
description: string;
|
|
8450
8583
|
format: string;
|
|
8451
8584
|
type: string;
|
|
8452
8585
|
};
|
|
@@ -8491,10 +8624,12 @@ declare const _default: {
|
|
|
8491
8624
|
'x-fern-sdk-method-name': string;
|
|
8492
8625
|
'x-fern-sdk-return-value': string;
|
|
8493
8626
|
'x-response-key': string;
|
|
8627
|
+
'x-title': string;
|
|
8494
8628
|
};
|
|
8495
8629
|
};
|
|
8496
8630
|
'/acs/credentials/unmanaged/list': {
|
|
8497
8631
|
post: {
|
|
8632
|
+
description: string;
|
|
8498
8633
|
operationId: string;
|
|
8499
8634
|
requestBody: {
|
|
8500
8635
|
content: {
|
|
@@ -8503,6 +8638,7 @@ declare const _default: {
|
|
|
8503
8638
|
oneOf: ({
|
|
8504
8639
|
properties: {
|
|
8505
8640
|
acs_user_id: {
|
|
8641
|
+
description: string;
|
|
8506
8642
|
format: string;
|
|
8507
8643
|
type: string;
|
|
8508
8644
|
};
|
|
@@ -8514,6 +8650,7 @@ declare const _default: {
|
|
|
8514
8650
|
} | {
|
|
8515
8651
|
properties: {
|
|
8516
8652
|
acs_system_id: {
|
|
8653
|
+
description: string;
|
|
8517
8654
|
format: string;
|
|
8518
8655
|
type: string;
|
|
8519
8656
|
};
|
|
@@ -8525,10 +8662,12 @@ declare const _default: {
|
|
|
8525
8662
|
} | {
|
|
8526
8663
|
properties: {
|
|
8527
8664
|
acs_system_id: {
|
|
8665
|
+
description: string;
|
|
8528
8666
|
format: string;
|
|
8529
8667
|
type: string;
|
|
8530
8668
|
};
|
|
8531
8669
|
acs_user_id: {
|
|
8670
|
+
description: string;
|
|
8532
8671
|
format: string;
|
|
8533
8672
|
type: string;
|
|
8534
8673
|
};
|
|
@@ -8539,6 +8678,7 @@ declare const _default: {
|
|
|
8539
8678
|
} | {
|
|
8540
8679
|
properties: {
|
|
8541
8680
|
user_identity_id: {
|
|
8681
|
+
description: string;
|
|
8542
8682
|
format: string;
|
|
8543
8683
|
type: string;
|
|
8544
8684
|
};
|
|
@@ -8560,12 +8700,15 @@ declare const _default: {
|
|
|
8560
8700
|
properties: {
|
|
8561
8701
|
acs_credentials: {
|
|
8562
8702
|
items: {
|
|
8703
|
+
description: string;
|
|
8563
8704
|
properties: {
|
|
8564
8705
|
access_method: {
|
|
8706
|
+
description: string;
|
|
8565
8707
|
enum: string[];
|
|
8566
8708
|
type: string;
|
|
8567
8709
|
};
|
|
8568
8710
|
acs_credential_id: {
|
|
8711
|
+
description: string;
|
|
8569
8712
|
format: string;
|
|
8570
8713
|
type: string;
|
|
8571
8714
|
};
|
|
@@ -8574,10 +8717,12 @@ declare const _default: {
|
|
|
8574
8717
|
type: string;
|
|
8575
8718
|
};
|
|
8576
8719
|
acs_system_id: {
|
|
8720
|
+
description: string;
|
|
8577
8721
|
format: string;
|
|
8578
8722
|
type: string;
|
|
8579
8723
|
};
|
|
8580
8724
|
acs_user_id: {
|
|
8725
|
+
description: string;
|
|
8581
8726
|
format: string;
|
|
8582
8727
|
type: string;
|
|
8583
8728
|
};
|
|
@@ -8586,18 +8731,22 @@ declare const _default: {
|
|
|
8586
8731
|
type: string;
|
|
8587
8732
|
};
|
|
8588
8733
|
code: {
|
|
8734
|
+
description: string;
|
|
8589
8735
|
nullable: boolean;
|
|
8590
8736
|
type: string;
|
|
8591
8737
|
};
|
|
8592
8738
|
created_at: {
|
|
8739
|
+
description: string;
|
|
8593
8740
|
format: string;
|
|
8594
8741
|
type: string;
|
|
8595
8742
|
};
|
|
8596
8743
|
display_name: {
|
|
8744
|
+
description: string;
|
|
8597
8745
|
minLength: number;
|
|
8598
8746
|
type: string;
|
|
8599
8747
|
};
|
|
8600
8748
|
ends_at: {
|
|
8749
|
+
description: string;
|
|
8601
8750
|
type: string;
|
|
8602
8751
|
};
|
|
8603
8752
|
errors: {
|
|
@@ -8616,16 +8765,19 @@ declare const _default: {
|
|
|
8616
8765
|
type: string;
|
|
8617
8766
|
};
|
|
8618
8767
|
external_type: {
|
|
8768
|
+
description: string;
|
|
8619
8769
|
enum: string[];
|
|
8620
8770
|
type: string;
|
|
8621
8771
|
};
|
|
8622
8772
|
external_type_display_name: {
|
|
8773
|
+
description: string;
|
|
8623
8774
|
type: string;
|
|
8624
8775
|
};
|
|
8625
8776
|
is_issued: {
|
|
8626
8777
|
type: string;
|
|
8627
8778
|
};
|
|
8628
8779
|
is_latest_desired_state_synced_with_provider: {
|
|
8780
|
+
description: string;
|
|
8629
8781
|
type: string;
|
|
8630
8782
|
};
|
|
8631
8783
|
is_managed: {
|
|
@@ -8633,6 +8785,7 @@ declare const _default: {
|
|
|
8633
8785
|
type: string;
|
|
8634
8786
|
};
|
|
8635
8787
|
is_multi_phone_sync_credential: {
|
|
8788
|
+
description: string;
|
|
8636
8789
|
type: string;
|
|
8637
8790
|
};
|
|
8638
8791
|
issued_at: {
|
|
@@ -8641,17 +8794,21 @@ declare const _default: {
|
|
|
8641
8794
|
type: string;
|
|
8642
8795
|
};
|
|
8643
8796
|
latest_desired_state_synced_with_provider_at: {
|
|
8797
|
+
description: string;
|
|
8644
8798
|
format: string;
|
|
8645
8799
|
type: string;
|
|
8646
8800
|
};
|
|
8647
8801
|
parent_acs_credential_id: {
|
|
8802
|
+
description: string;
|
|
8648
8803
|
format: string;
|
|
8649
8804
|
type: string;
|
|
8650
8805
|
};
|
|
8651
8806
|
starts_at: {
|
|
8807
|
+
description: string;
|
|
8652
8808
|
type: string;
|
|
8653
8809
|
};
|
|
8654
8810
|
visionline_metadata: {
|
|
8811
|
+
description: string;
|
|
8655
8812
|
properties: {
|
|
8656
8813
|
auto_join: {
|
|
8657
8814
|
type: string;
|
|
@@ -8710,6 +8867,7 @@ declare const _default: {
|
|
|
8710
8867
|
type: string;
|
|
8711
8868
|
};
|
|
8712
8869
|
workspace_id: {
|
|
8870
|
+
description: string;
|
|
8713
8871
|
format: string;
|
|
8714
8872
|
type: string;
|
|
8715
8873
|
};
|
|
@@ -8756,10 +8914,12 @@ declare const _default: {
|
|
|
8756
8914
|
'x-fern-sdk-method-name': string;
|
|
8757
8915
|
'x-fern-sdk-return-value': string;
|
|
8758
8916
|
'x-response-key': string;
|
|
8917
|
+
'x-title': string;
|
|
8759
8918
|
};
|
|
8760
8919
|
};
|
|
8761
8920
|
'/acs/credentials/update': {
|
|
8762
8921
|
patch: {
|
|
8922
|
+
description: string;
|
|
8763
8923
|
operationId: string;
|
|
8764
8924
|
requestBody: {
|
|
8765
8925
|
content: {
|
|
@@ -8767,13 +8927,16 @@ declare const _default: {
|
|
|
8767
8927
|
schema: {
|
|
8768
8928
|
properties: {
|
|
8769
8929
|
acs_credential_id: {
|
|
8930
|
+
description: string;
|
|
8770
8931
|
type: string;
|
|
8771
8932
|
};
|
|
8772
8933
|
code: {
|
|
8934
|
+
description: string;
|
|
8773
8935
|
pattern: string;
|
|
8774
8936
|
type: string;
|
|
8775
8937
|
};
|
|
8776
8938
|
ends_at: {
|
|
8939
|
+
description: string;
|
|
8777
8940
|
format: string;
|
|
8778
8941
|
type: string;
|
|
8779
8942
|
};
|
|
@@ -8828,8 +8991,10 @@ declare const _default: {
|
|
|
8828
8991
|
tags: string[];
|
|
8829
8992
|
'x-fern-ignore': boolean;
|
|
8830
8993
|
'x-response-key': null;
|
|
8994
|
+
'x-title': string;
|
|
8831
8995
|
};
|
|
8832
8996
|
post: {
|
|
8997
|
+
description: string;
|
|
8833
8998
|
operationId: string;
|
|
8834
8999
|
requestBody: {
|
|
8835
9000
|
content: {
|
|
@@ -8837,13 +9002,16 @@ declare const _default: {
|
|
|
8837
9002
|
schema: {
|
|
8838
9003
|
properties: {
|
|
8839
9004
|
acs_credential_id: {
|
|
9005
|
+
description: string;
|
|
8840
9006
|
type: string;
|
|
8841
9007
|
};
|
|
8842
9008
|
code: {
|
|
9009
|
+
description: string;
|
|
8843
9010
|
pattern: string;
|
|
8844
9011
|
type: string;
|
|
8845
9012
|
};
|
|
8846
9013
|
ends_at: {
|
|
9014
|
+
description: string;
|
|
8847
9015
|
format: string;
|
|
8848
9016
|
type: string;
|
|
8849
9017
|
};
|
|
@@ -8899,6 +9067,7 @@ declare const _default: {
|
|
|
8899
9067
|
'x-fern-sdk-group-name': string[];
|
|
8900
9068
|
'x-fern-sdk-method-name': string;
|
|
8901
9069
|
'x-response-key': null;
|
|
9070
|
+
'x-title': string;
|
|
8902
9071
|
};
|
|
8903
9072
|
};
|
|
8904
9073
|
'/acs/encoders/encode_card': {
|