@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
|
@@ -312,6 +312,7 @@ export default {
|
|
|
312
312
|
type: 'string',
|
|
313
313
|
},
|
|
314
314
|
errors: {
|
|
315
|
+
description: 'Errors associated with the `acs_credential`.',
|
|
315
316
|
items: {
|
|
316
317
|
properties: {
|
|
317
318
|
error_code: { type: 'string' },
|
|
@@ -393,13 +394,111 @@ export default {
|
|
|
393
394
|
type: 'object',
|
|
394
395
|
},
|
|
395
396
|
warnings: {
|
|
397
|
+
description: 'Warnings associated with the `acs_credential`.',
|
|
396
398
|
items: {
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
399
|
+
description: 'Warning associated with the `acs_credential`.',
|
|
400
|
+
oneOf: [
|
|
401
|
+
{
|
|
402
|
+
description:
|
|
403
|
+
'Indicates that the credential is waiting to be issued.',
|
|
404
|
+
properties: {
|
|
405
|
+
created_at: {
|
|
406
|
+
description:
|
|
407
|
+
'Date and time at which Seam created the warning.',
|
|
408
|
+
format: 'date-time',
|
|
409
|
+
type: 'string',
|
|
410
|
+
},
|
|
411
|
+
message: {
|
|
412
|
+
description:
|
|
413
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
414
|
+
type: 'string',
|
|
415
|
+
},
|
|
416
|
+
warning_code: {
|
|
417
|
+
description:
|
|
418
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
419
|
+
enum: ['waiting_to_be_issued'],
|
|
420
|
+
type: 'string',
|
|
421
|
+
},
|
|
422
|
+
},
|
|
423
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
424
|
+
type: 'object',
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
description:
|
|
428
|
+
"Indicates that the schedule of one of the credential's children was modified externally.",
|
|
429
|
+
properties: {
|
|
430
|
+
created_at: {
|
|
431
|
+
description:
|
|
432
|
+
'Date and time at which Seam created the warning.',
|
|
433
|
+
format: 'date-time',
|
|
434
|
+
type: 'string',
|
|
435
|
+
},
|
|
436
|
+
message: {
|
|
437
|
+
description:
|
|
438
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
439
|
+
type: 'string',
|
|
440
|
+
},
|
|
441
|
+
warning_code: {
|
|
442
|
+
description:
|
|
443
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
444
|
+
enum: ['schedule_externally_modified'],
|
|
445
|
+
type: 'string',
|
|
446
|
+
},
|
|
447
|
+
},
|
|
448
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
449
|
+
type: 'object',
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
description:
|
|
453
|
+
'Indicates that the schedule of this credential was modified to avoid creating a credential with a start date in the past.',
|
|
454
|
+
properties: {
|
|
455
|
+
created_at: {
|
|
456
|
+
description:
|
|
457
|
+
'Date and time at which Seam created the warning.',
|
|
458
|
+
format: 'date-time',
|
|
459
|
+
type: 'string',
|
|
460
|
+
},
|
|
461
|
+
message: {
|
|
462
|
+
description:
|
|
463
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
464
|
+
type: 'string',
|
|
465
|
+
},
|
|
466
|
+
warning_code: {
|
|
467
|
+
description:
|
|
468
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
469
|
+
enum: ['schedule_modified'],
|
|
470
|
+
type: 'string',
|
|
471
|
+
},
|
|
472
|
+
},
|
|
473
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
474
|
+
type: 'object',
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
description:
|
|
478
|
+
'Indicates that this credential is being deleted.',
|
|
479
|
+
properties: {
|
|
480
|
+
created_at: {
|
|
481
|
+
description:
|
|
482
|
+
'Date and time at which Seam created the warning.',
|
|
483
|
+
format: 'date-time',
|
|
484
|
+
type: 'string',
|
|
485
|
+
},
|
|
486
|
+
message: {
|
|
487
|
+
description:
|
|
488
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
489
|
+
type: 'string',
|
|
490
|
+
},
|
|
491
|
+
warning_code: {
|
|
492
|
+
description:
|
|
493
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
494
|
+
enum: ['being_deleted'],
|
|
495
|
+
type: 'string',
|
|
496
|
+
},
|
|
497
|
+
},
|
|
498
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
499
|
+
type: 'object',
|
|
500
|
+
},
|
|
501
|
+
],
|
|
403
502
|
},
|
|
404
503
|
type: 'array',
|
|
405
504
|
},
|
|
@@ -1553,6 +1652,8 @@ export default {
|
|
|
1553
1652
|
type: 'string',
|
|
1554
1653
|
},
|
|
1555
1654
|
errors: {
|
|
1655
|
+
description:
|
|
1656
|
+
'Errors associated with the `acs_credential`.',
|
|
1556
1657
|
items: {
|
|
1557
1658
|
properties: {
|
|
1558
1659
|
error_code: { type: 'string' },
|
|
@@ -1642,13 +1743,129 @@ export default {
|
|
|
1642
1743
|
type: 'object',
|
|
1643
1744
|
},
|
|
1644
1745
|
warnings: {
|
|
1746
|
+
description:
|
|
1747
|
+
'Warnings associated with the `acs_credential`.',
|
|
1645
1748
|
items: {
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1749
|
+
description:
|
|
1750
|
+
'Warning associated with the `acs_credential`.',
|
|
1751
|
+
oneOf: [
|
|
1752
|
+
{
|
|
1753
|
+
description:
|
|
1754
|
+
'Indicates that the credential is waiting to be issued.',
|
|
1755
|
+
properties: {
|
|
1756
|
+
created_at: {
|
|
1757
|
+
description:
|
|
1758
|
+
'Date and time at which Seam created the warning.',
|
|
1759
|
+
format: 'date-time',
|
|
1760
|
+
type: 'string',
|
|
1761
|
+
},
|
|
1762
|
+
message: {
|
|
1763
|
+
description:
|
|
1764
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1765
|
+
type: 'string',
|
|
1766
|
+
},
|
|
1767
|
+
warning_code: {
|
|
1768
|
+
description:
|
|
1769
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1770
|
+
enum: ['waiting_to_be_issued'],
|
|
1771
|
+
type: 'string',
|
|
1772
|
+
},
|
|
1773
|
+
},
|
|
1774
|
+
required: [
|
|
1775
|
+
'created_at',
|
|
1776
|
+
'message',
|
|
1777
|
+
'warning_code',
|
|
1778
|
+
],
|
|
1779
|
+
type: 'object',
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
description:
|
|
1783
|
+
"Indicates that the schedule of one of the credential's children was modified externally.",
|
|
1784
|
+
properties: {
|
|
1785
|
+
created_at: {
|
|
1786
|
+
description:
|
|
1787
|
+
'Date and time at which Seam created the warning.',
|
|
1788
|
+
format: 'date-time',
|
|
1789
|
+
type: 'string',
|
|
1790
|
+
},
|
|
1791
|
+
message: {
|
|
1792
|
+
description:
|
|
1793
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1794
|
+
type: 'string',
|
|
1795
|
+
},
|
|
1796
|
+
warning_code: {
|
|
1797
|
+
description:
|
|
1798
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1799
|
+
enum: ['schedule_externally_modified'],
|
|
1800
|
+
type: 'string',
|
|
1801
|
+
},
|
|
1802
|
+
},
|
|
1803
|
+
required: [
|
|
1804
|
+
'created_at',
|
|
1805
|
+
'message',
|
|
1806
|
+
'warning_code',
|
|
1807
|
+
],
|
|
1808
|
+
type: 'object',
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
description:
|
|
1812
|
+
'Indicates that the schedule of this credential was modified to avoid creating a credential with a start date in the past.',
|
|
1813
|
+
properties: {
|
|
1814
|
+
created_at: {
|
|
1815
|
+
description:
|
|
1816
|
+
'Date and time at which Seam created the warning.',
|
|
1817
|
+
format: 'date-time',
|
|
1818
|
+
type: 'string',
|
|
1819
|
+
},
|
|
1820
|
+
message: {
|
|
1821
|
+
description:
|
|
1822
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1823
|
+
type: 'string',
|
|
1824
|
+
},
|
|
1825
|
+
warning_code: {
|
|
1826
|
+
description:
|
|
1827
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1828
|
+
enum: ['schedule_modified'],
|
|
1829
|
+
type: 'string',
|
|
1830
|
+
},
|
|
1831
|
+
},
|
|
1832
|
+
required: [
|
|
1833
|
+
'created_at',
|
|
1834
|
+
'message',
|
|
1835
|
+
'warning_code',
|
|
1836
|
+
],
|
|
1837
|
+
type: 'object',
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
description:
|
|
1841
|
+
'Indicates that this credential is being deleted.',
|
|
1842
|
+
properties: {
|
|
1843
|
+
created_at: {
|
|
1844
|
+
description:
|
|
1845
|
+
'Date and time at which Seam created the warning.',
|
|
1846
|
+
format: 'date-time',
|
|
1847
|
+
type: 'string',
|
|
1848
|
+
},
|
|
1849
|
+
message: {
|
|
1850
|
+
description:
|
|
1851
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
1852
|
+
type: 'string',
|
|
1853
|
+
},
|
|
1854
|
+
warning_code: {
|
|
1855
|
+
description:
|
|
1856
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
1857
|
+
enum: ['being_deleted'],
|
|
1858
|
+
type: 'string',
|
|
1859
|
+
},
|
|
1860
|
+
},
|
|
1861
|
+
required: [
|
|
1862
|
+
'created_at',
|
|
1863
|
+
'message',
|
|
1864
|
+
'warning_code',
|
|
1865
|
+
],
|
|
1866
|
+
type: 'object',
|
|
1867
|
+
},
|
|
1868
|
+
],
|
|
1652
1869
|
},
|
|
1653
1870
|
type: 'array',
|
|
1654
1871
|
},
|
|
@@ -1728,6 +1945,8 @@ export default {
|
|
|
1728
1945
|
type: 'string',
|
|
1729
1946
|
},
|
|
1730
1947
|
errors: {
|
|
1948
|
+
description:
|
|
1949
|
+
'Errors associated with the `acs_credential`.',
|
|
1731
1950
|
items: {
|
|
1732
1951
|
properties: {
|
|
1733
1952
|
error_code: { type: 'string' },
|
|
@@ -1817,13 +2036,129 @@ export default {
|
|
|
1817
2036
|
type: 'object',
|
|
1818
2037
|
},
|
|
1819
2038
|
warnings: {
|
|
2039
|
+
description:
|
|
2040
|
+
'Warnings associated with the `acs_credential`.',
|
|
1820
2041
|
items: {
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
2042
|
+
description:
|
|
2043
|
+
'Warning associated with the `acs_credential`.',
|
|
2044
|
+
oneOf: [
|
|
2045
|
+
{
|
|
2046
|
+
description:
|
|
2047
|
+
'Indicates that the credential is waiting to be issued.',
|
|
2048
|
+
properties: {
|
|
2049
|
+
created_at: {
|
|
2050
|
+
description:
|
|
2051
|
+
'Date and time at which Seam created the warning.',
|
|
2052
|
+
format: 'date-time',
|
|
2053
|
+
type: 'string',
|
|
2054
|
+
},
|
|
2055
|
+
message: {
|
|
2056
|
+
description:
|
|
2057
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2058
|
+
type: 'string',
|
|
2059
|
+
},
|
|
2060
|
+
warning_code: {
|
|
2061
|
+
description:
|
|
2062
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2063
|
+
enum: ['waiting_to_be_issued'],
|
|
2064
|
+
type: 'string',
|
|
2065
|
+
},
|
|
2066
|
+
},
|
|
2067
|
+
required: [
|
|
2068
|
+
'created_at',
|
|
2069
|
+
'message',
|
|
2070
|
+
'warning_code',
|
|
2071
|
+
],
|
|
2072
|
+
type: 'object',
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
description:
|
|
2076
|
+
"Indicates that the schedule of one of the credential's children was modified externally.",
|
|
2077
|
+
properties: {
|
|
2078
|
+
created_at: {
|
|
2079
|
+
description:
|
|
2080
|
+
'Date and time at which Seam created the warning.',
|
|
2081
|
+
format: 'date-time',
|
|
2082
|
+
type: 'string',
|
|
2083
|
+
},
|
|
2084
|
+
message: {
|
|
2085
|
+
description:
|
|
2086
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2087
|
+
type: 'string',
|
|
2088
|
+
},
|
|
2089
|
+
warning_code: {
|
|
2090
|
+
description:
|
|
2091
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2092
|
+
enum: ['schedule_externally_modified'],
|
|
2093
|
+
type: 'string',
|
|
2094
|
+
},
|
|
2095
|
+
},
|
|
2096
|
+
required: [
|
|
2097
|
+
'created_at',
|
|
2098
|
+
'message',
|
|
2099
|
+
'warning_code',
|
|
2100
|
+
],
|
|
2101
|
+
type: 'object',
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
description:
|
|
2105
|
+
'Indicates that the schedule of this credential was modified to avoid creating a credential with a start date in the past.',
|
|
2106
|
+
properties: {
|
|
2107
|
+
created_at: {
|
|
2108
|
+
description:
|
|
2109
|
+
'Date and time at which Seam created the warning.',
|
|
2110
|
+
format: 'date-time',
|
|
2111
|
+
type: 'string',
|
|
2112
|
+
},
|
|
2113
|
+
message: {
|
|
2114
|
+
description:
|
|
2115
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2116
|
+
type: 'string',
|
|
2117
|
+
},
|
|
2118
|
+
warning_code: {
|
|
2119
|
+
description:
|
|
2120
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2121
|
+
enum: ['schedule_modified'],
|
|
2122
|
+
type: 'string',
|
|
2123
|
+
},
|
|
2124
|
+
},
|
|
2125
|
+
required: [
|
|
2126
|
+
'created_at',
|
|
2127
|
+
'message',
|
|
2128
|
+
'warning_code',
|
|
2129
|
+
],
|
|
2130
|
+
type: 'object',
|
|
2131
|
+
},
|
|
2132
|
+
{
|
|
2133
|
+
description:
|
|
2134
|
+
'Indicates that this credential is being deleted.',
|
|
2135
|
+
properties: {
|
|
2136
|
+
created_at: {
|
|
2137
|
+
description:
|
|
2138
|
+
'Date and time at which Seam created the warning.',
|
|
2139
|
+
format: 'date-time',
|
|
2140
|
+
type: 'string',
|
|
2141
|
+
},
|
|
2142
|
+
message: {
|
|
2143
|
+
description:
|
|
2144
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2145
|
+
type: 'string',
|
|
2146
|
+
},
|
|
2147
|
+
warning_code: {
|
|
2148
|
+
description:
|
|
2149
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2150
|
+
enum: ['being_deleted'],
|
|
2151
|
+
type: 'string',
|
|
2152
|
+
},
|
|
2153
|
+
},
|
|
2154
|
+
required: [
|
|
2155
|
+
'created_at',
|
|
2156
|
+
'message',
|
|
2157
|
+
'warning_code',
|
|
2158
|
+
],
|
|
2159
|
+
type: 'object',
|
|
2160
|
+
},
|
|
2161
|
+
],
|
|
1827
2162
|
},
|
|
1828
2163
|
type: 'array',
|
|
1829
2164
|
},
|
|
@@ -2030,6 +2365,8 @@ export default {
|
|
|
2030
2365
|
type: 'string',
|
|
2031
2366
|
},
|
|
2032
2367
|
errors: {
|
|
2368
|
+
description:
|
|
2369
|
+
'Errors associated with the `acs_credential`.',
|
|
2033
2370
|
items: {
|
|
2034
2371
|
properties: {
|
|
2035
2372
|
error_code: { type: 'string' },
|
|
@@ -2119,13 +2456,129 @@ export default {
|
|
|
2119
2456
|
type: 'object',
|
|
2120
2457
|
},
|
|
2121
2458
|
warnings: {
|
|
2459
|
+
description:
|
|
2460
|
+
'Warnings associated with the `acs_credential`.',
|
|
2122
2461
|
items: {
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2462
|
+
description:
|
|
2463
|
+
'Warning associated with the `acs_credential`.',
|
|
2464
|
+
oneOf: [
|
|
2465
|
+
{
|
|
2466
|
+
description:
|
|
2467
|
+
'Indicates that the credential is waiting to be issued.',
|
|
2468
|
+
properties: {
|
|
2469
|
+
created_at: {
|
|
2470
|
+
description:
|
|
2471
|
+
'Date and time at which Seam created the warning.',
|
|
2472
|
+
format: 'date-time',
|
|
2473
|
+
type: 'string',
|
|
2474
|
+
},
|
|
2475
|
+
message: {
|
|
2476
|
+
description:
|
|
2477
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2478
|
+
type: 'string',
|
|
2479
|
+
},
|
|
2480
|
+
warning_code: {
|
|
2481
|
+
description:
|
|
2482
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2483
|
+
enum: ['waiting_to_be_issued'],
|
|
2484
|
+
type: 'string',
|
|
2485
|
+
},
|
|
2486
|
+
},
|
|
2487
|
+
required: [
|
|
2488
|
+
'created_at',
|
|
2489
|
+
'message',
|
|
2490
|
+
'warning_code',
|
|
2491
|
+
],
|
|
2492
|
+
type: 'object',
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
description:
|
|
2496
|
+
"Indicates that the schedule of one of the credential's children was modified externally.",
|
|
2497
|
+
properties: {
|
|
2498
|
+
created_at: {
|
|
2499
|
+
description:
|
|
2500
|
+
'Date and time at which Seam created the warning.',
|
|
2501
|
+
format: 'date-time',
|
|
2502
|
+
type: 'string',
|
|
2503
|
+
},
|
|
2504
|
+
message: {
|
|
2505
|
+
description:
|
|
2506
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2507
|
+
type: 'string',
|
|
2508
|
+
},
|
|
2509
|
+
warning_code: {
|
|
2510
|
+
description:
|
|
2511
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2512
|
+
enum: ['schedule_externally_modified'],
|
|
2513
|
+
type: 'string',
|
|
2514
|
+
},
|
|
2515
|
+
},
|
|
2516
|
+
required: [
|
|
2517
|
+
'created_at',
|
|
2518
|
+
'message',
|
|
2519
|
+
'warning_code',
|
|
2520
|
+
],
|
|
2521
|
+
type: 'object',
|
|
2522
|
+
},
|
|
2523
|
+
{
|
|
2524
|
+
description:
|
|
2525
|
+
'Indicates that the schedule of this credential was modified to avoid creating a credential with a start date in the past.',
|
|
2526
|
+
properties: {
|
|
2527
|
+
created_at: {
|
|
2528
|
+
description:
|
|
2529
|
+
'Date and time at which Seam created the warning.',
|
|
2530
|
+
format: 'date-time',
|
|
2531
|
+
type: 'string',
|
|
2532
|
+
},
|
|
2533
|
+
message: {
|
|
2534
|
+
description:
|
|
2535
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2536
|
+
type: 'string',
|
|
2537
|
+
},
|
|
2538
|
+
warning_code: {
|
|
2539
|
+
description:
|
|
2540
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2541
|
+
enum: ['schedule_modified'],
|
|
2542
|
+
type: 'string',
|
|
2543
|
+
},
|
|
2544
|
+
},
|
|
2545
|
+
required: [
|
|
2546
|
+
'created_at',
|
|
2547
|
+
'message',
|
|
2548
|
+
'warning_code',
|
|
2549
|
+
],
|
|
2550
|
+
type: 'object',
|
|
2551
|
+
},
|
|
2552
|
+
{
|
|
2553
|
+
description:
|
|
2554
|
+
'Indicates that this credential is being deleted.',
|
|
2555
|
+
properties: {
|
|
2556
|
+
created_at: {
|
|
2557
|
+
description:
|
|
2558
|
+
'Date and time at which Seam created the warning.',
|
|
2559
|
+
format: 'date-time',
|
|
2560
|
+
type: 'string',
|
|
2561
|
+
},
|
|
2562
|
+
message: {
|
|
2563
|
+
description:
|
|
2564
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2565
|
+
type: 'string',
|
|
2566
|
+
},
|
|
2567
|
+
warning_code: {
|
|
2568
|
+
description:
|
|
2569
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2570
|
+
enum: ['being_deleted'],
|
|
2571
|
+
type: 'string',
|
|
2572
|
+
},
|
|
2573
|
+
},
|
|
2574
|
+
required: [
|
|
2575
|
+
'created_at',
|
|
2576
|
+
'message',
|
|
2577
|
+
'warning_code',
|
|
2578
|
+
],
|
|
2579
|
+
type: 'object',
|
|
2580
|
+
},
|
|
2581
|
+
],
|
|
2129
2582
|
},
|
|
2130
2583
|
type: 'array',
|
|
2131
2584
|
},
|
|
@@ -2204,6 +2657,8 @@ export default {
|
|
|
2204
2657
|
type: 'string',
|
|
2205
2658
|
},
|
|
2206
2659
|
errors: {
|
|
2660
|
+
description:
|
|
2661
|
+
'Errors associated with the `acs_credential`.',
|
|
2207
2662
|
items: {
|
|
2208
2663
|
properties: {
|
|
2209
2664
|
error_code: { type: 'string' },
|
|
@@ -2293,13 +2748,129 @@ export default {
|
|
|
2293
2748
|
type: 'object',
|
|
2294
2749
|
},
|
|
2295
2750
|
warnings: {
|
|
2751
|
+
description:
|
|
2752
|
+
'Warnings associated with the `acs_credential`.',
|
|
2296
2753
|
items: {
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2754
|
+
description:
|
|
2755
|
+
'Warning associated with the `acs_credential`.',
|
|
2756
|
+
oneOf: [
|
|
2757
|
+
{
|
|
2758
|
+
description:
|
|
2759
|
+
'Indicates that the credential is waiting to be issued.',
|
|
2760
|
+
properties: {
|
|
2761
|
+
created_at: {
|
|
2762
|
+
description:
|
|
2763
|
+
'Date and time at which Seam created the warning.',
|
|
2764
|
+
format: 'date-time',
|
|
2765
|
+
type: 'string',
|
|
2766
|
+
},
|
|
2767
|
+
message: {
|
|
2768
|
+
description:
|
|
2769
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2770
|
+
type: 'string',
|
|
2771
|
+
},
|
|
2772
|
+
warning_code: {
|
|
2773
|
+
description:
|
|
2774
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2775
|
+
enum: ['waiting_to_be_issued'],
|
|
2776
|
+
type: 'string',
|
|
2777
|
+
},
|
|
2778
|
+
},
|
|
2779
|
+
required: [
|
|
2780
|
+
'created_at',
|
|
2781
|
+
'message',
|
|
2782
|
+
'warning_code',
|
|
2783
|
+
],
|
|
2784
|
+
type: 'object',
|
|
2785
|
+
},
|
|
2786
|
+
{
|
|
2787
|
+
description:
|
|
2788
|
+
"Indicates that the schedule of one of the credential's children was modified externally.",
|
|
2789
|
+
properties: {
|
|
2790
|
+
created_at: {
|
|
2791
|
+
description:
|
|
2792
|
+
'Date and time at which Seam created the warning.',
|
|
2793
|
+
format: 'date-time',
|
|
2794
|
+
type: 'string',
|
|
2795
|
+
},
|
|
2796
|
+
message: {
|
|
2797
|
+
description:
|
|
2798
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2799
|
+
type: 'string',
|
|
2800
|
+
},
|
|
2801
|
+
warning_code: {
|
|
2802
|
+
description:
|
|
2803
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2804
|
+
enum: ['schedule_externally_modified'],
|
|
2805
|
+
type: 'string',
|
|
2806
|
+
},
|
|
2807
|
+
},
|
|
2808
|
+
required: [
|
|
2809
|
+
'created_at',
|
|
2810
|
+
'message',
|
|
2811
|
+
'warning_code',
|
|
2812
|
+
],
|
|
2813
|
+
type: 'object',
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
description:
|
|
2817
|
+
'Indicates that the schedule of this credential was modified to avoid creating a credential with a start date in the past.',
|
|
2818
|
+
properties: {
|
|
2819
|
+
created_at: {
|
|
2820
|
+
description:
|
|
2821
|
+
'Date and time at which Seam created the warning.',
|
|
2822
|
+
format: 'date-time',
|
|
2823
|
+
type: 'string',
|
|
2824
|
+
},
|
|
2825
|
+
message: {
|
|
2826
|
+
description:
|
|
2827
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2828
|
+
type: 'string',
|
|
2829
|
+
},
|
|
2830
|
+
warning_code: {
|
|
2831
|
+
description:
|
|
2832
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2833
|
+
enum: ['schedule_modified'],
|
|
2834
|
+
type: 'string',
|
|
2835
|
+
},
|
|
2836
|
+
},
|
|
2837
|
+
required: [
|
|
2838
|
+
'created_at',
|
|
2839
|
+
'message',
|
|
2840
|
+
'warning_code',
|
|
2841
|
+
],
|
|
2842
|
+
type: 'object',
|
|
2843
|
+
},
|
|
2844
|
+
{
|
|
2845
|
+
description:
|
|
2846
|
+
'Indicates that this credential is being deleted.',
|
|
2847
|
+
properties: {
|
|
2848
|
+
created_at: {
|
|
2849
|
+
description:
|
|
2850
|
+
'Date and time at which Seam created the warning.',
|
|
2851
|
+
format: 'date-time',
|
|
2852
|
+
type: 'string',
|
|
2853
|
+
},
|
|
2854
|
+
message: {
|
|
2855
|
+
description:
|
|
2856
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
2857
|
+
type: 'string',
|
|
2858
|
+
},
|
|
2859
|
+
warning_code: {
|
|
2860
|
+
description:
|
|
2861
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
2862
|
+
enum: ['being_deleted'],
|
|
2863
|
+
type: 'string',
|
|
2864
|
+
},
|
|
2865
|
+
},
|
|
2866
|
+
required: [
|
|
2867
|
+
'created_at',
|
|
2868
|
+
'message',
|
|
2869
|
+
'warning_code',
|
|
2870
|
+
],
|
|
2871
|
+
type: 'object',
|
|
2872
|
+
},
|
|
2873
|
+
],
|
|
2303
2874
|
},
|
|
2304
2875
|
type: 'array',
|
|
2305
2876
|
},
|
|
@@ -5111,6 +5682,7 @@ export default {
|
|
|
5111
5682
|
'genie',
|
|
5112
5683
|
'doorking',
|
|
5113
5684
|
'salto',
|
|
5685
|
+
'salto_ks',
|
|
5114
5686
|
'lockly',
|
|
5115
5687
|
'ttlock',
|
|
5116
5688
|
'linear',
|
|
@@ -8916,6 +9488,8 @@ export default {
|
|
|
8916
9488
|
type: 'string',
|
|
8917
9489
|
},
|
|
8918
9490
|
errors: {
|
|
9491
|
+
description:
|
|
9492
|
+
'Errors associated with the `acs_credential`.',
|
|
8919
9493
|
items: {
|
|
8920
9494
|
properties: {
|
|
8921
9495
|
error_code: { type: 'string' },
|
|
@@ -9005,13 +9579,129 @@ export default {
|
|
|
9005
9579
|
type: 'object',
|
|
9006
9580
|
},
|
|
9007
9581
|
warnings: {
|
|
9582
|
+
description:
|
|
9583
|
+
'Warnings associated with the `acs_credential`.',
|
|
9008
9584
|
items: {
|
|
9009
|
-
|
|
9010
|
-
|
|
9011
|
-
|
|
9012
|
-
|
|
9013
|
-
|
|
9014
|
-
|
|
9585
|
+
description:
|
|
9586
|
+
'Warning associated with the `acs_credential`.',
|
|
9587
|
+
oneOf: [
|
|
9588
|
+
{
|
|
9589
|
+
description:
|
|
9590
|
+
'Indicates that the credential is waiting to be issued.',
|
|
9591
|
+
properties: {
|
|
9592
|
+
created_at: {
|
|
9593
|
+
description:
|
|
9594
|
+
'Date and time at which Seam created the warning.',
|
|
9595
|
+
format: 'date-time',
|
|
9596
|
+
type: 'string',
|
|
9597
|
+
},
|
|
9598
|
+
message: {
|
|
9599
|
+
description:
|
|
9600
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
9601
|
+
type: 'string',
|
|
9602
|
+
},
|
|
9603
|
+
warning_code: {
|
|
9604
|
+
description:
|
|
9605
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
9606
|
+
enum: ['waiting_to_be_issued'],
|
|
9607
|
+
type: 'string',
|
|
9608
|
+
},
|
|
9609
|
+
},
|
|
9610
|
+
required: [
|
|
9611
|
+
'created_at',
|
|
9612
|
+
'message',
|
|
9613
|
+
'warning_code',
|
|
9614
|
+
],
|
|
9615
|
+
type: 'object',
|
|
9616
|
+
},
|
|
9617
|
+
{
|
|
9618
|
+
description:
|
|
9619
|
+
"Indicates that the schedule of one of the credential's children was modified externally.",
|
|
9620
|
+
properties: {
|
|
9621
|
+
created_at: {
|
|
9622
|
+
description:
|
|
9623
|
+
'Date and time at which Seam created the warning.',
|
|
9624
|
+
format: 'date-time',
|
|
9625
|
+
type: 'string',
|
|
9626
|
+
},
|
|
9627
|
+
message: {
|
|
9628
|
+
description:
|
|
9629
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
9630
|
+
type: 'string',
|
|
9631
|
+
},
|
|
9632
|
+
warning_code: {
|
|
9633
|
+
description:
|
|
9634
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
9635
|
+
enum: ['schedule_externally_modified'],
|
|
9636
|
+
type: 'string',
|
|
9637
|
+
},
|
|
9638
|
+
},
|
|
9639
|
+
required: [
|
|
9640
|
+
'created_at',
|
|
9641
|
+
'message',
|
|
9642
|
+
'warning_code',
|
|
9643
|
+
],
|
|
9644
|
+
type: 'object',
|
|
9645
|
+
},
|
|
9646
|
+
{
|
|
9647
|
+
description:
|
|
9648
|
+
'Indicates that the schedule of this credential was modified to avoid creating a credential with a start date in the past.',
|
|
9649
|
+
properties: {
|
|
9650
|
+
created_at: {
|
|
9651
|
+
description:
|
|
9652
|
+
'Date and time at which Seam created the warning.',
|
|
9653
|
+
format: 'date-time',
|
|
9654
|
+
type: 'string',
|
|
9655
|
+
},
|
|
9656
|
+
message: {
|
|
9657
|
+
description:
|
|
9658
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
9659
|
+
type: 'string',
|
|
9660
|
+
},
|
|
9661
|
+
warning_code: {
|
|
9662
|
+
description:
|
|
9663
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
9664
|
+
enum: ['schedule_modified'],
|
|
9665
|
+
type: 'string',
|
|
9666
|
+
},
|
|
9667
|
+
},
|
|
9668
|
+
required: [
|
|
9669
|
+
'created_at',
|
|
9670
|
+
'message',
|
|
9671
|
+
'warning_code',
|
|
9672
|
+
],
|
|
9673
|
+
type: 'object',
|
|
9674
|
+
},
|
|
9675
|
+
{
|
|
9676
|
+
description:
|
|
9677
|
+
'Indicates that this credential is being deleted.',
|
|
9678
|
+
properties: {
|
|
9679
|
+
created_at: {
|
|
9680
|
+
description:
|
|
9681
|
+
'Date and time at which Seam created the warning.',
|
|
9682
|
+
format: 'date-time',
|
|
9683
|
+
type: 'string',
|
|
9684
|
+
},
|
|
9685
|
+
message: {
|
|
9686
|
+
description:
|
|
9687
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
9688
|
+
type: 'string',
|
|
9689
|
+
},
|
|
9690
|
+
warning_code: {
|
|
9691
|
+
description:
|
|
9692
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
9693
|
+
enum: ['being_deleted'],
|
|
9694
|
+
type: 'string',
|
|
9695
|
+
},
|
|
9696
|
+
},
|
|
9697
|
+
required: [
|
|
9698
|
+
'created_at',
|
|
9699
|
+
'message',
|
|
9700
|
+
'warning_code',
|
|
9701
|
+
],
|
|
9702
|
+
type: 'object',
|
|
9703
|
+
},
|
|
9704
|
+
],
|
|
9015
9705
|
},
|
|
9016
9706
|
type: 'array',
|
|
9017
9707
|
},
|
|
@@ -9194,6 +9884,8 @@ export default {
|
|
|
9194
9884
|
type: 'string',
|
|
9195
9885
|
},
|
|
9196
9886
|
errors: {
|
|
9887
|
+
description:
|
|
9888
|
+
'Errors associated with the `acs_credential`.',
|
|
9197
9889
|
items: {
|
|
9198
9890
|
properties: {
|
|
9199
9891
|
error_code: { type: 'string' },
|
|
@@ -9283,13 +9975,129 @@ export default {
|
|
|
9283
9975
|
type: 'object',
|
|
9284
9976
|
},
|
|
9285
9977
|
warnings: {
|
|
9978
|
+
description:
|
|
9979
|
+
'Warnings associated with the `acs_credential`.',
|
|
9286
9980
|
items: {
|
|
9287
|
-
|
|
9288
|
-
|
|
9289
|
-
|
|
9290
|
-
|
|
9291
|
-
|
|
9292
|
-
|
|
9981
|
+
description:
|
|
9982
|
+
'Warning associated with the `acs_credential`.',
|
|
9983
|
+
oneOf: [
|
|
9984
|
+
{
|
|
9985
|
+
description:
|
|
9986
|
+
'Indicates that the credential is waiting to be issued.',
|
|
9987
|
+
properties: {
|
|
9988
|
+
created_at: {
|
|
9989
|
+
description:
|
|
9990
|
+
'Date and time at which Seam created the warning.',
|
|
9991
|
+
format: 'date-time',
|
|
9992
|
+
type: 'string',
|
|
9993
|
+
},
|
|
9994
|
+
message: {
|
|
9995
|
+
description:
|
|
9996
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
9997
|
+
type: 'string',
|
|
9998
|
+
},
|
|
9999
|
+
warning_code: {
|
|
10000
|
+
description:
|
|
10001
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
10002
|
+
enum: ['waiting_to_be_issued'],
|
|
10003
|
+
type: 'string',
|
|
10004
|
+
},
|
|
10005
|
+
},
|
|
10006
|
+
required: [
|
|
10007
|
+
'created_at',
|
|
10008
|
+
'message',
|
|
10009
|
+
'warning_code',
|
|
10010
|
+
],
|
|
10011
|
+
type: 'object',
|
|
10012
|
+
},
|
|
10013
|
+
{
|
|
10014
|
+
description:
|
|
10015
|
+
"Indicates that the schedule of one of the credential's children was modified externally.",
|
|
10016
|
+
properties: {
|
|
10017
|
+
created_at: {
|
|
10018
|
+
description:
|
|
10019
|
+
'Date and time at which Seam created the warning.',
|
|
10020
|
+
format: 'date-time',
|
|
10021
|
+
type: 'string',
|
|
10022
|
+
},
|
|
10023
|
+
message: {
|
|
10024
|
+
description:
|
|
10025
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
10026
|
+
type: 'string',
|
|
10027
|
+
},
|
|
10028
|
+
warning_code: {
|
|
10029
|
+
description:
|
|
10030
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
10031
|
+
enum: ['schedule_externally_modified'],
|
|
10032
|
+
type: 'string',
|
|
10033
|
+
},
|
|
10034
|
+
},
|
|
10035
|
+
required: [
|
|
10036
|
+
'created_at',
|
|
10037
|
+
'message',
|
|
10038
|
+
'warning_code',
|
|
10039
|
+
],
|
|
10040
|
+
type: 'object',
|
|
10041
|
+
},
|
|
10042
|
+
{
|
|
10043
|
+
description:
|
|
10044
|
+
'Indicates that the schedule of this credential was modified to avoid creating a credential with a start date in the past.',
|
|
10045
|
+
properties: {
|
|
10046
|
+
created_at: {
|
|
10047
|
+
description:
|
|
10048
|
+
'Date and time at which Seam created the warning.',
|
|
10049
|
+
format: 'date-time',
|
|
10050
|
+
type: 'string',
|
|
10051
|
+
},
|
|
10052
|
+
message: {
|
|
10053
|
+
description:
|
|
10054
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
10055
|
+
type: 'string',
|
|
10056
|
+
},
|
|
10057
|
+
warning_code: {
|
|
10058
|
+
description:
|
|
10059
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
10060
|
+
enum: ['schedule_modified'],
|
|
10061
|
+
type: 'string',
|
|
10062
|
+
},
|
|
10063
|
+
},
|
|
10064
|
+
required: [
|
|
10065
|
+
'created_at',
|
|
10066
|
+
'message',
|
|
10067
|
+
'warning_code',
|
|
10068
|
+
],
|
|
10069
|
+
type: 'object',
|
|
10070
|
+
},
|
|
10071
|
+
{
|
|
10072
|
+
description:
|
|
10073
|
+
'Indicates that this credential is being deleted.',
|
|
10074
|
+
properties: {
|
|
10075
|
+
created_at: {
|
|
10076
|
+
description:
|
|
10077
|
+
'Date and time at which Seam created the warning.',
|
|
10078
|
+
format: 'date-time',
|
|
10079
|
+
type: 'string',
|
|
10080
|
+
},
|
|
10081
|
+
message: {
|
|
10082
|
+
description:
|
|
10083
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
10084
|
+
type: 'string',
|
|
10085
|
+
},
|
|
10086
|
+
warning_code: {
|
|
10087
|
+
description:
|
|
10088
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
10089
|
+
enum: ['being_deleted'],
|
|
10090
|
+
type: 'string',
|
|
10091
|
+
},
|
|
10092
|
+
},
|
|
10093
|
+
required: [
|
|
10094
|
+
'created_at',
|
|
10095
|
+
'message',
|
|
10096
|
+
'warning_code',
|
|
10097
|
+
],
|
|
10098
|
+
type: 'object',
|
|
10099
|
+
},
|
|
10100
|
+
],
|
|
9293
10101
|
},
|
|
9294
10102
|
type: 'array',
|
|
9295
10103
|
},
|
|
@@ -12414,6 +13222,7 @@ export default {
|
|
|
12414
13222
|
'genie',
|
|
12415
13223
|
'doorking',
|
|
12416
13224
|
'salto',
|
|
13225
|
+
'salto_ks',
|
|
12417
13226
|
'lockly',
|
|
12418
13227
|
'ttlock',
|
|
12419
13228
|
'linear',
|