@seamapi/types 1.811.0 → 1.812.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 +229 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +390 -0
- package/dist/index.cjs +229 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +96 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +22 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +43 -0
- package/lib/seam/connect/openapi.d.ts +195 -0
- package/lib/seam/connect/openapi.js +209 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +121 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +30 -0
- package/src/lib/seam/connect/openapi.ts +239 -0
- package/src/lib/seam/connect/route-types.ts +165 -0
|
@@ -12537,6 +12537,21 @@ export type Routes = {
|
|
|
12537
12537
|
/** ID of the device that does not support access codes. */
|
|
12538
12538
|
device_id: string
|
|
12539
12539
|
}
|
|
12540
|
+
| {
|
|
12541
|
+
/** Date and time at which Seam created the warning. */
|
|
12542
|
+
created_at: string
|
|
12543
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
12544
|
+
message: string
|
|
12545
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12546
|
+
warning_code: 'device_time_constraints_violated'
|
|
12547
|
+
/** ID of the device whose time constraints the access grant violates. */
|
|
12548
|
+
device_id: string
|
|
12549
|
+
/** Specific reason why the grant's times are not programmable on the device. */
|
|
12550
|
+
reason:
|
|
12551
|
+
| 'duration_exceeds_max'
|
|
12552
|
+
| 'times_do_not_match_slots'
|
|
12553
|
+
| 'ongoing_not_supported'
|
|
12554
|
+
}
|
|
12540
12555
|
)[]
|
|
12541
12556
|
/** Errors associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
12542
12557
|
errors: {
|
|
@@ -12748,6 +12763,21 @@ export type Routes = {
|
|
|
12748
12763
|
/** ID of the device that does not support access codes. */
|
|
12749
12764
|
device_id: string
|
|
12750
12765
|
}
|
|
12766
|
+
| {
|
|
12767
|
+
/** Date and time at which Seam created the warning. */
|
|
12768
|
+
created_at: string
|
|
12769
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
12770
|
+
message: string
|
|
12771
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12772
|
+
warning_code: 'device_time_constraints_violated'
|
|
12773
|
+
/** ID of the device whose time constraints the access grant violates. */
|
|
12774
|
+
device_id: string
|
|
12775
|
+
/** Specific reason why the grant's times are not programmable on the device. */
|
|
12776
|
+
reason:
|
|
12777
|
+
| 'duration_exceeds_max'
|
|
12778
|
+
| 'times_do_not_match_slots'
|
|
12779
|
+
| 'ongoing_not_supported'
|
|
12780
|
+
}
|
|
12751
12781
|
)[]
|
|
12752
12782
|
/** Errors associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
12753
12783
|
errors: {
|
|
@@ -15580,6 +15610,21 @@ export type Routes = {
|
|
|
15580
15610
|
/** ID of the device that does not support access codes. */
|
|
15581
15611
|
device_id: string
|
|
15582
15612
|
}
|
|
15613
|
+
| {
|
|
15614
|
+
/** Date and time at which Seam created the warning. */
|
|
15615
|
+
created_at: string
|
|
15616
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15617
|
+
message: string
|
|
15618
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15619
|
+
warning_code: 'device_time_constraints_violated'
|
|
15620
|
+
/** ID of the device whose time constraints the access grant violates. */
|
|
15621
|
+
device_id: string
|
|
15622
|
+
/** Specific reason why the grant's times are not programmable on the device. */
|
|
15623
|
+
reason:
|
|
15624
|
+
| 'duration_exceeds_max'
|
|
15625
|
+
| 'times_do_not_match_slots'
|
|
15626
|
+
| 'ongoing_not_supported'
|
|
15627
|
+
}
|
|
15583
15628
|
)[]
|
|
15584
15629
|
/** Errors associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
15585
15630
|
errors: {
|
|
@@ -15791,6 +15836,21 @@ export type Routes = {
|
|
|
15791
15836
|
/** ID of the device that does not support access codes. */
|
|
15792
15837
|
device_id: string
|
|
15793
15838
|
}
|
|
15839
|
+
| {
|
|
15840
|
+
/** Date and time at which Seam created the warning. */
|
|
15841
|
+
created_at: string
|
|
15842
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15843
|
+
message: string
|
|
15844
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15845
|
+
warning_code: 'device_time_constraints_violated'
|
|
15846
|
+
/** ID of the device whose time constraints the access grant violates. */
|
|
15847
|
+
device_id: string
|
|
15848
|
+
/** Specific reason why the grant's times are not programmable on the device. */
|
|
15849
|
+
reason:
|
|
15850
|
+
| 'duration_exceeds_max'
|
|
15851
|
+
| 'times_do_not_match_slots'
|
|
15852
|
+
| 'ongoing_not_supported'
|
|
15853
|
+
}
|
|
15794
15854
|
)[]
|
|
15795
15855
|
/** Errors associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
15796
15856
|
errors: {
|
|
@@ -15976,6 +16036,21 @@ export type Routes = {
|
|
|
15976
16036
|
/** ID of the device that does not support access codes. */
|
|
15977
16037
|
device_id: string
|
|
15978
16038
|
}
|
|
16039
|
+
| {
|
|
16040
|
+
/** Date and time at which Seam created the warning. */
|
|
16041
|
+
created_at: string
|
|
16042
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16043
|
+
message: string
|
|
16044
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16045
|
+
warning_code: 'device_time_constraints_violated'
|
|
16046
|
+
/** ID of the device whose time constraints the access grant violates. */
|
|
16047
|
+
device_id: string
|
|
16048
|
+
/** Specific reason why the grant's times are not programmable on the device. */
|
|
16049
|
+
reason:
|
|
16050
|
+
| 'duration_exceeds_max'
|
|
16051
|
+
| 'times_do_not_match_slots'
|
|
16052
|
+
| 'ongoing_not_supported'
|
|
16053
|
+
}
|
|
15979
16054
|
)[]
|
|
15980
16055
|
/** Errors associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
15981
16056
|
errors: {
|
|
@@ -16170,6 +16245,21 @@ export type Routes = {
|
|
|
16170
16245
|
/** ID of the device that does not support access codes. */
|
|
16171
16246
|
device_id: string
|
|
16172
16247
|
}
|
|
16248
|
+
| {
|
|
16249
|
+
/** Date and time at which Seam created the warning. */
|
|
16250
|
+
created_at: string
|
|
16251
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16252
|
+
message: string
|
|
16253
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16254
|
+
warning_code: 'device_time_constraints_violated'
|
|
16255
|
+
/** ID of the device whose time constraints the access grant violates. */
|
|
16256
|
+
device_id: string
|
|
16257
|
+
/** Specific reason why the grant's times are not programmable on the device. */
|
|
16258
|
+
reason:
|
|
16259
|
+
| 'duration_exceeds_max'
|
|
16260
|
+
| 'times_do_not_match_slots'
|
|
16261
|
+
| 'ongoing_not_supported'
|
|
16262
|
+
}
|
|
16173
16263
|
)[]
|
|
16174
16264
|
/** Errors associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
16175
16265
|
errors: {
|
|
@@ -20022,6 +20112,21 @@ export type Routes = {
|
|
|
20022
20112
|
/** ID of the device that does not support access codes. */
|
|
20023
20113
|
device_id: string
|
|
20024
20114
|
}
|
|
20115
|
+
| {
|
|
20116
|
+
/** Date and time at which Seam created the warning. */
|
|
20117
|
+
created_at: string
|
|
20118
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20119
|
+
message: string
|
|
20120
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20121
|
+
warning_code: 'device_time_constraints_violated'
|
|
20122
|
+
/** ID of the device whose time constraints the access grant violates. */
|
|
20123
|
+
device_id: string
|
|
20124
|
+
/** Specific reason why the grant's times are not programmable on the device. */
|
|
20125
|
+
reason:
|
|
20126
|
+
| 'duration_exceeds_max'
|
|
20127
|
+
| 'times_do_not_match_slots'
|
|
20128
|
+
| 'ongoing_not_supported'
|
|
20129
|
+
}
|
|
20025
20130
|
)[]
|
|
20026
20131
|
/** Errors associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
20027
20132
|
errors: {
|
|
@@ -73782,6 +73887,21 @@ export type Routes = {
|
|
|
73782
73887
|
/** ID of the device that does not support access codes. */
|
|
73783
73888
|
device_id: string
|
|
73784
73889
|
}
|
|
73890
|
+
| {
|
|
73891
|
+
/** Date and time at which Seam created the warning. */
|
|
73892
|
+
created_at: string
|
|
73893
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73894
|
+
message: string
|
|
73895
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73896
|
+
warning_code: 'device_time_constraints_violated'
|
|
73897
|
+
/** ID of the device whose time constraints the access grant violates. */
|
|
73898
|
+
device_id: string
|
|
73899
|
+
/** Specific reason why the grant's times are not programmable on the device. */
|
|
73900
|
+
reason:
|
|
73901
|
+
| 'duration_exceeds_max'
|
|
73902
|
+
| 'times_do_not_match_slots'
|
|
73903
|
+
| 'ongoing_not_supported'
|
|
73904
|
+
}
|
|
73785
73905
|
)[]
|
|
73786
73906
|
/** Errors associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
73787
73907
|
errors: {
|
|
@@ -80465,6 +80585,21 @@ export type Routes = {
|
|
|
80465
80585
|
/** ID of the device that does not support access codes. */
|
|
80466
80586
|
device_id: string
|
|
80467
80587
|
}
|
|
80588
|
+
| {
|
|
80589
|
+
/** Date and time at which Seam created the warning. */
|
|
80590
|
+
created_at: string
|
|
80591
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
80592
|
+
message: string
|
|
80593
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80594
|
+
warning_code: 'device_time_constraints_violated'
|
|
80595
|
+
/** ID of the device whose time constraints the access grant violates. */
|
|
80596
|
+
device_id: string
|
|
80597
|
+
/** Specific reason why the grant's times are not programmable on the device. */
|
|
80598
|
+
reason:
|
|
80599
|
+
| 'duration_exceeds_max'
|
|
80600
|
+
| 'times_do_not_match_slots'
|
|
80601
|
+
| 'ongoing_not_supported'
|
|
80602
|
+
}
|
|
80468
80603
|
)[]
|
|
80469
80604
|
/** Errors associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
80470
80605
|
errors: {
|
|
@@ -80963,6 +81098,21 @@ export type Routes = {
|
|
|
80963
81098
|
/** ID of the device that does not support access codes. */
|
|
80964
81099
|
device_id: string
|
|
80965
81100
|
}
|
|
81101
|
+
| {
|
|
81102
|
+
/** Date and time at which Seam created the warning. */
|
|
81103
|
+
created_at: string
|
|
81104
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
81105
|
+
message: string
|
|
81106
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
81107
|
+
warning_code: 'device_time_constraints_violated'
|
|
81108
|
+
/** ID of the device whose time constraints the access grant violates. */
|
|
81109
|
+
device_id: string
|
|
81110
|
+
/** Specific reason why the grant's times are not programmable on the device. */
|
|
81111
|
+
reason:
|
|
81112
|
+
| 'duration_exceeds_max'
|
|
81113
|
+
| 'times_do_not_match_slots'
|
|
81114
|
+
| 'ongoing_not_supported'
|
|
81115
|
+
}
|
|
80966
81116
|
)[]
|
|
80967
81117
|
/** Errors associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
80968
81118
|
errors: {
|
|
@@ -114742,6 +114892,21 @@ export type Routes = {
|
|
|
114742
114892
|
/** ID of the device that does not support access codes. */
|
|
114743
114893
|
device_id: string
|
|
114744
114894
|
}
|
|
114895
|
+
| {
|
|
114896
|
+
/** Date and time at which Seam created the warning. */
|
|
114897
|
+
created_at: string
|
|
114898
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
114899
|
+
message: string
|
|
114900
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114901
|
+
warning_code: 'device_time_constraints_violated'
|
|
114902
|
+
/** ID of the device whose time constraints the access grant violates. */
|
|
114903
|
+
device_id: string
|
|
114904
|
+
/** Specific reason why the grant's times are not programmable on the device. */
|
|
114905
|
+
reason:
|
|
114906
|
+
| 'duration_exceeds_max'
|
|
114907
|
+
| 'times_do_not_match_slots'
|
|
114908
|
+
| 'ongoing_not_supported'
|
|
114909
|
+
}
|
|
114745
114910
|
)[]
|
|
114746
114911
|
/** Errors associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
114747
114912
|
errors: {
|