@seamapi/types 1.294.1 → 1.296.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 +760 -50
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3342 -298
- package/lib/seam/connect/models/acs/acs-credential.d.ts +264 -24
- package/lib/seam/connect/models/acs/acs-credential.js +59 -6
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +2 -1
- package/lib/seam/connect/models/acs/acs-encoder.js +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +516 -84
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +226 -36
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +290 -48
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +115 -45
- package/lib/seam/connect/openapi.js +721 -42
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2496 -93
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +80 -12
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +851 -42
- package/src/lib/seam/connect/route-types.ts +3338 -488
|
@@ -281,6 +281,7 @@ declare const _default: {
|
|
|
281
281
|
type: string;
|
|
282
282
|
};
|
|
283
283
|
errors: {
|
|
284
|
+
description: string;
|
|
284
285
|
items: {
|
|
285
286
|
properties: {
|
|
286
287
|
error_code: {
|
|
@@ -383,17 +384,30 @@ declare const _default: {
|
|
|
383
384
|
type: string;
|
|
384
385
|
};
|
|
385
386
|
warnings: {
|
|
387
|
+
description: string;
|
|
386
388
|
items: {
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
389
|
+
description: string;
|
|
390
|
+
oneOf: {
|
|
391
|
+
description: string;
|
|
392
|
+
properties: {
|
|
393
|
+
created_at: {
|
|
394
|
+
description: string;
|
|
395
|
+
format: string;
|
|
396
|
+
type: string;
|
|
397
|
+
};
|
|
398
|
+
message: {
|
|
399
|
+
description: string;
|
|
400
|
+
type: string;
|
|
401
|
+
};
|
|
402
|
+
warning_code: {
|
|
403
|
+
description: string;
|
|
404
|
+
enum: string[];
|
|
405
|
+
type: string;
|
|
406
|
+
};
|
|
393
407
|
};
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
408
|
+
required: string[];
|
|
409
|
+
type: string;
|
|
410
|
+
}[];
|
|
397
411
|
};
|
|
398
412
|
type: string;
|
|
399
413
|
};
|
|
@@ -1235,6 +1249,7 @@ declare const _default: {
|
|
|
1235
1249
|
type: string;
|
|
1236
1250
|
};
|
|
1237
1251
|
errors: {
|
|
1252
|
+
description: string;
|
|
1238
1253
|
items: {
|
|
1239
1254
|
properties: {
|
|
1240
1255
|
error_code: {
|
|
@@ -1337,17 +1352,30 @@ declare const _default: {
|
|
|
1337
1352
|
type: string;
|
|
1338
1353
|
};
|
|
1339
1354
|
warnings: {
|
|
1355
|
+
description: string;
|
|
1340
1356
|
items: {
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1357
|
+
description: string;
|
|
1358
|
+
oneOf: {
|
|
1359
|
+
description: string;
|
|
1360
|
+
properties: {
|
|
1361
|
+
created_at: {
|
|
1362
|
+
description: string;
|
|
1363
|
+
format: string;
|
|
1364
|
+
type: string;
|
|
1365
|
+
};
|
|
1366
|
+
message: {
|
|
1367
|
+
description: string;
|
|
1368
|
+
type: string;
|
|
1369
|
+
};
|
|
1370
|
+
warning_code: {
|
|
1371
|
+
description: string;
|
|
1372
|
+
enum: string[];
|
|
1373
|
+
type: string;
|
|
1374
|
+
};
|
|
1347
1375
|
};
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1376
|
+
required: string[];
|
|
1377
|
+
type: string;
|
|
1378
|
+
}[];
|
|
1351
1379
|
};
|
|
1352
1380
|
type: string;
|
|
1353
1381
|
};
|
|
@@ -1513,6 +1541,7 @@ declare const _default: {
|
|
|
1513
1541
|
type: string;
|
|
1514
1542
|
};
|
|
1515
1543
|
errors: {
|
|
1544
|
+
description: string;
|
|
1516
1545
|
items: {
|
|
1517
1546
|
properties: {
|
|
1518
1547
|
error_code: {
|
|
@@ -1615,17 +1644,30 @@ declare const _default: {
|
|
|
1615
1644
|
type: string;
|
|
1616
1645
|
};
|
|
1617
1646
|
warnings: {
|
|
1647
|
+
description: string;
|
|
1618
1648
|
items: {
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1649
|
+
description: string;
|
|
1650
|
+
oneOf: {
|
|
1651
|
+
description: string;
|
|
1652
|
+
properties: {
|
|
1653
|
+
created_at: {
|
|
1654
|
+
description: string;
|
|
1655
|
+
format: string;
|
|
1656
|
+
type: string;
|
|
1657
|
+
};
|
|
1658
|
+
message: {
|
|
1659
|
+
description: string;
|
|
1660
|
+
type: string;
|
|
1661
|
+
};
|
|
1662
|
+
warning_code: {
|
|
1663
|
+
description: string;
|
|
1664
|
+
enum: string[];
|
|
1665
|
+
type: string;
|
|
1666
|
+
};
|
|
1625
1667
|
};
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1668
|
+
required: string[];
|
|
1669
|
+
type: string;
|
|
1670
|
+
}[];
|
|
1629
1671
|
};
|
|
1630
1672
|
type: string;
|
|
1631
1673
|
};
|
|
@@ -8530,6 +8572,7 @@ declare const _default: {
|
|
|
8530
8572
|
type: string;
|
|
8531
8573
|
};
|
|
8532
8574
|
errors: {
|
|
8575
|
+
description: string;
|
|
8533
8576
|
items: {
|
|
8534
8577
|
properties: {
|
|
8535
8578
|
error_code: {
|
|
@@ -8632,17 +8675,30 @@ declare const _default: {
|
|
|
8632
8675
|
type: string;
|
|
8633
8676
|
};
|
|
8634
8677
|
warnings: {
|
|
8678
|
+
description: string;
|
|
8635
8679
|
items: {
|
|
8636
|
-
|
|
8637
|
-
|
|
8638
|
-
|
|
8639
|
-
|
|
8640
|
-
|
|
8641
|
-
|
|
8680
|
+
description: string;
|
|
8681
|
+
oneOf: {
|
|
8682
|
+
description: string;
|
|
8683
|
+
properties: {
|
|
8684
|
+
created_at: {
|
|
8685
|
+
description: string;
|
|
8686
|
+
format: string;
|
|
8687
|
+
type: string;
|
|
8688
|
+
};
|
|
8689
|
+
message: {
|
|
8690
|
+
description: string;
|
|
8691
|
+
type: string;
|
|
8692
|
+
};
|
|
8693
|
+
warning_code: {
|
|
8694
|
+
description: string;
|
|
8695
|
+
enum: string[];
|
|
8696
|
+
type: string;
|
|
8697
|
+
};
|
|
8642
8698
|
};
|
|
8643
|
-
|
|
8644
|
-
|
|
8645
|
-
|
|
8699
|
+
required: string[];
|
|
8700
|
+
type: string;
|
|
8701
|
+
}[];
|
|
8646
8702
|
};
|
|
8647
8703
|
type: string;
|
|
8648
8704
|
};
|
|
@@ -8819,6 +8875,7 @@ declare const _default: {
|
|
|
8819
8875
|
type: string;
|
|
8820
8876
|
};
|
|
8821
8877
|
errors: {
|
|
8878
|
+
description: string;
|
|
8822
8879
|
items: {
|
|
8823
8880
|
properties: {
|
|
8824
8881
|
error_code: {
|
|
@@ -8921,17 +8978,30 @@ declare const _default: {
|
|
|
8921
8978
|
type: string;
|
|
8922
8979
|
};
|
|
8923
8980
|
warnings: {
|
|
8981
|
+
description: string;
|
|
8924
8982
|
items: {
|
|
8925
|
-
|
|
8926
|
-
|
|
8927
|
-
|
|
8928
|
-
|
|
8929
|
-
|
|
8930
|
-
|
|
8983
|
+
description: string;
|
|
8984
|
+
oneOf: {
|
|
8985
|
+
description: string;
|
|
8986
|
+
properties: {
|
|
8987
|
+
created_at: {
|
|
8988
|
+
description: string;
|
|
8989
|
+
format: string;
|
|
8990
|
+
type: string;
|
|
8991
|
+
};
|
|
8992
|
+
message: {
|
|
8993
|
+
description: string;
|
|
8994
|
+
type: string;
|
|
8995
|
+
};
|
|
8996
|
+
warning_code: {
|
|
8997
|
+
description: string;
|
|
8998
|
+
enum: string[];
|
|
8999
|
+
type: string;
|
|
9000
|
+
};
|
|
8931
9001
|
};
|
|
8932
|
-
|
|
8933
|
-
|
|
8934
|
-
|
|
9002
|
+
required: string[];
|
|
9003
|
+
type: string;
|
|
9004
|
+
}[];
|
|
8935
9005
|
};
|
|
8936
9006
|
type: string;
|
|
8937
9007
|
};
|