@seamapi/types 1.990.0 → 1.991.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/lib/seam/connect/models/access-codes/managed-access-code.d.ts +0 -71
- package/lib/seam/connect/models/access-codes/managed-access-code.js +2 -21
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +0 -26
- package/lib/seam/connect/models/devices/device.d.ts +0 -58
- package/lib/seam/connect/models/devices/device.js +3 -20
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -21
- package/lib/seam/connect/openapi.js +44 -66
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +88 -206
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +1 -26
- package/src/lib/seam/connect/models/devices/device.ts +3 -21
- package/src/lib/seam/connect/openapi.ts +48 -76
- package/src/lib/seam/connect/route-types.ts +88 -226
|
@@ -1885,12 +1885,14 @@ export type Routes = {
|
|
|
1885
1885
|
} | {
|
|
1886
1886
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1887
1887
|
message: string;
|
|
1888
|
-
/** Indicates that
|
|
1889
|
-
|
|
1888
|
+
/** Indicates that the error is not a device error. */
|
|
1889
|
+
is_device_error: false;
|
|
1890
1890
|
/** Date and time at which Seam created the error. */
|
|
1891
|
-
created_at
|
|
1891
|
+
created_at: string;
|
|
1892
1892
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1893
|
-
error_code: '
|
|
1893
|
+
error_code: 'account_disconnected';
|
|
1894
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
1895
|
+
is_connected_account_error: true;
|
|
1894
1896
|
} | {
|
|
1895
1897
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1896
1898
|
message: string;
|
|
@@ -1899,7 +1901,7 @@ export type Routes = {
|
|
|
1899
1901
|
/** Date and time at which Seam created the error. */
|
|
1900
1902
|
created_at: string;
|
|
1901
1903
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1902
|
-
error_code: '
|
|
1904
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
1903
1905
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
1904
1906
|
is_connected_account_error: true;
|
|
1905
1907
|
} | {
|
|
@@ -1910,7 +1912,7 @@ export type Routes = {
|
|
|
1910
1912
|
/** Date and time at which Seam created the error. */
|
|
1911
1913
|
created_at: string;
|
|
1912
1914
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1913
|
-
error_code: '
|
|
1915
|
+
error_code: 'insufficient_permissions';
|
|
1914
1916
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
1915
1917
|
is_connected_account_error: true;
|
|
1916
1918
|
} | {
|
|
@@ -2371,12 +2373,14 @@ export type Routes = {
|
|
|
2371
2373
|
} | {
|
|
2372
2374
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2373
2375
|
message: string;
|
|
2374
|
-
/** Indicates that
|
|
2375
|
-
|
|
2376
|
+
/** Indicates that the error is not a device error. */
|
|
2377
|
+
is_device_error: false;
|
|
2376
2378
|
/** Date and time at which Seam created the error. */
|
|
2377
|
-
created_at
|
|
2379
|
+
created_at: string;
|
|
2378
2380
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2379
|
-
error_code: '
|
|
2381
|
+
error_code: 'account_disconnected';
|
|
2382
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
2383
|
+
is_connected_account_error: true;
|
|
2380
2384
|
} | {
|
|
2381
2385
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2382
2386
|
message: string;
|
|
@@ -2385,7 +2389,7 @@ export type Routes = {
|
|
|
2385
2389
|
/** Date and time at which Seam created the error. */
|
|
2386
2390
|
created_at: string;
|
|
2387
2391
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2388
|
-
error_code: '
|
|
2392
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
2389
2393
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
2390
2394
|
is_connected_account_error: true;
|
|
2391
2395
|
} | {
|
|
@@ -2396,7 +2400,7 @@ export type Routes = {
|
|
|
2396
2400
|
/** Date and time at which Seam created the error. */
|
|
2397
2401
|
created_at: string;
|
|
2398
2402
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2399
|
-
error_code: '
|
|
2403
|
+
error_code: 'insufficient_permissions';
|
|
2400
2404
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
2401
2405
|
is_connected_account_error: true;
|
|
2402
2406
|
} | {
|
|
@@ -4604,12 +4608,14 @@ export type Routes = {
|
|
|
4604
4608
|
} | {
|
|
4605
4609
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4606
4610
|
message: string;
|
|
4607
|
-
/** Indicates that
|
|
4608
|
-
|
|
4611
|
+
/** Indicates that the error is not a device error. */
|
|
4612
|
+
is_device_error: false;
|
|
4609
4613
|
/** Date and time at which Seam created the error. */
|
|
4610
|
-
created_at
|
|
4614
|
+
created_at: string;
|
|
4611
4615
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4612
|
-
error_code: '
|
|
4616
|
+
error_code: 'account_disconnected';
|
|
4617
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
4618
|
+
is_connected_account_error: true;
|
|
4613
4619
|
} | {
|
|
4614
4620
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4615
4621
|
message: string;
|
|
@@ -4618,7 +4624,7 @@ export type Routes = {
|
|
|
4618
4624
|
/** Date and time at which Seam created the error. */
|
|
4619
4625
|
created_at: string;
|
|
4620
4626
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4621
|
-
error_code: '
|
|
4627
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
4622
4628
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
4623
4629
|
is_connected_account_error: true;
|
|
4624
4630
|
} | {
|
|
@@ -4629,7 +4635,7 @@ export type Routes = {
|
|
|
4629
4635
|
/** Date and time at which Seam created the error. */
|
|
4630
4636
|
created_at: string;
|
|
4631
4637
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4632
|
-
error_code: '
|
|
4638
|
+
error_code: 'insufficient_permissions';
|
|
4633
4639
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
4634
4640
|
is_connected_account_error: true;
|
|
4635
4641
|
} | {
|
|
@@ -5138,12 +5144,14 @@ export type Routes = {
|
|
|
5138
5144
|
} | {
|
|
5139
5145
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5140
5146
|
message: string;
|
|
5141
|
-
/** Indicates that
|
|
5142
|
-
|
|
5147
|
+
/** Indicates that the error is not a device error. */
|
|
5148
|
+
is_device_error: false;
|
|
5143
5149
|
/** Date and time at which Seam created the error. */
|
|
5144
|
-
created_at
|
|
5150
|
+
created_at: string;
|
|
5145
5151
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5146
|
-
error_code: '
|
|
5152
|
+
error_code: 'account_disconnected';
|
|
5153
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
5154
|
+
is_connected_account_error: true;
|
|
5147
5155
|
} | {
|
|
5148
5156
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5149
5157
|
message: string;
|
|
@@ -5152,7 +5160,7 @@ export type Routes = {
|
|
|
5152
5160
|
/** Date and time at which Seam created the error. */
|
|
5153
5161
|
created_at: string;
|
|
5154
5162
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5155
|
-
error_code: '
|
|
5163
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
5156
5164
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
5157
5165
|
is_connected_account_error: true;
|
|
5158
5166
|
} | {
|
|
@@ -5163,7 +5171,7 @@ export type Routes = {
|
|
|
5163
5171
|
/** Date and time at which Seam created the error. */
|
|
5164
5172
|
created_at: string;
|
|
5165
5173
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5166
|
-
error_code: '
|
|
5174
|
+
error_code: 'insufficient_permissions';
|
|
5167
5175
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
5168
5176
|
is_connected_account_error: true;
|
|
5169
5177
|
} | {
|
|
@@ -5615,12 +5623,14 @@ export type Routes = {
|
|
|
5615
5623
|
} | {
|
|
5616
5624
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5617
5625
|
message: string;
|
|
5618
|
-
/** Indicates that
|
|
5619
|
-
|
|
5626
|
+
/** Indicates that the error is not a device error. */
|
|
5627
|
+
is_device_error: false;
|
|
5620
5628
|
/** Date and time at which Seam created the error. */
|
|
5621
|
-
created_at
|
|
5629
|
+
created_at: string;
|
|
5622
5630
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5623
|
-
error_code: '
|
|
5631
|
+
error_code: 'account_disconnected';
|
|
5632
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
5633
|
+
is_connected_account_error: true;
|
|
5624
5634
|
} | {
|
|
5625
5635
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5626
5636
|
message: string;
|
|
@@ -5629,7 +5639,7 @@ export type Routes = {
|
|
|
5629
5639
|
/** Date and time at which Seam created the error. */
|
|
5630
5640
|
created_at: string;
|
|
5631
5641
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5632
|
-
error_code: '
|
|
5642
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
5633
5643
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
5634
5644
|
is_connected_account_error: true;
|
|
5635
5645
|
} | {
|
|
@@ -5640,7 +5650,7 @@ export type Routes = {
|
|
|
5640
5650
|
/** Date and time at which Seam created the error. */
|
|
5641
5651
|
created_at: string;
|
|
5642
5652
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5643
|
-
error_code: '
|
|
5653
|
+
error_code: 'insufficient_permissions';
|
|
5644
5654
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
5645
5655
|
is_connected_account_error: true;
|
|
5646
5656
|
} | {
|
|
@@ -6069,12 +6079,14 @@ export type Routes = {
|
|
|
6069
6079
|
} | {
|
|
6070
6080
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6071
6081
|
message: string;
|
|
6072
|
-
/** Indicates that
|
|
6073
|
-
|
|
6082
|
+
/** Indicates that the error is not a device error. */
|
|
6083
|
+
is_device_error: false;
|
|
6074
6084
|
/** Date and time at which Seam created the error. */
|
|
6075
|
-
created_at
|
|
6085
|
+
created_at: string;
|
|
6076
6086
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6077
|
-
error_code: '
|
|
6087
|
+
error_code: 'account_disconnected';
|
|
6088
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6089
|
+
is_connected_account_error: true;
|
|
6078
6090
|
} | {
|
|
6079
6091
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6080
6092
|
message: string;
|
|
@@ -6083,7 +6095,7 @@ export type Routes = {
|
|
|
6083
6095
|
/** Date and time at which Seam created the error. */
|
|
6084
6096
|
created_at: string;
|
|
6085
6097
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6086
|
-
error_code: '
|
|
6098
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
6087
6099
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6088
6100
|
is_connected_account_error: true;
|
|
6089
6101
|
} | {
|
|
@@ -6094,7 +6106,7 @@ export type Routes = {
|
|
|
6094
6106
|
/** Date and time at which Seam created the error. */
|
|
6095
6107
|
created_at: string;
|
|
6096
6108
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6097
|
-
error_code: '
|
|
6109
|
+
error_code: 'insufficient_permissions';
|
|
6098
6110
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6099
6111
|
is_connected_account_error: true;
|
|
6100
6112
|
} | {
|
|
@@ -6556,12 +6568,14 @@ export type Routes = {
|
|
|
6556
6568
|
} | {
|
|
6557
6569
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6558
6570
|
message: string;
|
|
6559
|
-
/** Indicates that
|
|
6560
|
-
|
|
6571
|
+
/** Indicates that the error is not a device error. */
|
|
6572
|
+
is_device_error: false;
|
|
6561
6573
|
/** Date and time at which Seam created the error. */
|
|
6562
|
-
created_at
|
|
6574
|
+
created_at: string;
|
|
6563
6575
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6564
|
-
error_code: '
|
|
6576
|
+
error_code: 'account_disconnected';
|
|
6577
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6578
|
+
is_connected_account_error: true;
|
|
6565
6579
|
} | {
|
|
6566
6580
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6567
6581
|
message: string;
|
|
@@ -6570,7 +6584,7 @@ export type Routes = {
|
|
|
6570
6584
|
/** Date and time at which Seam created the error. */
|
|
6571
6585
|
created_at: string;
|
|
6572
6586
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6573
|
-
error_code: '
|
|
6587
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
6574
6588
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6575
6589
|
is_connected_account_error: true;
|
|
6576
6590
|
} | {
|
|
@@ -6581,7 +6595,7 @@ export type Routes = {
|
|
|
6581
6595
|
/** Date and time at which Seam created the error. */
|
|
6582
6596
|
created_at: string;
|
|
6583
6597
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6584
|
-
error_code: '
|
|
6598
|
+
error_code: 'insufficient_permissions';
|
|
6585
6599
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6586
6600
|
is_connected_account_error: true;
|
|
6587
6601
|
} | {
|
|
@@ -8698,12 +8712,14 @@ export type Routes = {
|
|
|
8698
8712
|
} | {
|
|
8699
8713
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8700
8714
|
message: string;
|
|
8701
|
-
/** Indicates that
|
|
8702
|
-
|
|
8715
|
+
/** Indicates that the error is not a device error. */
|
|
8716
|
+
is_device_error: false;
|
|
8703
8717
|
/** Date and time at which Seam created the error. */
|
|
8704
|
-
created_at
|
|
8718
|
+
created_at: string;
|
|
8705
8719
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8706
|
-
error_code: '
|
|
8720
|
+
error_code: 'account_disconnected';
|
|
8721
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
8722
|
+
is_connected_account_error: true;
|
|
8707
8723
|
} | {
|
|
8708
8724
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8709
8725
|
message: string;
|
|
@@ -8712,7 +8728,7 @@ export type Routes = {
|
|
|
8712
8728
|
/** Date and time at which Seam created the error. */
|
|
8713
8729
|
created_at: string;
|
|
8714
8730
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8715
|
-
error_code: '
|
|
8731
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
8716
8732
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
8717
8733
|
is_connected_account_error: true;
|
|
8718
8734
|
} | {
|
|
@@ -8723,7 +8739,7 @@ export type Routes = {
|
|
|
8723
8739
|
/** Date and time at which Seam created the error. */
|
|
8724
8740
|
created_at: string;
|
|
8725
8741
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8726
|
-
error_code: '
|
|
8742
|
+
error_code: 'insufficient_permissions';
|
|
8727
8743
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
8728
8744
|
is_connected_account_error: true;
|
|
8729
8745
|
} | {
|
|
@@ -9071,12 +9087,14 @@ export type Routes = {
|
|
|
9071
9087
|
} | {
|
|
9072
9088
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9073
9089
|
message: string;
|
|
9074
|
-
/** Indicates that
|
|
9075
|
-
|
|
9090
|
+
/** Indicates that the error is not a device error. */
|
|
9091
|
+
is_device_error: false;
|
|
9076
9092
|
/** Date and time at which Seam created the error. */
|
|
9077
|
-
created_at
|
|
9093
|
+
created_at: string;
|
|
9078
9094
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9079
|
-
error_code: '
|
|
9095
|
+
error_code: 'account_disconnected';
|
|
9096
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
9097
|
+
is_connected_account_error: true;
|
|
9080
9098
|
} | {
|
|
9081
9099
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9082
9100
|
message: string;
|
|
@@ -9085,7 +9103,7 @@ export type Routes = {
|
|
|
9085
9103
|
/** Date and time at which Seam created the error. */
|
|
9086
9104
|
created_at: string;
|
|
9087
9105
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9088
|
-
error_code: '
|
|
9106
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
9089
9107
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
9090
9108
|
is_connected_account_error: true;
|
|
9091
9109
|
} | {
|
|
@@ -9096,7 +9114,7 @@ export type Routes = {
|
|
|
9096
9114
|
/** Date and time at which Seam created the error. */
|
|
9097
9115
|
created_at: string;
|
|
9098
9116
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9099
|
-
error_code: '
|
|
9117
|
+
error_code: 'insufficient_permissions';
|
|
9100
9118
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
9101
9119
|
is_connected_account_error: true;
|
|
9102
9120
|
} | {
|
|
@@ -13091,13 +13109,6 @@ export type Routes = {
|
|
|
13091
13109
|
active_access_code_count: number;
|
|
13092
13110
|
/** Maximum number of active access codes supported by the device. */
|
|
13093
13111
|
max_active_access_code_count: number;
|
|
13094
|
-
} | {
|
|
13095
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13096
|
-
message: string;
|
|
13097
|
-
/** Date and time at which Seam created the warning. */
|
|
13098
|
-
created_at: string;
|
|
13099
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13100
|
-
warning_code: 'insufficient_permissions';
|
|
13101
13112
|
})[];
|
|
13102
13113
|
/** Date and time at which the device object was created. */
|
|
13103
13114
|
created_at: string;
|
|
@@ -20016,13 +20027,6 @@ export type Routes = {
|
|
|
20016
20027
|
active_access_code_count: number;
|
|
20017
20028
|
/** Maximum number of active access codes supported by the device. */
|
|
20018
20029
|
max_active_access_code_count: number;
|
|
20019
|
-
} | {
|
|
20020
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20021
|
-
message: string;
|
|
20022
|
-
/** Date and time at which Seam created the warning. */
|
|
20023
|
-
created_at: string;
|
|
20024
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20025
|
-
warning_code: 'insufficient_permissions';
|
|
20026
20030
|
})[];
|
|
20027
20031
|
/** Date and time at which the device object was created. */
|
|
20028
20032
|
created_at: string;
|
|
@@ -43345,13 +43349,6 @@ export type Routes = {
|
|
|
43345
43349
|
active_access_code_count: number;
|
|
43346
43350
|
/** Maximum number of active access codes supported by the device. */
|
|
43347
43351
|
max_active_access_code_count: number;
|
|
43348
|
-
} | {
|
|
43349
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43350
|
-
message: string;
|
|
43351
|
-
/** Date and time at which Seam created the warning. */
|
|
43352
|
-
created_at: string;
|
|
43353
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43354
|
-
warning_code: 'insufficient_permissions';
|
|
43355
43352
|
})[];
|
|
43356
43353
|
/** Date and time at which the device object was created. */
|
|
43357
43354
|
created_at: string;
|
|
@@ -44882,13 +44879,6 @@ export type Routes = {
|
|
|
44882
44879
|
active_access_code_count: number;
|
|
44883
44880
|
/** Maximum number of active access codes supported by the device. */
|
|
44884
44881
|
max_active_access_code_count: number;
|
|
44885
|
-
} | {
|
|
44886
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44887
|
-
message: string;
|
|
44888
|
-
/** Date and time at which Seam created the warning. */
|
|
44889
|
-
created_at: string;
|
|
44890
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44891
|
-
warning_code: 'insufficient_permissions';
|
|
44892
44882
|
})[];
|
|
44893
44883
|
/** Date and time at which the device object was created. */
|
|
44894
44884
|
created_at: string;
|
|
@@ -45518,13 +45508,6 @@ export type Routes = {
|
|
|
45518
45508
|
active_access_code_count: number;
|
|
45519
45509
|
/** Maximum number of active access codes supported by the device. */
|
|
45520
45510
|
max_active_access_code_count: number;
|
|
45521
|
-
} | {
|
|
45522
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45523
|
-
message: string;
|
|
45524
|
-
/** Date and time at which Seam created the warning. */
|
|
45525
|
-
created_at: string;
|
|
45526
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45527
|
-
warning_code: 'insufficient_permissions';
|
|
45528
45511
|
})[];
|
|
45529
45512
|
/** Date and time at which the device object was created. */
|
|
45530
45513
|
created_at: string;
|
|
@@ -46056,13 +46039,6 @@ export type Routes = {
|
|
|
46056
46039
|
active_access_code_count: number;
|
|
46057
46040
|
/** Maximum number of active access codes supported by the device. */
|
|
46058
46041
|
max_active_access_code_count: number;
|
|
46059
|
-
} | {
|
|
46060
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
46061
|
-
message: string;
|
|
46062
|
-
/** Date and time at which Seam created the warning. */
|
|
46063
|
-
created_at: string;
|
|
46064
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46065
|
-
warning_code: 'insufficient_permissions';
|
|
46066
46042
|
})[];
|
|
46067
46043
|
/** Date and time at which the device object was created. */
|
|
46068
46044
|
created_at: string;
|
|
@@ -56015,13 +55991,6 @@ export type Routes = {
|
|
|
56015
55991
|
active_access_code_count: number;
|
|
56016
55992
|
/** Maximum number of active access codes supported by the device. */
|
|
56017
55993
|
max_active_access_code_count: number;
|
|
56018
|
-
} | {
|
|
56019
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56020
|
-
message: string;
|
|
56021
|
-
/** Date and time at which Seam created the warning. */
|
|
56022
|
-
created_at: string;
|
|
56023
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56024
|
-
warning_code: 'insufficient_permissions';
|
|
56025
55994
|
})[];
|
|
56026
55995
|
/** Date and time at which the device object was created. */
|
|
56027
55996
|
created_at: string;
|
|
@@ -57502,13 +57471,6 @@ export type Routes = {
|
|
|
57502
57471
|
active_access_code_count: number;
|
|
57503
57472
|
/** Maximum number of active access codes supported by the device. */
|
|
57504
57473
|
max_active_access_code_count: number;
|
|
57505
|
-
} | {
|
|
57506
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57507
|
-
message: string;
|
|
57508
|
-
/** Date and time at which Seam created the warning. */
|
|
57509
|
-
created_at: string;
|
|
57510
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57511
|
-
warning_code: 'insufficient_permissions';
|
|
57512
57474
|
})[];
|
|
57513
57475
|
/** Date and time at which the device object was created. */
|
|
57514
57476
|
created_at: string;
|
|
@@ -59039,13 +59001,6 @@ export type Routes = {
|
|
|
59039
59001
|
active_access_code_count: number;
|
|
59040
59002
|
/** Maximum number of active access codes supported by the device. */
|
|
59041
59003
|
max_active_access_code_count: number;
|
|
59042
|
-
} | {
|
|
59043
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
59044
|
-
message: string;
|
|
59045
|
-
/** Date and time at which Seam created the warning. */
|
|
59046
|
-
created_at: string;
|
|
59047
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59048
|
-
warning_code: 'insufficient_permissions';
|
|
59049
59004
|
})[];
|
|
59050
59005
|
/** Date and time at which the device object was created. */
|
|
59051
59006
|
created_at: string;
|
|
@@ -60525,13 +60480,6 @@ export type Routes = {
|
|
|
60525
60480
|
active_access_code_count: number;
|
|
60526
60481
|
/** Maximum number of active access codes supported by the device. */
|
|
60527
60482
|
max_active_access_code_count: number;
|
|
60528
|
-
} | {
|
|
60529
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60530
|
-
message: string;
|
|
60531
|
-
/** Date and time at which Seam created the warning. */
|
|
60532
|
-
created_at: string;
|
|
60533
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60534
|
-
warning_code: 'insufficient_permissions';
|
|
60535
60483
|
})[];
|
|
60536
60484
|
/** Date and time at which the device object was created. */
|
|
60537
60485
|
created_at: string;
|
|
@@ -69024,13 +68972,6 @@ export type Routes = {
|
|
|
69024
68972
|
active_access_code_count: number;
|
|
69025
68973
|
/** Maximum number of active access codes supported by the device. */
|
|
69026
68974
|
max_active_access_code_count: number;
|
|
69027
|
-
} | {
|
|
69028
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
69029
|
-
message: string;
|
|
69030
|
-
/** Date and time at which Seam created the warning. */
|
|
69031
|
-
created_at: string;
|
|
69032
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69033
|
-
warning_code: 'insufficient_permissions';
|
|
69034
68975
|
})[];
|
|
69035
68976
|
/** Date and time at which the device object was created. */
|
|
69036
68977
|
created_at: string;
|
|
@@ -70510,13 +70451,6 @@ export type Routes = {
|
|
|
70510
70451
|
active_access_code_count: number;
|
|
70511
70452
|
/** Maximum number of active access codes supported by the device. */
|
|
70512
70453
|
max_active_access_code_count: number;
|
|
70513
|
-
} | {
|
|
70514
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
70515
|
-
message: string;
|
|
70516
|
-
/** Date and time at which Seam created the warning. */
|
|
70517
|
-
created_at: string;
|
|
70518
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70519
|
-
warning_code: 'insufficient_permissions';
|
|
70520
70454
|
})[];
|
|
70521
70455
|
/** Date and time at which the device object was created. */
|
|
70522
70456
|
created_at: string;
|
|
@@ -87248,13 +87182,6 @@ export type Routes = {
|
|
|
87248
87182
|
active_access_code_count: number;
|
|
87249
87183
|
/** Maximum number of active access codes supported by the device. */
|
|
87250
87184
|
max_active_access_code_count: number;
|
|
87251
|
-
} | {
|
|
87252
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
87253
|
-
message: string;
|
|
87254
|
-
/** Date and time at which Seam created the warning. */
|
|
87255
|
-
created_at: string;
|
|
87256
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
87257
|
-
warning_code: 'insufficient_permissions';
|
|
87258
87185
|
})[];
|
|
87259
87186
|
/** Date and time at which the device object was created. */
|
|
87260
87187
|
created_at: string;
|
|
@@ -94967,13 +94894,6 @@ export type Routes = {
|
|
|
94967
94894
|
active_access_code_count: number;
|
|
94968
94895
|
/** Maximum number of active access codes supported by the device. */
|
|
94969
94896
|
max_active_access_code_count: number;
|
|
94970
|
-
} | {
|
|
94971
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
94972
|
-
message: string;
|
|
94973
|
-
/** Date and time at which Seam created the warning. */
|
|
94974
|
-
created_at: string;
|
|
94975
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
94976
|
-
warning_code: 'insufficient_permissions';
|
|
94977
94897
|
})[];
|
|
94978
94898
|
/** Date and time at which the device object was created. */
|
|
94979
94899
|
created_at: string;
|
|
@@ -99998,13 +99918,6 @@ export type Routes = {
|
|
|
99998
99918
|
active_access_code_count: number;
|
|
99999
99919
|
/** Maximum number of active access codes supported by the device. */
|
|
100000
99920
|
max_active_access_code_count: number;
|
|
100001
|
-
} | {
|
|
100002
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
100003
|
-
message: string;
|
|
100004
|
-
/** Date and time at which Seam created the warning. */
|
|
100005
|
-
created_at: string;
|
|
100006
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100007
|
-
warning_code: 'insufficient_permissions';
|
|
100008
99921
|
})[];
|
|
100009
99922
|
/** Date and time at which the device object was created. */
|
|
100010
99923
|
created_at: string;
|
|
@@ -101484,13 +101397,6 @@ export type Routes = {
|
|
|
101484
101397
|
active_access_code_count: number;
|
|
101485
101398
|
/** Maximum number of active access codes supported by the device. */
|
|
101486
101399
|
max_active_access_code_count: number;
|
|
101487
|
-
} | {
|
|
101488
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
101489
|
-
message: string;
|
|
101490
|
-
/** Date and time at which Seam created the warning. */
|
|
101491
|
-
created_at: string;
|
|
101492
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101493
|
-
warning_code: 'insufficient_permissions';
|
|
101494
101400
|
})[];
|
|
101495
101401
|
/** Date and time at which the device object was created. */
|
|
101496
101402
|
created_at: string;
|
|
@@ -110928,13 +110834,6 @@ export type Routes = {
|
|
|
110928
110834
|
active_access_code_count: number;
|
|
110929
110835
|
/** Maximum number of active access codes supported by the device. */
|
|
110930
110836
|
max_active_access_code_count: number;
|
|
110931
|
-
} | {
|
|
110932
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
110933
|
-
message: string;
|
|
110934
|
-
/** Date and time at which Seam created the warning. */
|
|
110935
|
-
created_at: string;
|
|
110936
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110937
|
-
warning_code: 'insufficient_permissions';
|
|
110938
110837
|
})[];
|
|
110939
110838
|
/** Date and time at which the device object was created. */
|
|
110940
110839
|
created_at: string;
|
|
@@ -112416,13 +112315,6 @@ export type Routes = {
|
|
|
112416
112315
|
active_access_code_count: number;
|
|
112417
112316
|
/** Maximum number of active access codes supported by the device. */
|
|
112418
112317
|
max_active_access_code_count: number;
|
|
112419
|
-
} | {
|
|
112420
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
112421
|
-
message: string;
|
|
112422
|
-
/** Date and time at which Seam created the warning. */
|
|
112423
|
-
created_at: string;
|
|
112424
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
112425
|
-
warning_code: 'insufficient_permissions';
|
|
112426
112318
|
})[];
|
|
112427
112319
|
/** Date and time at which the device object was created. */
|
|
112428
112320
|
created_at: string;
|
|
@@ -115202,13 +115094,6 @@ export type Routes = {
|
|
|
115202
115094
|
active_access_code_count: number;
|
|
115203
115095
|
/** Maximum number of active access codes supported by the device. */
|
|
115204
115096
|
max_active_access_code_count: number;
|
|
115205
|
-
} | {
|
|
115206
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
115207
|
-
message: string;
|
|
115208
|
-
/** Date and time at which Seam created the warning. */
|
|
115209
|
-
created_at: string;
|
|
115210
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115211
|
-
warning_code: 'insufficient_permissions';
|
|
115212
115097
|
})[];
|
|
115213
115098
|
/** Date and time at which the device object was created. */
|
|
115214
115099
|
created_at: string;
|
|
@@ -118618,13 +118503,6 @@ export type Routes = {
|
|
|
118618
118503
|
active_access_code_count: number;
|
|
118619
118504
|
/** Maximum number of active access codes supported by the device. */
|
|
118620
118505
|
max_active_access_code_count: number;
|
|
118621
|
-
} | {
|
|
118622
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118623
|
-
message: string;
|
|
118624
|
-
/** Date and time at which Seam created the warning. */
|
|
118625
|
-
created_at: string;
|
|
118626
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118627
|
-
warning_code: 'insufficient_permissions';
|
|
118628
118506
|
})[];
|
|
118629
118507
|
/** Date and time at which the device object was created. */
|
|
118630
118508
|
created_at: string;
|
|
@@ -122936,12 +122814,14 @@ export type Routes = {
|
|
|
122936
122814
|
} | {
|
|
122937
122815
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
122938
122816
|
message: string;
|
|
122939
|
-
/** Indicates that
|
|
122940
|
-
|
|
122817
|
+
/** Indicates that the error is not a device error. */
|
|
122818
|
+
is_device_error: false;
|
|
122941
122819
|
/** Date and time at which Seam created the error. */
|
|
122942
|
-
created_at
|
|
122820
|
+
created_at: string;
|
|
122943
122821
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
122944
|
-
error_code: '
|
|
122822
|
+
error_code: 'account_disconnected';
|
|
122823
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
122824
|
+
is_connected_account_error: true;
|
|
122945
122825
|
} | {
|
|
122946
122826
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
122947
122827
|
message: string;
|
|
@@ -122950,7 +122830,7 @@ export type Routes = {
|
|
|
122950
122830
|
/** Date and time at which Seam created the error. */
|
|
122951
122831
|
created_at: string;
|
|
122952
122832
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
122953
|
-
error_code: '
|
|
122833
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
122954
122834
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
122955
122835
|
is_connected_account_error: true;
|
|
122956
122836
|
} | {
|
|
@@ -122961,7 +122841,7 @@ export type Routes = {
|
|
|
122961
122841
|
/** Date and time at which Seam created the error. */
|
|
122962
122842
|
created_at: string;
|
|
122963
122843
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
122964
|
-
error_code: '
|
|
122844
|
+
error_code: 'insufficient_permissions';
|
|
122965
122845
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
122966
122846
|
is_connected_account_error: true;
|
|
122967
122847
|
} | {
|
|
@@ -123293,12 +123173,14 @@ export type Routes = {
|
|
|
123293
123173
|
} | {
|
|
123294
123174
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123295
123175
|
message: string;
|
|
123296
|
-
/** Indicates that
|
|
123297
|
-
|
|
123176
|
+
/** Indicates that the error is not a device error. */
|
|
123177
|
+
is_device_error: false;
|
|
123298
123178
|
/** Date and time at which Seam created the error. */
|
|
123299
|
-
created_at
|
|
123179
|
+
created_at: string;
|
|
123300
123180
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123301
|
-
error_code: '
|
|
123181
|
+
error_code: 'account_disconnected';
|
|
123182
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
123183
|
+
is_connected_account_error: true;
|
|
123302
123184
|
} | {
|
|
123303
123185
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123304
123186
|
message: string;
|
|
@@ -123307,7 +123189,7 @@ export type Routes = {
|
|
|
123307
123189
|
/** Date and time at which Seam created the error. */
|
|
123308
123190
|
created_at: string;
|
|
123309
123191
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123310
|
-
error_code: '
|
|
123192
|
+
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
123311
123193
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
123312
123194
|
is_connected_account_error: true;
|
|
123313
123195
|
} | {
|
|
@@ -123318,7 +123200,7 @@ export type Routes = {
|
|
|
123318
123200
|
/** Date and time at which Seam created the error. */
|
|
123319
123201
|
created_at: string;
|
|
123320
123202
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123321
|
-
error_code: '
|
|
123203
|
+
error_code: 'insufficient_permissions';
|
|
123322
123204
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
123323
123205
|
is_connected_account_error: true;
|
|
123324
123206
|
} | {
|