@seamapi/types 1.945.0 → 1.947.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 +10 -81
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +24 -191
- package/dist/index.cjs +10 -81
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +16 -87
- package/lib/seam/connect/models/access-codes/managed-access-code.js +5 -22
- 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 +5 -31
- package/lib/seam/connect/openapi.js +4 -62
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -110
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +12 -33
- package/src/lib/seam/connect/openapi.ts +4 -70
- package/src/lib/seam/connect/route-types.ts +11 -121
|
@@ -2114,16 +2114,6 @@ export type Routes = {
|
|
|
2114
2114
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2115
2115
|
error_code: 'access_code_inactive'
|
|
2116
2116
|
}
|
|
2117
|
-
| {
|
|
2118
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2119
|
-
message: string
|
|
2120
|
-
/** Indicates that this is an access code error. */
|
|
2121
|
-
is_access_code_error: true
|
|
2122
|
-
/** Date and time at which Seam created the error. */
|
|
2123
|
-
created_at?: string | undefined
|
|
2124
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2125
|
-
error_code: 'salto_ks_user_not_subscribed'
|
|
2126
|
-
}
|
|
2127
2117
|
| {
|
|
2128
2118
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2129
2119
|
message: string
|
|
@@ -2319,7 +2309,7 @@ export type Routes = {
|
|
|
2319
2309
|
/** Date and time at which Seam created the warning. */
|
|
2320
2310
|
created_at?: string | undefined
|
|
2321
2311
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2322
|
-
warning_code: '
|
|
2312
|
+
warning_code: 'time_frame_adjusted_for_unknown_time_zone'
|
|
2323
2313
|
}
|
|
2324
2314
|
| {
|
|
2325
2315
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -2689,16 +2679,6 @@ export type Routes = {
|
|
|
2689
2679
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2690
2680
|
error_code: 'access_code_inactive'
|
|
2691
2681
|
}
|
|
2692
|
-
| {
|
|
2693
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2694
|
-
message: string
|
|
2695
|
-
/** Indicates that this is an access code error. */
|
|
2696
|
-
is_access_code_error: true
|
|
2697
|
-
/** Date and time at which Seam created the error. */
|
|
2698
|
-
created_at?: string | undefined
|
|
2699
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2700
|
-
error_code: 'salto_ks_user_not_subscribed'
|
|
2701
|
-
}
|
|
2702
2682
|
| {
|
|
2703
2683
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2704
2684
|
message: string
|
|
@@ -2894,7 +2874,7 @@ export type Routes = {
|
|
|
2894
2874
|
/** Date and time at which Seam created the warning. */
|
|
2895
2875
|
created_at?: string | undefined
|
|
2896
2876
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2897
|
-
warning_code: '
|
|
2877
|
+
warning_code: 'time_frame_adjusted_for_unknown_time_zone'
|
|
2898
2878
|
}
|
|
2899
2879
|
| {
|
|
2900
2880
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -5223,16 +5203,6 @@ export type Routes = {
|
|
|
5223
5203
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5224
5204
|
error_code: 'access_code_inactive'
|
|
5225
5205
|
}
|
|
5226
|
-
| {
|
|
5227
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5228
|
-
message: string
|
|
5229
|
-
/** Indicates that this is an access code error. */
|
|
5230
|
-
is_access_code_error: true
|
|
5231
|
-
/** Date and time at which Seam created the error. */
|
|
5232
|
-
created_at?: string | undefined
|
|
5233
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5234
|
-
error_code: 'salto_ks_user_not_subscribed'
|
|
5235
|
-
}
|
|
5236
5206
|
| {
|
|
5237
5207
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5238
5208
|
message: string
|
|
@@ -5428,7 +5398,7 @@ export type Routes = {
|
|
|
5428
5398
|
/** Date and time at which Seam created the warning. */
|
|
5429
5399
|
created_at?: string | undefined
|
|
5430
5400
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5431
|
-
warning_code: '
|
|
5401
|
+
warning_code: 'time_frame_adjusted_for_unknown_time_zone'
|
|
5432
5402
|
}
|
|
5433
5403
|
| {
|
|
5434
5404
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -5897,16 +5867,6 @@ export type Routes = {
|
|
|
5897
5867
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5898
5868
|
error_code: 'access_code_inactive'
|
|
5899
5869
|
}
|
|
5900
|
-
| {
|
|
5901
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5902
|
-
message: string
|
|
5903
|
-
/** Indicates that this is an access code error. */
|
|
5904
|
-
is_access_code_error: true
|
|
5905
|
-
/** Date and time at which Seam created the error. */
|
|
5906
|
-
created_at?: string | undefined
|
|
5907
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5908
|
-
error_code: 'salto_ks_user_not_subscribed'
|
|
5909
|
-
}
|
|
5910
5870
|
| {
|
|
5911
5871
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5912
5872
|
message: string
|
|
@@ -6102,7 +6062,7 @@ export type Routes = {
|
|
|
6102
6062
|
/** Date and time at which Seam created the warning. */
|
|
6103
6063
|
created_at?: string | undefined
|
|
6104
6064
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6105
|
-
warning_code: '
|
|
6065
|
+
warning_code: 'time_frame_adjusted_for_unknown_time_zone'
|
|
6106
6066
|
}
|
|
6107
6067
|
| {
|
|
6108
6068
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -6463,16 +6423,6 @@ export type Routes = {
|
|
|
6463
6423
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6464
6424
|
error_code: 'access_code_inactive'
|
|
6465
6425
|
}
|
|
6466
|
-
| {
|
|
6467
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6468
|
-
message: string
|
|
6469
|
-
/** Indicates that this is an access code error. */
|
|
6470
|
-
is_access_code_error: true
|
|
6471
|
-
/** Date and time at which Seam created the error. */
|
|
6472
|
-
created_at?: string | undefined
|
|
6473
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6474
|
-
error_code: 'salto_ks_user_not_subscribed'
|
|
6475
|
-
}
|
|
6476
6426
|
| {
|
|
6477
6427
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6478
6428
|
message: string
|
|
@@ -6668,7 +6618,7 @@ export type Routes = {
|
|
|
6668
6618
|
/** Date and time at which Seam created the warning. */
|
|
6669
6619
|
created_at?: string | undefined
|
|
6670
6620
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6671
|
-
warning_code: '
|
|
6621
|
+
warning_code: 'time_frame_adjusted_for_unknown_time_zone'
|
|
6672
6622
|
}
|
|
6673
6623
|
| {
|
|
6674
6624
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -7006,16 +6956,6 @@ export type Routes = {
|
|
|
7006
6956
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7007
6957
|
error_code: 'access_code_inactive'
|
|
7008
6958
|
}
|
|
7009
|
-
| {
|
|
7010
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7011
|
-
message: string
|
|
7012
|
-
/** Indicates that this is an access code error. */
|
|
7013
|
-
is_access_code_error: true
|
|
7014
|
-
/** Date and time at which Seam created the error. */
|
|
7015
|
-
created_at?: string | undefined
|
|
7016
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7017
|
-
error_code: 'salto_ks_user_not_subscribed'
|
|
7018
|
-
}
|
|
7019
6959
|
| {
|
|
7020
6960
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7021
6961
|
message: string
|
|
@@ -7211,7 +7151,7 @@ export type Routes = {
|
|
|
7211
7151
|
/** Date and time at which Seam created the warning. */
|
|
7212
7152
|
created_at?: string | undefined
|
|
7213
7153
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7214
|
-
warning_code: '
|
|
7154
|
+
warning_code: 'time_frame_adjusted_for_unknown_time_zone'
|
|
7215
7155
|
}
|
|
7216
7156
|
| {
|
|
7217
7157
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -7582,16 +7522,6 @@ export type Routes = {
|
|
|
7582
7522
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7583
7523
|
error_code: 'access_code_inactive'
|
|
7584
7524
|
}
|
|
7585
|
-
| {
|
|
7586
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7587
|
-
message: string
|
|
7588
|
-
/** Indicates that this is an access code error. */
|
|
7589
|
-
is_access_code_error: true
|
|
7590
|
-
/** Date and time at which Seam created the error. */
|
|
7591
|
-
created_at?: string | undefined
|
|
7592
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7593
|
-
error_code: 'salto_ks_user_not_subscribed'
|
|
7594
|
-
}
|
|
7595
7525
|
| {
|
|
7596
7526
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7597
7527
|
message: string
|
|
@@ -7787,7 +7717,7 @@ export type Routes = {
|
|
|
7787
7717
|
/** Date and time at which Seam created the warning. */
|
|
7788
7718
|
created_at?: string | undefined
|
|
7789
7719
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7790
|
-
warning_code: '
|
|
7720
|
+
warning_code: 'time_frame_adjusted_for_unknown_time_zone'
|
|
7791
7721
|
}
|
|
7792
7722
|
| {
|
|
7793
7723
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -10018,16 +9948,6 @@ export type Routes = {
|
|
|
10018
9948
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10019
9949
|
error_code: 'access_code_inactive'
|
|
10020
9950
|
}
|
|
10021
|
-
| {
|
|
10022
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10023
|
-
message: string
|
|
10024
|
-
/** Indicates that this is an access code error. */
|
|
10025
|
-
is_access_code_error: true
|
|
10026
|
-
/** Date and time at which Seam created the error. */
|
|
10027
|
-
created_at?: string | undefined
|
|
10028
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10029
|
-
error_code: 'salto_ks_user_not_subscribed'
|
|
10030
|
-
}
|
|
10031
9951
|
| {
|
|
10032
9952
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10033
9953
|
message: string
|
|
@@ -10223,7 +10143,7 @@ export type Routes = {
|
|
|
10223
10143
|
/** Date and time at which Seam created the warning. */
|
|
10224
10144
|
created_at?: string | undefined
|
|
10225
10145
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10226
|
-
warning_code: '
|
|
10146
|
+
warning_code: 'time_frame_adjusted_for_unknown_time_zone'
|
|
10227
10147
|
}
|
|
10228
10148
|
| {
|
|
10229
10149
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -10473,16 +10393,6 @@ export type Routes = {
|
|
|
10473
10393
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10474
10394
|
error_code: 'access_code_inactive'
|
|
10475
10395
|
}
|
|
10476
|
-
| {
|
|
10477
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10478
|
-
message: string
|
|
10479
|
-
/** Indicates that this is an access code error. */
|
|
10480
|
-
is_access_code_error: true
|
|
10481
|
-
/** Date and time at which Seam created the error. */
|
|
10482
|
-
created_at?: string | undefined
|
|
10483
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10484
|
-
error_code: 'salto_ks_user_not_subscribed'
|
|
10485
|
-
}
|
|
10486
10396
|
| {
|
|
10487
10397
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10488
10398
|
message: string
|
|
@@ -10678,7 +10588,7 @@ export type Routes = {
|
|
|
10678
10588
|
/** Date and time at which Seam created the warning. */
|
|
10679
10589
|
created_at?: string | undefined
|
|
10680
10590
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10681
|
-
warning_code: '
|
|
10591
|
+
warning_code: 'time_frame_adjusted_for_unknown_time_zone'
|
|
10682
10592
|
}
|
|
10683
10593
|
| {
|
|
10684
10594
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -141930,16 +141840,6 @@ export type Routes = {
|
|
|
141930
141840
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
141931
141841
|
error_code: 'access_code_inactive'
|
|
141932
141842
|
}
|
|
141933
|
-
| {
|
|
141934
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
141935
|
-
message: string
|
|
141936
|
-
/** Indicates that this is an access code error. */
|
|
141937
|
-
is_access_code_error: true
|
|
141938
|
-
/** Date and time at which Seam created the error. */
|
|
141939
|
-
created_at?: string | undefined
|
|
141940
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
141941
|
-
error_code: 'salto_ks_user_not_subscribed'
|
|
141942
|
-
}
|
|
141943
141843
|
| {
|
|
141944
141844
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
141945
141845
|
message: string
|
|
@@ -142135,7 +142035,7 @@ export type Routes = {
|
|
|
142135
142035
|
/** Date and time at which Seam created the warning. */
|
|
142136
142036
|
created_at?: string | undefined
|
|
142137
142037
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
142138
|
-
warning_code: '
|
|
142038
|
+
warning_code: 'time_frame_adjusted_for_unknown_time_zone'
|
|
142139
142039
|
}
|
|
142140
142040
|
| {
|
|
142141
142041
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -142371,16 +142271,6 @@ export type Routes = {
|
|
|
142371
142271
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
142372
142272
|
error_code: 'access_code_inactive'
|
|
142373
142273
|
}
|
|
142374
|
-
| {
|
|
142375
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
142376
|
-
message: string
|
|
142377
|
-
/** Indicates that this is an access code error. */
|
|
142378
|
-
is_access_code_error: true
|
|
142379
|
-
/** Date and time at which Seam created the error. */
|
|
142380
|
-
created_at?: string | undefined
|
|
142381
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
142382
|
-
error_code: 'salto_ks_user_not_subscribed'
|
|
142383
|
-
}
|
|
142384
142274
|
| {
|
|
142385
142275
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
142386
142276
|
message: string
|
|
@@ -142576,7 +142466,7 @@ export type Routes = {
|
|
|
142576
142466
|
/** Date and time at which Seam created the warning. */
|
|
142577
142467
|
created_at?: string | undefined
|
|
142578
142468
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
142579
|
-
warning_code: '
|
|
142469
|
+
warning_code: 'time_frame_adjusted_for_unknown_time_zone'
|
|
142580
142470
|
}
|
|
142581
142471
|
| {
|
|
142582
142472
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|