@seamapi/types 1.361.0 → 1.362.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 +62 -59
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +211 -211
- package/lib/seam/connect/models/devices/device.d.ts +87 -82
- package/lib/seam/connect/models/devices/device.js +22 -21
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +25 -25
- package/lib/seam/connect/models/events/devices.d.ts +6 -6
- package/lib/seam/connect/models/events/devices.js +1 -1
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +3 -3
- package/lib/seam/connect/openapi.d.ts +32 -32
- package/lib/seam/connect/openapi.js +37 -37
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +107 -107
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +25 -21
- package/src/lib/seam/connect/models/events/devices.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +41 -41
- package/src/lib/seam/connect/route-types.ts +122 -122
|
@@ -7598,22 +7598,6 @@ export default {
|
|
|
7598
7598
|
required: ['message', 'created_at', 'warning_code'],
|
|
7599
7599
|
type: 'object',
|
|
7600
7600
|
},
|
|
7601
|
-
{
|
|
7602
|
-
description:
|
|
7603
|
-
'A Salto Lock displaying an unknown device type.',
|
|
7604
|
-
properties: {
|
|
7605
|
-
created_at: { format: 'date-time', type: 'string' },
|
|
7606
|
-
message: { type: 'string' },
|
|
7607
|
-
warning_code: {
|
|
7608
|
-
description:
|
|
7609
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
7610
|
-
enum: ['salto_unknown_device_type'],
|
|
7611
|
-
type: 'string',
|
|
7612
|
-
},
|
|
7613
|
-
},
|
|
7614
|
-
required: ['message', 'created_at', 'warning_code'],
|
|
7615
|
-
type: 'object',
|
|
7616
|
-
},
|
|
7617
7601
|
{
|
|
7618
7602
|
description: 'Wyze Lock is not connected to a gateway.',
|
|
7619
7603
|
properties: {
|
|
@@ -7774,7 +7758,7 @@ export default {
|
|
|
7774
7758
|
warning_code: {
|
|
7775
7759
|
description:
|
|
7776
7760
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
7777
|
-
enum: ['
|
|
7761
|
+
enum: ['salto_ks_office_mode'],
|
|
7778
7762
|
type: 'string',
|
|
7779
7763
|
},
|
|
7780
7764
|
},
|
|
@@ -7790,7 +7774,23 @@ export default {
|
|
|
7790
7774
|
warning_code: {
|
|
7791
7775
|
description:
|
|
7792
7776
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
7793
|
-
enum: ['
|
|
7777
|
+
enum: ['salto_ks_privacy_mode'],
|
|
7778
|
+
type: 'string',
|
|
7779
|
+
},
|
|
7780
|
+
},
|
|
7781
|
+
required: ['message', 'created_at', 'warning_code'],
|
|
7782
|
+
type: 'object',
|
|
7783
|
+
},
|
|
7784
|
+
{
|
|
7785
|
+
description:
|
|
7786
|
+
'Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this.',
|
|
7787
|
+
properties: {
|
|
7788
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
7789
|
+
message: { type: 'string' },
|
|
7790
|
+
warning_code: {
|
|
7791
|
+
description:
|
|
7792
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
7793
|
+
enum: ['salto_ks_subscription_limit_almost_reached'],
|
|
7794
7794
|
type: 'string',
|
|
7795
7795
|
},
|
|
7796
7796
|
},
|
|
@@ -12259,16 +12259,16 @@ export default {
|
|
|
12259
12259
|
format: 'uuid',
|
|
12260
12260
|
type: 'string',
|
|
12261
12261
|
},
|
|
12262
|
+
device_name: {
|
|
12263
|
+
description: 'The new name of the device.',
|
|
12264
|
+
type: 'string',
|
|
12265
|
+
},
|
|
12262
12266
|
event_id: {
|
|
12263
12267
|
description: 'ID of the event.',
|
|
12264
12268
|
format: 'uuid',
|
|
12265
12269
|
type: 'string',
|
|
12266
12270
|
},
|
|
12267
12271
|
event_type: { enum: ['device.name_changed'], type: 'string' },
|
|
12268
|
-
new_name: {
|
|
12269
|
-
description: 'The new name of the device.',
|
|
12270
|
-
type: 'string',
|
|
12271
|
-
},
|
|
12272
12272
|
occurred_at: {
|
|
12273
12273
|
description: 'Date and time at which the event occurred.',
|
|
12274
12274
|
format: 'date-time',
|
|
@@ -12289,7 +12289,7 @@ export default {
|
|
|
12289
12289
|
'device_id',
|
|
12290
12290
|
'connected_account_id',
|
|
12291
12291
|
'event_type',
|
|
12292
|
-
'
|
|
12292
|
+
'device_name',
|
|
12293
12293
|
],
|
|
12294
12294
|
type: 'object',
|
|
12295
12295
|
'x-route-path': '/devices',
|
|
@@ -14967,22 +14967,6 @@ export default {
|
|
|
14967
14967
|
required: ['message', 'created_at', 'warning_code'],
|
|
14968
14968
|
type: 'object',
|
|
14969
14969
|
},
|
|
14970
|
-
{
|
|
14971
|
-
description:
|
|
14972
|
-
'A Salto Lock displaying an unknown device type.',
|
|
14973
|
-
properties: {
|
|
14974
|
-
created_at: { format: 'date-time', type: 'string' },
|
|
14975
|
-
message: { type: 'string' },
|
|
14976
|
-
warning_code: {
|
|
14977
|
-
description:
|
|
14978
|
-
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
14979
|
-
enum: ['salto_unknown_device_type'],
|
|
14980
|
-
type: 'string',
|
|
14981
|
-
},
|
|
14982
|
-
},
|
|
14983
|
-
required: ['message', 'created_at', 'warning_code'],
|
|
14984
|
-
type: 'object',
|
|
14985
|
-
},
|
|
14986
14970
|
{
|
|
14987
14971
|
description: 'Wyze Lock is not connected to a gateway.',
|
|
14988
14972
|
properties: {
|
|
@@ -15143,7 +15127,7 @@ export default {
|
|
|
15143
15127
|
warning_code: {
|
|
15144
15128
|
description:
|
|
15145
15129
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
15146
|
-
enum: ['
|
|
15130
|
+
enum: ['salto_ks_office_mode'],
|
|
15147
15131
|
type: 'string',
|
|
15148
15132
|
},
|
|
15149
15133
|
},
|
|
@@ -15159,7 +15143,23 @@ export default {
|
|
|
15159
15143
|
warning_code: {
|
|
15160
15144
|
description:
|
|
15161
15145
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
15162
|
-
enum: ['
|
|
15146
|
+
enum: ['salto_ks_privacy_mode'],
|
|
15147
|
+
type: 'string',
|
|
15148
|
+
},
|
|
15149
|
+
},
|
|
15150
|
+
required: ['message', 'created_at', 'warning_code'],
|
|
15151
|
+
type: 'object',
|
|
15152
|
+
},
|
|
15153
|
+
{
|
|
15154
|
+
description:
|
|
15155
|
+
'Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this.',
|
|
15156
|
+
properties: {
|
|
15157
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
15158
|
+
message: { type: 'string' },
|
|
15159
|
+
warning_code: {
|
|
15160
|
+
description:
|
|
15161
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
15162
|
+
enum: ['salto_ks_subscription_limit_almost_reached'],
|
|
15163
15163
|
type: 'string',
|
|
15164
15164
|
},
|
|
15165
15165
|
},
|
|
@@ -17122,12 +17122,6 @@ export interface Routes {
|
|
|
17122
17122
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17123
17123
|
warning_code: 'many_active_backup_codes'
|
|
17124
17124
|
}
|
|
17125
|
-
| {
|
|
17126
|
-
message: string
|
|
17127
|
-
created_at: string
|
|
17128
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17129
|
-
warning_code: 'salto_unknown_device_type'
|
|
17130
|
-
}
|
|
17131
17125
|
| {
|
|
17132
17126
|
message: string
|
|
17133
17127
|
created_at: string
|
|
@@ -17192,13 +17186,19 @@ export interface Routes {
|
|
|
17192
17186
|
message: string
|
|
17193
17187
|
created_at: string
|
|
17194
17188
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17195
|
-
warning_code: '
|
|
17189
|
+
warning_code: 'salto_ks_office_mode'
|
|
17196
17190
|
}
|
|
17197
17191
|
| {
|
|
17198
17192
|
message: string
|
|
17199
17193
|
created_at: string
|
|
17200
17194
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17201
|
-
warning_code: '
|
|
17195
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
17196
|
+
}
|
|
17197
|
+
| {
|
|
17198
|
+
message: string
|
|
17199
|
+
created_at: string
|
|
17200
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17201
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
17202
17202
|
}
|
|
17203
17203
|
| {
|
|
17204
17204
|
message: string
|
|
@@ -18213,12 +18213,6 @@ export interface Routes {
|
|
|
18213
18213
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18214
18214
|
warning_code: 'many_active_backup_codes'
|
|
18215
18215
|
}
|
|
18216
|
-
| {
|
|
18217
|
-
message: string
|
|
18218
|
-
created_at: string
|
|
18219
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18220
|
-
warning_code: 'salto_unknown_device_type'
|
|
18221
|
-
}
|
|
18222
18216
|
| {
|
|
18223
18217
|
message: string
|
|
18224
18218
|
created_at: string
|
|
@@ -18283,13 +18277,19 @@ export interface Routes {
|
|
|
18283
18277
|
message: string
|
|
18284
18278
|
created_at: string
|
|
18285
18279
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18286
|
-
warning_code: '
|
|
18280
|
+
warning_code: 'salto_ks_office_mode'
|
|
18281
|
+
}
|
|
18282
|
+
| {
|
|
18283
|
+
message: string
|
|
18284
|
+
created_at: string
|
|
18285
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18286
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
18287
18287
|
}
|
|
18288
18288
|
| {
|
|
18289
18289
|
message: string
|
|
18290
18290
|
created_at: string
|
|
18291
18291
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18292
|
-
warning_code: '
|
|
18292
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
18293
18293
|
}
|
|
18294
18294
|
| {
|
|
18295
18295
|
message: string
|
|
@@ -18630,12 +18630,6 @@ export interface Routes {
|
|
|
18630
18630
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18631
18631
|
warning_code: 'many_active_backup_codes'
|
|
18632
18632
|
}
|
|
18633
|
-
| {
|
|
18634
|
-
message: string
|
|
18635
|
-
created_at: string
|
|
18636
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18637
|
-
warning_code: 'salto_unknown_device_type'
|
|
18638
|
-
}
|
|
18639
18633
|
| {
|
|
18640
18634
|
message: string
|
|
18641
18635
|
created_at: string
|
|
@@ -18700,13 +18694,19 @@ export interface Routes {
|
|
|
18700
18694
|
message: string
|
|
18701
18695
|
created_at: string
|
|
18702
18696
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18703
|
-
warning_code: '
|
|
18697
|
+
warning_code: 'salto_ks_office_mode'
|
|
18704
18698
|
}
|
|
18705
18699
|
| {
|
|
18706
18700
|
message: string
|
|
18707
18701
|
created_at: string
|
|
18708
18702
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18709
|
-
warning_code: '
|
|
18703
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
18704
|
+
}
|
|
18705
|
+
| {
|
|
18706
|
+
message: string
|
|
18707
|
+
created_at: string
|
|
18708
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18709
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
18710
18710
|
}
|
|
18711
18711
|
| {
|
|
18712
18712
|
message: string
|
|
@@ -19150,12 +19150,6 @@ export interface Routes {
|
|
|
19150
19150
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19151
19151
|
warning_code: 'many_active_backup_codes'
|
|
19152
19152
|
}
|
|
19153
|
-
| {
|
|
19154
|
-
message: string
|
|
19155
|
-
created_at: string
|
|
19156
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19157
|
-
warning_code: 'salto_unknown_device_type'
|
|
19158
|
-
}
|
|
19159
19153
|
| {
|
|
19160
19154
|
message: string
|
|
19161
19155
|
created_at: string
|
|
@@ -19220,13 +19214,19 @@ export interface Routes {
|
|
|
19220
19214
|
message: string
|
|
19221
19215
|
created_at: string
|
|
19222
19216
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19223
|
-
warning_code: '
|
|
19217
|
+
warning_code: 'salto_ks_office_mode'
|
|
19224
19218
|
}
|
|
19225
19219
|
| {
|
|
19226
19220
|
message: string
|
|
19227
19221
|
created_at: string
|
|
19228
19222
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19229
|
-
warning_code: '
|
|
19223
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
19224
|
+
}
|
|
19225
|
+
| {
|
|
19226
|
+
message: string
|
|
19227
|
+
created_at: string
|
|
19228
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19229
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
19230
19230
|
}
|
|
19231
19231
|
| {
|
|
19232
19232
|
message: string
|
|
@@ -20622,7 +20622,7 @@ export interface Routes {
|
|
|
20622
20622
|
connected_account_id: string
|
|
20623
20623
|
event_type: 'device.name_changed'
|
|
20624
20624
|
/** The new name of the device. */
|
|
20625
|
-
|
|
20625
|
+
device_name: string
|
|
20626
20626
|
}
|
|
20627
20627
|
| {
|
|
20628
20628
|
/** ID of the event. */
|
|
@@ -22096,7 +22096,7 @@ export interface Routes {
|
|
|
22096
22096
|
connected_account_id: string
|
|
22097
22097
|
event_type: 'device.name_changed'
|
|
22098
22098
|
/** The new name of the device. */
|
|
22099
|
-
|
|
22099
|
+
device_name: string
|
|
22100
22100
|
}
|
|
22101
22101
|
| {
|
|
22102
22102
|
/** ID of the event. */
|
|
@@ -22944,12 +22944,6 @@ export interface Routes {
|
|
|
22944
22944
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22945
22945
|
warning_code: 'many_active_backup_codes'
|
|
22946
22946
|
}
|
|
22947
|
-
| {
|
|
22948
|
-
message: string
|
|
22949
|
-
created_at: string
|
|
22950
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22951
|
-
warning_code: 'salto_unknown_device_type'
|
|
22952
|
-
}
|
|
22953
22947
|
| {
|
|
22954
22948
|
message: string
|
|
22955
22949
|
created_at: string
|
|
@@ -23014,13 +23008,19 @@ export interface Routes {
|
|
|
23014
23008
|
message: string
|
|
23015
23009
|
created_at: string
|
|
23016
23010
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23017
|
-
warning_code: '
|
|
23011
|
+
warning_code: 'salto_ks_office_mode'
|
|
23018
23012
|
}
|
|
23019
23013
|
| {
|
|
23020
23014
|
message: string
|
|
23021
23015
|
created_at: string
|
|
23022
23016
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23023
|
-
warning_code: '
|
|
23017
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
23018
|
+
}
|
|
23019
|
+
| {
|
|
23020
|
+
message: string
|
|
23021
|
+
created_at: string
|
|
23022
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23023
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
23024
23024
|
}
|
|
23025
23025
|
| {
|
|
23026
23026
|
message: string
|
|
@@ -23852,12 +23852,6 @@ export interface Routes {
|
|
|
23852
23852
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23853
23853
|
warning_code: 'many_active_backup_codes'
|
|
23854
23854
|
}
|
|
23855
|
-
| {
|
|
23856
|
-
message: string
|
|
23857
|
-
created_at: string
|
|
23858
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23859
|
-
warning_code: 'salto_unknown_device_type'
|
|
23860
|
-
}
|
|
23861
23855
|
| {
|
|
23862
23856
|
message: string
|
|
23863
23857
|
created_at: string
|
|
@@ -23922,13 +23916,19 @@ export interface Routes {
|
|
|
23922
23916
|
message: string
|
|
23923
23917
|
created_at: string
|
|
23924
23918
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23925
|
-
warning_code: '
|
|
23919
|
+
warning_code: 'salto_ks_office_mode'
|
|
23926
23920
|
}
|
|
23927
23921
|
| {
|
|
23928
23922
|
message: string
|
|
23929
23923
|
created_at: string
|
|
23930
23924
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23931
|
-
warning_code: '
|
|
23925
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
23926
|
+
}
|
|
23927
|
+
| {
|
|
23928
|
+
message: string
|
|
23929
|
+
created_at: string
|
|
23930
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23931
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
23932
23932
|
}
|
|
23933
23933
|
| {
|
|
23934
23934
|
message: string
|
|
@@ -24943,12 +24943,6 @@ export interface Routes {
|
|
|
24943
24943
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24944
24944
|
warning_code: 'many_active_backup_codes'
|
|
24945
24945
|
}
|
|
24946
|
-
| {
|
|
24947
|
-
message: string
|
|
24948
|
-
created_at: string
|
|
24949
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24950
|
-
warning_code: 'salto_unknown_device_type'
|
|
24951
|
-
}
|
|
24952
24946
|
| {
|
|
24953
24947
|
message: string
|
|
24954
24948
|
created_at: string
|
|
@@ -25013,13 +25007,19 @@ export interface Routes {
|
|
|
25013
25007
|
message: string
|
|
25014
25008
|
created_at: string
|
|
25015
25009
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25016
|
-
warning_code: '
|
|
25010
|
+
warning_code: 'salto_ks_office_mode'
|
|
25011
|
+
}
|
|
25012
|
+
| {
|
|
25013
|
+
message: string
|
|
25014
|
+
created_at: string
|
|
25015
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25016
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
25017
25017
|
}
|
|
25018
25018
|
| {
|
|
25019
25019
|
message: string
|
|
25020
25020
|
created_at: string
|
|
25021
25021
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25022
|
-
warning_code: '
|
|
25022
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
25023
25023
|
}
|
|
25024
25024
|
| {
|
|
25025
25025
|
message: string
|
|
@@ -25850,12 +25850,6 @@ export interface Routes {
|
|
|
25850
25850
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25851
25851
|
warning_code: 'many_active_backup_codes'
|
|
25852
25852
|
}
|
|
25853
|
-
| {
|
|
25854
|
-
message: string
|
|
25855
|
-
created_at: string
|
|
25856
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25857
|
-
warning_code: 'salto_unknown_device_type'
|
|
25858
|
-
}
|
|
25859
25853
|
| {
|
|
25860
25854
|
message: string
|
|
25861
25855
|
created_at: string
|
|
@@ -25920,13 +25914,19 @@ export interface Routes {
|
|
|
25920
25914
|
message: string
|
|
25921
25915
|
created_at: string
|
|
25922
25916
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25923
|
-
warning_code: '
|
|
25917
|
+
warning_code: 'salto_ks_office_mode'
|
|
25924
25918
|
}
|
|
25925
25919
|
| {
|
|
25926
25920
|
message: string
|
|
25927
25921
|
created_at: string
|
|
25928
25922
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25929
|
-
warning_code: '
|
|
25923
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
25924
|
+
}
|
|
25925
|
+
| {
|
|
25926
|
+
message: string
|
|
25927
|
+
created_at: string
|
|
25928
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25929
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
25930
25930
|
}
|
|
25931
25931
|
| {
|
|
25932
25932
|
message: string
|
|
@@ -29096,12 +29096,6 @@ export interface Routes {
|
|
|
29096
29096
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29097
29097
|
warning_code: 'many_active_backup_codes'
|
|
29098
29098
|
}
|
|
29099
|
-
| {
|
|
29100
|
-
message: string
|
|
29101
|
-
created_at: string
|
|
29102
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29103
|
-
warning_code: 'salto_unknown_device_type'
|
|
29104
|
-
}
|
|
29105
29099
|
| {
|
|
29106
29100
|
message: string
|
|
29107
29101
|
created_at: string
|
|
@@ -29166,13 +29160,19 @@ export interface Routes {
|
|
|
29166
29160
|
message: string
|
|
29167
29161
|
created_at: string
|
|
29168
29162
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29169
|
-
warning_code: '
|
|
29163
|
+
warning_code: 'salto_ks_office_mode'
|
|
29170
29164
|
}
|
|
29171
29165
|
| {
|
|
29172
29166
|
message: string
|
|
29173
29167
|
created_at: string
|
|
29174
29168
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29175
|
-
warning_code: '
|
|
29169
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
29170
|
+
}
|
|
29171
|
+
| {
|
|
29172
|
+
message: string
|
|
29173
|
+
created_at: string
|
|
29174
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
29175
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
29176
29176
|
}
|
|
29177
29177
|
| {
|
|
29178
29178
|
message: string
|
|
@@ -30003,12 +30003,6 @@ export interface Routes {
|
|
|
30003
30003
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30004
30004
|
warning_code: 'many_active_backup_codes'
|
|
30005
30005
|
}
|
|
30006
|
-
| {
|
|
30007
|
-
message: string
|
|
30008
|
-
created_at: string
|
|
30009
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30010
|
-
warning_code: 'salto_unknown_device_type'
|
|
30011
|
-
}
|
|
30012
30006
|
| {
|
|
30013
30007
|
message: string
|
|
30014
30008
|
created_at: string
|
|
@@ -30073,13 +30067,19 @@ export interface Routes {
|
|
|
30073
30067
|
message: string
|
|
30074
30068
|
created_at: string
|
|
30075
30069
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30076
|
-
warning_code: '
|
|
30070
|
+
warning_code: 'salto_ks_office_mode'
|
|
30077
30071
|
}
|
|
30078
30072
|
| {
|
|
30079
30073
|
message: string
|
|
30080
30074
|
created_at: string
|
|
30081
30075
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30082
|
-
warning_code: '
|
|
30076
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
30077
|
+
}
|
|
30078
|
+
| {
|
|
30079
|
+
message: string
|
|
30080
|
+
created_at: string
|
|
30081
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30082
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
30083
30083
|
}
|
|
30084
30084
|
| {
|
|
30085
30085
|
message: string
|
|
@@ -36662,12 +36662,6 @@ export interface Routes {
|
|
|
36662
36662
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36663
36663
|
warning_code: 'many_active_backup_codes'
|
|
36664
36664
|
}
|
|
36665
|
-
| {
|
|
36666
|
-
message: string
|
|
36667
|
-
created_at: string
|
|
36668
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36669
|
-
warning_code: 'salto_unknown_device_type'
|
|
36670
|
-
}
|
|
36671
36665
|
| {
|
|
36672
36666
|
message: string
|
|
36673
36667
|
created_at: string
|
|
@@ -36732,13 +36726,19 @@ export interface Routes {
|
|
|
36732
36726
|
message: string
|
|
36733
36727
|
created_at: string
|
|
36734
36728
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36735
|
-
warning_code: '
|
|
36729
|
+
warning_code: 'salto_ks_office_mode'
|
|
36736
36730
|
}
|
|
36737
36731
|
| {
|
|
36738
36732
|
message: string
|
|
36739
36733
|
created_at: string
|
|
36740
36734
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36741
|
-
warning_code: '
|
|
36735
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
36736
|
+
}
|
|
36737
|
+
| {
|
|
36738
|
+
message: string
|
|
36739
|
+
created_at: string
|
|
36740
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36741
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
36742
36742
|
}
|
|
36743
36743
|
| {
|
|
36744
36744
|
message: string
|
|
@@ -39889,12 +39889,6 @@ export interface Routes {
|
|
|
39889
39889
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39890
39890
|
warning_code: 'many_active_backup_codes'
|
|
39891
39891
|
}
|
|
39892
|
-
| {
|
|
39893
|
-
message: string
|
|
39894
|
-
created_at: string
|
|
39895
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39896
|
-
warning_code: 'salto_unknown_device_type'
|
|
39897
|
-
}
|
|
39898
39892
|
| {
|
|
39899
39893
|
message: string
|
|
39900
39894
|
created_at: string
|
|
@@ -39959,13 +39953,19 @@ export interface Routes {
|
|
|
39959
39953
|
message: string
|
|
39960
39954
|
created_at: string
|
|
39961
39955
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39962
|
-
warning_code: '
|
|
39956
|
+
warning_code: 'salto_ks_office_mode'
|
|
39957
|
+
}
|
|
39958
|
+
| {
|
|
39959
|
+
message: string
|
|
39960
|
+
created_at: string
|
|
39961
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39962
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
39963
39963
|
}
|
|
39964
39964
|
| {
|
|
39965
39965
|
message: string
|
|
39966
39966
|
created_at: string
|
|
39967
39967
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39968
|
-
warning_code: '
|
|
39968
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
39969
39969
|
}
|
|
39970
39970
|
| {
|
|
39971
39971
|
message: string
|
|
@@ -40796,12 +40796,6 @@ export interface Routes {
|
|
|
40796
40796
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40797
40797
|
warning_code: 'many_active_backup_codes'
|
|
40798
40798
|
}
|
|
40799
|
-
| {
|
|
40800
|
-
message: string
|
|
40801
|
-
created_at: string
|
|
40802
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40803
|
-
warning_code: 'salto_unknown_device_type'
|
|
40804
|
-
}
|
|
40805
40799
|
| {
|
|
40806
40800
|
message: string
|
|
40807
40801
|
created_at: string
|
|
@@ -40866,13 +40860,19 @@ export interface Routes {
|
|
|
40866
40860
|
message: string
|
|
40867
40861
|
created_at: string
|
|
40868
40862
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40869
|
-
warning_code: '
|
|
40863
|
+
warning_code: 'salto_ks_office_mode'
|
|
40870
40864
|
}
|
|
40871
40865
|
| {
|
|
40872
40866
|
message: string
|
|
40873
40867
|
created_at: string
|
|
40874
40868
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40875
|
-
warning_code: '
|
|
40869
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
40870
|
+
}
|
|
40871
|
+
| {
|
|
40872
|
+
message: string
|
|
40873
|
+
created_at: string
|
|
40874
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40875
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
40876
40876
|
}
|
|
40877
40877
|
| {
|
|
40878
40878
|
message: string
|
|
@@ -45469,12 +45469,6 @@ export interface Routes {
|
|
|
45469
45469
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45470
45470
|
warning_code: 'many_active_backup_codes'
|
|
45471
45471
|
}
|
|
45472
|
-
| {
|
|
45473
|
-
message: string
|
|
45474
|
-
created_at: string
|
|
45475
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45476
|
-
warning_code: 'salto_unknown_device_type'
|
|
45477
|
-
}
|
|
45478
45472
|
| {
|
|
45479
45473
|
message: string
|
|
45480
45474
|
created_at: string
|
|
@@ -45539,13 +45533,19 @@ export interface Routes {
|
|
|
45539
45533
|
message: string
|
|
45540
45534
|
created_at: string
|
|
45541
45535
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45542
|
-
warning_code: '
|
|
45536
|
+
warning_code: 'salto_ks_office_mode'
|
|
45543
45537
|
}
|
|
45544
45538
|
| {
|
|
45545
45539
|
message: string
|
|
45546
45540
|
created_at: string
|
|
45547
45541
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45548
|
-
warning_code: '
|
|
45542
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
45543
|
+
}
|
|
45544
|
+
| {
|
|
45545
|
+
message: string
|
|
45546
|
+
created_at: string
|
|
45547
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45548
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
45549
45549
|
}
|
|
45550
45550
|
| {
|
|
45551
45551
|
message: string
|
|
@@ -46378,12 +46378,6 @@ export interface Routes {
|
|
|
46378
46378
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46379
46379
|
warning_code: 'many_active_backup_codes'
|
|
46380
46380
|
}
|
|
46381
|
-
| {
|
|
46382
|
-
message: string
|
|
46383
|
-
created_at: string
|
|
46384
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46385
|
-
warning_code: 'salto_unknown_device_type'
|
|
46386
|
-
}
|
|
46387
46381
|
| {
|
|
46388
46382
|
message: string
|
|
46389
46383
|
created_at: string
|
|
@@ -46448,13 +46442,19 @@ export interface Routes {
|
|
|
46448
46442
|
message: string
|
|
46449
46443
|
created_at: string
|
|
46450
46444
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46451
|
-
warning_code: '
|
|
46445
|
+
warning_code: 'salto_ks_office_mode'
|
|
46452
46446
|
}
|
|
46453
46447
|
| {
|
|
46454
46448
|
message: string
|
|
46455
46449
|
created_at: string
|
|
46456
46450
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46457
|
-
warning_code: '
|
|
46451
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
46452
|
+
}
|
|
46453
|
+
| {
|
|
46454
|
+
message: string
|
|
46455
|
+
created_at: string
|
|
46456
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46457
|
+
warning_code: 'salto_ks_subscription_limit_almost_reached'
|
|
46458
46458
|
}
|
|
46459
46459
|
| {
|
|
46460
46460
|
message: string
|