@seamapi/types 1.154.0 → 1.155.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 +11 -271
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +27 -435
- package/lib/seam/connect/models/capability-properties/access-code.d.ts +11 -11
- package/lib/seam/connect/models/capability-properties/access-code.js +1 -0
- package/lib/seam/connect/models/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/models/capability-properties/index.d.ts +5 -5
- package/lib/seam/connect/models/devices/managed-device.d.ts +9 -9
- package/lib/seam/connect/openapi.d.ts +17 -339
- package/lib/seam/connect/openapi.js +5 -265
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -96
- package/package.json +1 -1
- package/src/lib/seam/connect/models/capability-properties/access-code.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +5 -265
- package/src/lib/seam/connect/route-types.ts +10 -86
|
@@ -2183,18 +2183,6 @@ export interface Routes {
|
|
|
2183
2183
|
}>
|
|
2184
2184
|
}
|
|
2185
2185
|
}
|
|
2186
|
-
'/connect_webviews/view': {
|
|
2187
|
-
route: '/connect_webviews/view'
|
|
2188
|
-
method: 'GET'
|
|
2189
|
-
queryParams: {
|
|
2190
|
-
connect_webview_id: string
|
|
2191
|
-
auth_token: string
|
|
2192
|
-
}
|
|
2193
|
-
jsonBody: {}
|
|
2194
|
-
commonParams: {}
|
|
2195
|
-
formData: {}
|
|
2196
|
-
jsonResponse: {}
|
|
2197
|
-
}
|
|
2198
2186
|
'/connected_accounts/delete': {
|
|
2199
2187
|
route: '/connected_accounts/delete'
|
|
2200
2188
|
method: 'DELETE' | 'POST'
|
|
@@ -2733,6 +2721,7 @@ export interface Routes {
|
|
|
2733
2721
|
| 'start_date_in_future'
|
|
2734
2722
|
| 'no_ascending_or_descending_sequence'
|
|
2735
2723
|
| 'at_least_three_unique_digits'
|
|
2724
|
+
| 'cannot_contain_089'
|
|
2736
2725
|
}
|
|
2737
2726
|
| {
|
|
2738
2727
|
constraint_type: 'name_length'
|
|
@@ -3613,6 +3602,7 @@ export interface Routes {
|
|
|
3613
3602
|
| 'start_date_in_future'
|
|
3614
3603
|
| 'no_ascending_or_descending_sequence'
|
|
3615
3604
|
| 'at_least_three_unique_digits'
|
|
3605
|
+
| 'cannot_contain_089'
|
|
3616
3606
|
}
|
|
3617
3607
|
| {
|
|
3618
3608
|
constraint_type: 'name_length'
|
|
@@ -4637,80 +4627,6 @@ export interface Routes {
|
|
|
4637
4627
|
}>
|
|
4638
4628
|
}
|
|
4639
4629
|
}
|
|
4640
|
-
'/health': {
|
|
4641
|
-
route: '/health'
|
|
4642
|
-
method: 'GET' | 'POST'
|
|
4643
|
-
queryParams: {}
|
|
4644
|
-
jsonBody: {}
|
|
4645
|
-
commonParams: {}
|
|
4646
|
-
formData: {}
|
|
4647
|
-
jsonResponse: {
|
|
4648
|
-
ok: boolean
|
|
4649
|
-
msg: 'I\u2019m one with the Force. The Force is with me.'
|
|
4650
|
-
last_service_evaluation_at?: string | undefined
|
|
4651
|
-
service_health_statuses: Array<{
|
|
4652
|
-
service: string
|
|
4653
|
-
status: 'healthy' | 'degraded' | 'down'
|
|
4654
|
-
description: string
|
|
4655
|
-
}>
|
|
4656
|
-
}
|
|
4657
|
-
}
|
|
4658
|
-
'/health/get_health': {
|
|
4659
|
-
route: '/health/get_health'
|
|
4660
|
-
method: 'GET' | 'POST'
|
|
4661
|
-
queryParams: {}
|
|
4662
|
-
jsonBody: {}
|
|
4663
|
-
commonParams: {}
|
|
4664
|
-
formData: {}
|
|
4665
|
-
jsonResponse: {
|
|
4666
|
-
ok: boolean
|
|
4667
|
-
msg: 'I\u2019m one with the Force. The Force is with me.'
|
|
4668
|
-
last_service_evaluation_at?: string | undefined
|
|
4669
|
-
service_health_statuses: Array<{
|
|
4670
|
-
service: string
|
|
4671
|
-
status: 'healthy' | 'degraded' | 'down'
|
|
4672
|
-
description: string
|
|
4673
|
-
}>
|
|
4674
|
-
}
|
|
4675
|
-
}
|
|
4676
|
-
'/health/get_service_health': {
|
|
4677
|
-
route: '/health/get_service_health'
|
|
4678
|
-
method: 'GET' | 'POST'
|
|
4679
|
-
queryParams: {}
|
|
4680
|
-
jsonBody: {}
|
|
4681
|
-
commonParams: {
|
|
4682
|
-
service: string
|
|
4683
|
-
}
|
|
4684
|
-
formData: {}
|
|
4685
|
-
jsonResponse: {
|
|
4686
|
-
ok: true
|
|
4687
|
-
last_service_evaluation_at: string
|
|
4688
|
-
service_health: {
|
|
4689
|
-
service: string
|
|
4690
|
-
status: 'healthy' | 'degraded' | 'down'
|
|
4691
|
-
description: string
|
|
4692
|
-
}
|
|
4693
|
-
}
|
|
4694
|
-
}
|
|
4695
|
-
'/health/service/[service_name]': {
|
|
4696
|
-
route: '/health/service/[service_name]'
|
|
4697
|
-
method: 'GET' | 'POST'
|
|
4698
|
-
queryParams: {}
|
|
4699
|
-
jsonBody: {}
|
|
4700
|
-
commonParams: {
|
|
4701
|
-
service_name: string
|
|
4702
|
-
}
|
|
4703
|
-
formData: {}
|
|
4704
|
-
jsonResponse: {
|
|
4705
|
-
ok: true
|
|
4706
|
-
last_service_evaluation_at: string
|
|
4707
|
-
service_health: {
|
|
4708
|
-
service: string
|
|
4709
|
-
status: 'healthy' | 'degraded' | 'down'
|
|
4710
|
-
description: string
|
|
4711
|
-
}
|
|
4712
|
-
}
|
|
4713
|
-
}
|
|
4714
4630
|
'/locks/get': {
|
|
4715
4631
|
route: '/locks/get'
|
|
4716
4632
|
method: 'GET' | 'POST'
|
|
@@ -5126,6 +5042,7 @@ export interface Routes {
|
|
|
5126
5042
|
| 'start_date_in_future'
|
|
5127
5043
|
| 'no_ascending_or_descending_sequence'
|
|
5128
5044
|
| 'at_least_three_unique_digits'
|
|
5045
|
+
| 'cannot_contain_089'
|
|
5129
5046
|
}
|
|
5130
5047
|
| {
|
|
5131
5048
|
constraint_type: 'name_length'
|
|
@@ -5854,6 +5771,7 @@ export interface Routes {
|
|
|
5854
5771
|
| 'start_date_in_future'
|
|
5855
5772
|
| 'no_ascending_or_descending_sequence'
|
|
5856
5773
|
| 'at_least_three_unique_digits'
|
|
5774
|
+
| 'cannot_contain_089'
|
|
5857
5775
|
}
|
|
5858
5776
|
| {
|
|
5859
5777
|
constraint_type: 'name_length'
|
|
@@ -6734,6 +6652,7 @@ export interface Routes {
|
|
|
6734
6652
|
| 'start_date_in_future'
|
|
6735
6653
|
| 'no_ascending_or_descending_sequence'
|
|
6736
6654
|
| 'at_least_three_unique_digits'
|
|
6655
|
+
| 'cannot_contain_089'
|
|
6737
6656
|
}
|
|
6738
6657
|
| {
|
|
6739
6658
|
constraint_type: 'name_length'
|
|
@@ -7462,6 +7381,7 @@ export interface Routes {
|
|
|
7462
7381
|
| 'start_date_in_future'
|
|
7463
7382
|
| 'no_ascending_or_descending_sequence'
|
|
7464
7383
|
| 'at_least_three_unique_digits'
|
|
7384
|
+
| 'cannot_contain_089'
|
|
7465
7385
|
}
|
|
7466
7386
|
| {
|
|
7467
7387
|
constraint_type: 'name_length'
|
|
@@ -8867,6 +8787,7 @@ export interface Routes {
|
|
|
8867
8787
|
| 'start_date_in_future'
|
|
8868
8788
|
| 'no_ascending_or_descending_sequence'
|
|
8869
8789
|
| 'at_least_three_unique_digits'
|
|
8790
|
+
| 'cannot_contain_089'
|
|
8870
8791
|
}
|
|
8871
8792
|
| {
|
|
8872
8793
|
constraint_type: 'name_length'
|
|
@@ -9829,6 +9750,7 @@ export interface Routes {
|
|
|
9829
9750
|
| 'start_date_in_future'
|
|
9830
9751
|
| 'no_ascending_or_descending_sequence'
|
|
9831
9752
|
| 'at_least_three_unique_digits'
|
|
9753
|
+
| 'cannot_contain_089'
|
|
9832
9754
|
}
|
|
9833
9755
|
| {
|
|
9834
9756
|
constraint_type: 'name_length'
|
|
@@ -10849,6 +10771,7 @@ export interface Routes {
|
|
|
10849
10771
|
| 'start_date_in_future'
|
|
10850
10772
|
| 'no_ascending_or_descending_sequence'
|
|
10851
10773
|
| 'at_least_three_unique_digits'
|
|
10774
|
+
| 'cannot_contain_089'
|
|
10852
10775
|
}
|
|
10853
10776
|
| {
|
|
10854
10777
|
constraint_type: 'name_length'
|
|
@@ -11582,6 +11505,7 @@ export interface Routes {
|
|
|
11582
11505
|
| 'start_date_in_future'
|
|
11583
11506
|
| 'no_ascending_or_descending_sequence'
|
|
11584
11507
|
| 'at_least_three_unique_digits'
|
|
11508
|
+
| 'cannot_contain_089'
|
|
11585
11509
|
}
|
|
11586
11510
|
| {
|
|
11587
11511
|
constraint_type: 'name_length'
|