@seamapi/types 1.269.1 → 1.271.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.
@@ -265,7 +265,117 @@ export interface Routes {
265
265
  status: 'success'
266
266
  error: null
267
267
  action_type: 'ENCODE_CARD'
268
- result: {}
268
+ result:
269
+ | {
270
+ acs_credential_id: string
271
+ acs_user_id?: string | undefined
272
+ acs_credential_pool_id?: string | undefined
273
+ acs_system_id: string
274
+ parent_acs_credential_id?: string | undefined
275
+ display_name: string
276
+ code?: (string | undefined) | null
277
+ card_number?: (string | undefined) | null
278
+ is_issued?: boolean | undefined
279
+ issued_at?: (string | undefined) | null
280
+ access_method: 'code' | 'card' | 'mobile_key'
281
+ external_type?:
282
+ | (
283
+ | 'pti_card'
284
+ | 'brivo_credential'
285
+ | 'hid_credential'
286
+ | 'visionline_card'
287
+ | 'salto_ks_credential'
288
+ )
289
+ | undefined
290
+ external_type_display_name?: string | undefined
291
+ created_at: string
292
+ workspace_id: string
293
+ starts_at?: string | undefined
294
+ ends_at?: string | undefined
295
+ errors: Array<{
296
+ error_code: string
297
+ message: string
298
+ }>
299
+ warnings: Array<{
300
+ warning_code: string
301
+ message: string
302
+ }>
303
+ is_multi_phone_sync_credential?: boolean | undefined
304
+ is_latest_desired_state_synced_with_provider?:
305
+ | boolean
306
+ | undefined
307
+ latest_desired_state_synced_with_provider_at?:
308
+ | string
309
+ | undefined
310
+ visionline_metadata?:
311
+ | {
312
+ card_function_type: 'guest' | 'staff'
313
+ joiner_acs_credential_ids?: string[] | undefined
314
+ guest_acs_entrance_ids?: string[] | undefined
315
+ common_acs_entrance_ids?: string[] | undefined
316
+ is_valid?: boolean | undefined
317
+ auto_join?: boolean | undefined
318
+ card_id?: string | undefined
319
+ credential_id?: string | undefined
320
+ }
321
+ | undefined
322
+ is_managed: true
323
+ }
324
+ | {
325
+ acs_credential_id: string
326
+ acs_user_id?: string | undefined
327
+ acs_credential_pool_id?: string | undefined
328
+ acs_system_id: string
329
+ parent_acs_credential_id?: string | undefined
330
+ display_name: string
331
+ code?: (string | undefined) | null
332
+ card_number?: (string | undefined) | null
333
+ is_issued?: boolean | undefined
334
+ issued_at?: (string | undefined) | null
335
+ access_method: 'code' | 'card' | 'mobile_key'
336
+ external_type?:
337
+ | (
338
+ | 'pti_card'
339
+ | 'brivo_credential'
340
+ | 'hid_credential'
341
+ | 'visionline_card'
342
+ | 'salto_ks_credential'
343
+ )
344
+ | undefined
345
+ external_type_display_name?: string | undefined
346
+ created_at: string
347
+ workspace_id: string
348
+ starts_at?: string | undefined
349
+ ends_at?: string | undefined
350
+ errors: Array<{
351
+ error_code: string
352
+ message: string
353
+ }>
354
+ warnings: Array<{
355
+ warning_code: string
356
+ message: string
357
+ }>
358
+ is_multi_phone_sync_credential?: boolean | undefined
359
+ is_latest_desired_state_synced_with_provider?:
360
+ | boolean
361
+ | undefined
362
+ latest_desired_state_synced_with_provider_at?:
363
+ | string
364
+ | undefined
365
+ visionline_metadata?:
366
+ | {
367
+ card_function_type: 'guest' | 'staff'
368
+ joiner_acs_credential_ids?: string[] | undefined
369
+ guest_acs_entrance_ids?: string[] | undefined
370
+ common_acs_entrance_ids?: string[] | undefined
371
+ is_valid?: boolean | undefined
372
+ auto_join?: boolean | undefined
373
+ card_id?: string | undefined
374
+ credential_id?: string | undefined
375
+ }
376
+ | undefined
377
+ is_managed: false
378
+ }
269
379
  }
270
380
  | {
271
381
  /** The ID of the action attempt. */
@@ -1075,7 +1185,117 @@ export interface Routes {
1075
1185
  status: 'success'
1076
1186
  error: null
1077
1187
  action_type: 'ENCODE_CARD'
1078
- result: {}
1188
+ result:
1189
+ | {
1190
+ acs_credential_id: string
1191
+ acs_user_id?: string | undefined
1192
+ acs_credential_pool_id?: string | undefined
1193
+ acs_system_id: string
1194
+ parent_acs_credential_id?: string | undefined
1195
+ display_name: string
1196
+ code?: (string | undefined) | null
1197
+ card_number?: (string | undefined) | null
1198
+ is_issued?: boolean | undefined
1199
+ issued_at?: (string | undefined) | null
1200
+ access_method: 'code' | 'card' | 'mobile_key'
1201
+ external_type?:
1202
+ | (
1203
+ | 'pti_card'
1204
+ | 'brivo_credential'
1205
+ | 'hid_credential'
1206
+ | 'visionline_card'
1207
+ | 'salto_ks_credential'
1208
+ )
1209
+ | undefined
1210
+ external_type_display_name?: string | undefined
1211
+ created_at: string
1212
+ workspace_id: string
1213
+ starts_at?: string | undefined
1214
+ ends_at?: string | undefined
1215
+ errors: Array<{
1216
+ error_code: string
1217
+ message: string
1218
+ }>
1219
+ warnings: Array<{
1220
+ warning_code: string
1221
+ message: string
1222
+ }>
1223
+ is_multi_phone_sync_credential?: boolean | undefined
1224
+ is_latest_desired_state_synced_with_provider?:
1225
+ | boolean
1226
+ | undefined
1227
+ latest_desired_state_synced_with_provider_at?:
1228
+ | string
1229
+ | undefined
1230
+ visionline_metadata?:
1231
+ | {
1232
+ card_function_type: 'guest' | 'staff'
1233
+ joiner_acs_credential_ids?: string[] | undefined
1234
+ guest_acs_entrance_ids?: string[] | undefined
1235
+ common_acs_entrance_ids?: string[] | undefined
1236
+ is_valid?: boolean | undefined
1237
+ auto_join?: boolean | undefined
1238
+ card_id?: string | undefined
1239
+ credential_id?: string | undefined
1240
+ }
1241
+ | undefined
1242
+ is_managed: true
1243
+ }
1244
+ | {
1245
+ acs_credential_id: string
1246
+ acs_user_id?: string | undefined
1247
+ acs_credential_pool_id?: string | undefined
1248
+ acs_system_id: string
1249
+ parent_acs_credential_id?: string | undefined
1250
+ display_name: string
1251
+ code?: (string | undefined) | null
1252
+ card_number?: (string | undefined) | null
1253
+ is_issued?: boolean | undefined
1254
+ issued_at?: (string | undefined) | null
1255
+ access_method: 'code' | 'card' | 'mobile_key'
1256
+ external_type?:
1257
+ | (
1258
+ | 'pti_card'
1259
+ | 'brivo_credential'
1260
+ | 'hid_credential'
1261
+ | 'visionline_card'
1262
+ | 'salto_ks_credential'
1263
+ )
1264
+ | undefined
1265
+ external_type_display_name?: string | undefined
1266
+ created_at: string
1267
+ workspace_id: string
1268
+ starts_at?: string | undefined
1269
+ ends_at?: string | undefined
1270
+ errors: Array<{
1271
+ error_code: string
1272
+ message: string
1273
+ }>
1274
+ warnings: Array<{
1275
+ warning_code: string
1276
+ message: string
1277
+ }>
1278
+ is_multi_phone_sync_credential?: boolean | undefined
1279
+ is_latest_desired_state_synced_with_provider?:
1280
+ | boolean
1281
+ | undefined
1282
+ latest_desired_state_synced_with_provider_at?:
1283
+ | string
1284
+ | undefined
1285
+ visionline_metadata?:
1286
+ | {
1287
+ card_function_type: 'guest' | 'staff'
1288
+ joiner_acs_credential_ids?: string[] | undefined
1289
+ guest_acs_entrance_ids?: string[] | undefined
1290
+ common_acs_entrance_ids?: string[] | undefined
1291
+ is_valid?: boolean | undefined
1292
+ auto_join?: boolean | undefined
1293
+ card_id?: string | undefined
1294
+ credential_id?: string | undefined
1295
+ }
1296
+ | undefined
1297
+ is_managed: false
1298
+ }
1079
1299
  }
1080
1300
  | {
1081
1301
  /** The ID of the action attempt. */
@@ -2050,7 +2270,117 @@ export interface Routes {
2050
2270
  status: 'success'
2051
2271
  error: null
2052
2272
  action_type: 'ENCODE_CARD'
2053
- result: {}
2273
+ result:
2274
+ | {
2275
+ acs_credential_id: string
2276
+ acs_user_id?: string | undefined
2277
+ acs_credential_pool_id?: string | undefined
2278
+ acs_system_id: string
2279
+ parent_acs_credential_id?: string | undefined
2280
+ display_name: string
2281
+ code?: (string | undefined) | null
2282
+ card_number?: (string | undefined) | null
2283
+ is_issued?: boolean | undefined
2284
+ issued_at?: (string | undefined) | null
2285
+ access_method: 'code' | 'card' | 'mobile_key'
2286
+ external_type?:
2287
+ | (
2288
+ | 'pti_card'
2289
+ | 'brivo_credential'
2290
+ | 'hid_credential'
2291
+ | 'visionline_card'
2292
+ | 'salto_ks_credential'
2293
+ )
2294
+ | undefined
2295
+ external_type_display_name?: string | undefined
2296
+ created_at: string
2297
+ workspace_id: string
2298
+ starts_at?: string | undefined
2299
+ ends_at?: string | undefined
2300
+ errors: Array<{
2301
+ error_code: string
2302
+ message: string
2303
+ }>
2304
+ warnings: Array<{
2305
+ warning_code: string
2306
+ message: string
2307
+ }>
2308
+ is_multi_phone_sync_credential?: boolean | undefined
2309
+ is_latest_desired_state_synced_with_provider?:
2310
+ | boolean
2311
+ | undefined
2312
+ latest_desired_state_synced_with_provider_at?:
2313
+ | string
2314
+ | undefined
2315
+ visionline_metadata?:
2316
+ | {
2317
+ card_function_type: 'guest' | 'staff'
2318
+ joiner_acs_credential_ids?: string[] | undefined
2319
+ guest_acs_entrance_ids?: string[] | undefined
2320
+ common_acs_entrance_ids?: string[] | undefined
2321
+ is_valid?: boolean | undefined
2322
+ auto_join?: boolean | undefined
2323
+ card_id?: string | undefined
2324
+ credential_id?: string | undefined
2325
+ }
2326
+ | undefined
2327
+ is_managed: true
2328
+ }
2329
+ | {
2330
+ acs_credential_id: string
2331
+ acs_user_id?: string | undefined
2332
+ acs_credential_pool_id?: string | undefined
2333
+ acs_system_id: string
2334
+ parent_acs_credential_id?: string | undefined
2335
+ display_name: string
2336
+ code?: (string | undefined) | null
2337
+ card_number?: (string | undefined) | null
2338
+ is_issued?: boolean | undefined
2339
+ issued_at?: (string | undefined) | null
2340
+ access_method: 'code' | 'card' | 'mobile_key'
2341
+ external_type?:
2342
+ | (
2343
+ | 'pti_card'
2344
+ | 'brivo_credential'
2345
+ | 'hid_credential'
2346
+ | 'visionline_card'
2347
+ | 'salto_ks_credential'
2348
+ )
2349
+ | undefined
2350
+ external_type_display_name?: string | undefined
2351
+ created_at: string
2352
+ workspace_id: string
2353
+ starts_at?: string | undefined
2354
+ ends_at?: string | undefined
2355
+ errors: Array<{
2356
+ error_code: string
2357
+ message: string
2358
+ }>
2359
+ warnings: Array<{
2360
+ warning_code: string
2361
+ message: string
2362
+ }>
2363
+ is_multi_phone_sync_credential?: boolean | undefined
2364
+ is_latest_desired_state_synced_with_provider?:
2365
+ | boolean
2366
+ | undefined
2367
+ latest_desired_state_synced_with_provider_at?:
2368
+ | string
2369
+ | undefined
2370
+ visionline_metadata?:
2371
+ | {
2372
+ card_function_type: 'guest' | 'staff'
2373
+ joiner_acs_credential_ids?: string[] | undefined
2374
+ guest_acs_entrance_ids?: string[] | undefined
2375
+ common_acs_entrance_ids?: string[] | undefined
2376
+ is_valid?: boolean | undefined
2377
+ auto_join?: boolean | undefined
2378
+ card_id?: string | undefined
2379
+ credential_id?: string | undefined
2380
+ }
2381
+ | undefined
2382
+ is_managed: false
2383
+ }
2054
2384
  }
2055
2385
  | {
2056
2386
  /** The ID of the action attempt. */
@@ -2847,7 +3177,117 @@ export interface Routes {
2847
3177
  status: 'success'
2848
3178
  error: null
2849
3179
  action_type: 'ENCODE_CARD'
2850
- result: {}
3180
+ result:
3181
+ | {
3182
+ acs_credential_id: string
3183
+ acs_user_id?: string | undefined
3184
+ acs_credential_pool_id?: string | undefined
3185
+ acs_system_id: string
3186
+ parent_acs_credential_id?: string | undefined
3187
+ display_name: string
3188
+ code?: (string | undefined) | null
3189
+ card_number?: (string | undefined) | null
3190
+ is_issued?: boolean | undefined
3191
+ issued_at?: (string | undefined) | null
3192
+ access_method: 'code' | 'card' | 'mobile_key'
3193
+ external_type?:
3194
+ | (
3195
+ | 'pti_card'
3196
+ | 'brivo_credential'
3197
+ | 'hid_credential'
3198
+ | 'visionline_card'
3199
+ | 'salto_ks_credential'
3200
+ )
3201
+ | undefined
3202
+ external_type_display_name?: string | undefined
3203
+ created_at: string
3204
+ workspace_id: string
3205
+ starts_at?: string | undefined
3206
+ ends_at?: string | undefined
3207
+ errors: Array<{
3208
+ error_code: string
3209
+ message: string
3210
+ }>
3211
+ warnings: Array<{
3212
+ warning_code: string
3213
+ message: string
3214
+ }>
3215
+ is_multi_phone_sync_credential?: boolean | undefined
3216
+ is_latest_desired_state_synced_with_provider?:
3217
+ | boolean
3218
+ | undefined
3219
+ latest_desired_state_synced_with_provider_at?:
3220
+ | string
3221
+ | undefined
3222
+ visionline_metadata?:
3223
+ | {
3224
+ card_function_type: 'guest' | 'staff'
3225
+ joiner_acs_credential_ids?: string[] | undefined
3226
+ guest_acs_entrance_ids?: string[] | undefined
3227
+ common_acs_entrance_ids?: string[] | undefined
3228
+ is_valid?: boolean | undefined
3229
+ auto_join?: boolean | undefined
3230
+ card_id?: string | undefined
3231
+ credential_id?: string | undefined
3232
+ }
3233
+ | undefined
3234
+ is_managed: true
3235
+ }
3236
+ | {
3237
+ acs_credential_id: string
3238
+ acs_user_id?: string | undefined
3239
+ acs_credential_pool_id?: string | undefined
3240
+ acs_system_id: string
3241
+ parent_acs_credential_id?: string | undefined
3242
+ display_name: string
3243
+ code?: (string | undefined) | null
3244
+ card_number?: (string | undefined) | null
3245
+ is_issued?: boolean | undefined
3246
+ issued_at?: (string | undefined) | null
3247
+ access_method: 'code' | 'card' | 'mobile_key'
3248
+ external_type?:
3249
+ | (
3250
+ | 'pti_card'
3251
+ | 'brivo_credential'
3252
+ | 'hid_credential'
3253
+ | 'visionline_card'
3254
+ | 'salto_ks_credential'
3255
+ )
3256
+ | undefined
3257
+ external_type_display_name?: string | undefined
3258
+ created_at: string
3259
+ workspace_id: string
3260
+ starts_at?: string | undefined
3261
+ ends_at?: string | undefined
3262
+ errors: Array<{
3263
+ error_code: string
3264
+ message: string
3265
+ }>
3266
+ warnings: Array<{
3267
+ warning_code: string
3268
+ message: string
3269
+ }>
3270
+ is_multi_phone_sync_credential?: boolean | undefined
3271
+ is_latest_desired_state_synced_with_provider?:
3272
+ | boolean
3273
+ | undefined
3274
+ latest_desired_state_synced_with_provider_at?:
3275
+ | string
3276
+ | undefined
3277
+ visionline_metadata?:
3278
+ | {
3279
+ card_function_type: 'guest' | 'staff'
3280
+ joiner_acs_credential_ids?: string[] | undefined
3281
+ guest_acs_entrance_ids?: string[] | undefined
3282
+ common_acs_entrance_ids?: string[] | undefined
3283
+ is_valid?: boolean | undefined
3284
+ auto_join?: boolean | undefined
3285
+ card_id?: string | undefined
3286
+ credential_id?: string | undefined
3287
+ }
3288
+ | undefined
3289
+ is_managed: false
3290
+ }
2851
3291
  }
2852
3292
  | {
2853
3293
  /** The ID of the action attempt. */
@@ -4306,9 +4746,12 @@ export interface Routes {
4306
4746
  | {
4307
4747
  acs_system_id: string
4308
4748
  device_name: string
4749
+ acs_credential_id: string
4309
4750
  }
4310
4751
  | {
4752
+ acs_system_id: string
4311
4753
  device_id: string
4754
+ acs_credential_id: string
4312
4755
  }
4313
4756
  formData: {}
4314
4757
  jsonResponse: {
@@ -4552,7 +4995,117 @@ export interface Routes {
4552
4995
  status: 'success'
4553
4996
  error: null
4554
4997
  action_type: 'ENCODE_CARD'
4555
- result: {}
4998
+ result:
4999
+ | {
5000
+ acs_credential_id: string
5001
+ acs_user_id?: string | undefined
5002
+ acs_credential_pool_id?: string | undefined
5003
+ acs_system_id: string
5004
+ parent_acs_credential_id?: string | undefined
5005
+ display_name: string
5006
+ code?: (string | undefined) | null
5007
+ card_number?: (string | undefined) | null
5008
+ is_issued?: boolean | undefined
5009
+ issued_at?: (string | undefined) | null
5010
+ access_method: 'code' | 'card' | 'mobile_key'
5011
+ external_type?:
5012
+ | (
5013
+ | 'pti_card'
5014
+ | 'brivo_credential'
5015
+ | 'hid_credential'
5016
+ | 'visionline_card'
5017
+ | 'salto_ks_credential'
5018
+ )
5019
+ | undefined
5020
+ external_type_display_name?: string | undefined
5021
+ created_at: string
5022
+ workspace_id: string
5023
+ starts_at?: string | undefined
5024
+ ends_at?: string | undefined
5025
+ errors: Array<{
5026
+ error_code: string
5027
+ message: string
5028
+ }>
5029
+ warnings: Array<{
5030
+ warning_code: string
5031
+ message: string
5032
+ }>
5033
+ is_multi_phone_sync_credential?: boolean | undefined
5034
+ is_latest_desired_state_synced_with_provider?:
5035
+ | boolean
5036
+ | undefined
5037
+ latest_desired_state_synced_with_provider_at?:
5038
+ | string
5039
+ | undefined
5040
+ visionline_metadata?:
5041
+ | {
5042
+ card_function_type: 'guest' | 'staff'
5043
+ joiner_acs_credential_ids?: string[] | undefined
5044
+ guest_acs_entrance_ids?: string[] | undefined
5045
+ common_acs_entrance_ids?: string[] | undefined
5046
+ is_valid?: boolean | undefined
5047
+ auto_join?: boolean | undefined
5048
+ card_id?: string | undefined
5049
+ credential_id?: string | undefined
5050
+ }
5051
+ | undefined
5052
+ is_managed: true
5053
+ }
5054
+ | {
5055
+ acs_credential_id: string
5056
+ acs_user_id?: string | undefined
5057
+ acs_credential_pool_id?: string | undefined
5058
+ acs_system_id: string
5059
+ parent_acs_credential_id?: string | undefined
5060
+ display_name: string
5061
+ code?: (string | undefined) | null
5062
+ card_number?: (string | undefined) | null
5063
+ is_issued?: boolean | undefined
5064
+ issued_at?: (string | undefined) | null
5065
+ access_method: 'code' | 'card' | 'mobile_key'
5066
+ external_type?:
5067
+ | (
5068
+ | 'pti_card'
5069
+ | 'brivo_credential'
5070
+ | 'hid_credential'
5071
+ | 'visionline_card'
5072
+ | 'salto_ks_credential'
5073
+ )
5074
+ | undefined
5075
+ external_type_display_name?: string | undefined
5076
+ created_at: string
5077
+ workspace_id: string
5078
+ starts_at?: string | undefined
5079
+ ends_at?: string | undefined
5080
+ errors: Array<{
5081
+ error_code: string
5082
+ message: string
5083
+ }>
5084
+ warnings: Array<{
5085
+ warning_code: string
5086
+ message: string
5087
+ }>
5088
+ is_multi_phone_sync_credential?: boolean | undefined
5089
+ is_latest_desired_state_synced_with_provider?:
5090
+ | boolean
5091
+ | undefined
5092
+ latest_desired_state_synced_with_provider_at?:
5093
+ | string
5094
+ | undefined
5095
+ visionline_metadata?:
5096
+ | {
5097
+ card_function_type: 'guest' | 'staff'
5098
+ joiner_acs_credential_ids?: string[] | undefined
5099
+ guest_acs_entrance_ids?: string[] | undefined
5100
+ common_acs_entrance_ids?: string[] | undefined
5101
+ is_valid?: boolean | undefined
5102
+ auto_join?: boolean | undefined
5103
+ card_id?: string | undefined
5104
+ credential_id?: string | undefined
5105
+ }
5106
+ | undefined
5107
+ is_managed: false
5108
+ }
4556
5109
  }
4557
5110
  | {
4558
5111
  /** The ID of the action attempt. */
@@ -5846,7 +6399,117 @@ export interface Routes {
5846
6399
  status: 'success'
5847
6400
  error: null
5848
6401
  action_type: 'ENCODE_CARD'
5849
- result: {}
6402
+ result:
6403
+ | {
6404
+ acs_credential_id: string
6405
+ acs_user_id?: string | undefined
6406
+ acs_credential_pool_id?: string | undefined
6407
+ acs_system_id: string
6408
+ parent_acs_credential_id?: string | undefined
6409
+ display_name: string
6410
+ code?: (string | undefined) | null
6411
+ card_number?: (string | undefined) | null
6412
+ is_issued?: boolean | undefined
6413
+ issued_at?: (string | undefined) | null
6414
+ access_method: 'code' | 'card' | 'mobile_key'
6415
+ external_type?:
6416
+ | (
6417
+ | 'pti_card'
6418
+ | 'brivo_credential'
6419
+ | 'hid_credential'
6420
+ | 'visionline_card'
6421
+ | 'salto_ks_credential'
6422
+ )
6423
+ | undefined
6424
+ external_type_display_name?: string | undefined
6425
+ created_at: string
6426
+ workspace_id: string
6427
+ starts_at?: string | undefined
6428
+ ends_at?: string | undefined
6429
+ errors: Array<{
6430
+ error_code: string
6431
+ message: string
6432
+ }>
6433
+ warnings: Array<{
6434
+ warning_code: string
6435
+ message: string
6436
+ }>
6437
+ is_multi_phone_sync_credential?: boolean | undefined
6438
+ is_latest_desired_state_synced_with_provider?:
6439
+ | boolean
6440
+ | undefined
6441
+ latest_desired_state_synced_with_provider_at?:
6442
+ | string
6443
+ | undefined
6444
+ visionline_metadata?:
6445
+ | {
6446
+ card_function_type: 'guest' | 'staff'
6447
+ joiner_acs_credential_ids?: string[] | undefined
6448
+ guest_acs_entrance_ids?: string[] | undefined
6449
+ common_acs_entrance_ids?: string[] | undefined
6450
+ is_valid?: boolean | undefined
6451
+ auto_join?: boolean | undefined
6452
+ card_id?: string | undefined
6453
+ credential_id?: string | undefined
6454
+ }
6455
+ | undefined
6456
+ is_managed: true
6457
+ }
6458
+ | {
6459
+ acs_credential_id: string
6460
+ acs_user_id?: string | undefined
6461
+ acs_credential_pool_id?: string | undefined
6462
+ acs_system_id: string
6463
+ parent_acs_credential_id?: string | undefined
6464
+ display_name: string
6465
+ code?: (string | undefined) | null
6466
+ card_number?: (string | undefined) | null
6467
+ is_issued?: boolean | undefined
6468
+ issued_at?: (string | undefined) | null
6469
+ access_method: 'code' | 'card' | 'mobile_key'
6470
+ external_type?:
6471
+ | (
6472
+ | 'pti_card'
6473
+ | 'brivo_credential'
6474
+ | 'hid_credential'
6475
+ | 'visionline_card'
6476
+ | 'salto_ks_credential'
6477
+ )
6478
+ | undefined
6479
+ external_type_display_name?: string | undefined
6480
+ created_at: string
6481
+ workspace_id: string
6482
+ starts_at?: string | undefined
6483
+ ends_at?: string | undefined
6484
+ errors: Array<{
6485
+ error_code: string
6486
+ message: string
6487
+ }>
6488
+ warnings: Array<{
6489
+ warning_code: string
6490
+ message: string
6491
+ }>
6492
+ is_multi_phone_sync_credential?: boolean | undefined
6493
+ is_latest_desired_state_synced_with_provider?:
6494
+ | boolean
6495
+ | undefined
6496
+ latest_desired_state_synced_with_provider_at?:
6497
+ | string
6498
+ | undefined
6499
+ visionline_metadata?:
6500
+ | {
6501
+ card_function_type: 'guest' | 'staff'
6502
+ joiner_acs_credential_ids?: string[] | undefined
6503
+ guest_acs_entrance_ids?: string[] | undefined
6504
+ common_acs_entrance_ids?: string[] | undefined
6505
+ is_valid?: boolean | undefined
6506
+ auto_join?: boolean | undefined
6507
+ card_id?: string | undefined
6508
+ credential_id?: string | undefined
6509
+ }
6510
+ | undefined
6511
+ is_managed: false
6512
+ }
5850
6513
  }
5851
6514
  | {
5852
6515
  /** The ID of the action attempt. */
@@ -7905,7 +8568,117 @@ export interface Routes {
7905
8568
  status: 'success'
7906
8569
  error: null
7907
8570
  action_type: 'ENCODE_CARD'
7908
- result: {}
8571
+ result:
8572
+ | {
8573
+ acs_credential_id: string
8574
+ acs_user_id?: string | undefined
8575
+ acs_credential_pool_id?: string | undefined
8576
+ acs_system_id: string
8577
+ parent_acs_credential_id?: string | undefined
8578
+ display_name: string
8579
+ code?: (string | undefined) | null
8580
+ card_number?: (string | undefined) | null
8581
+ is_issued?: boolean | undefined
8582
+ issued_at?: (string | undefined) | null
8583
+ access_method: 'code' | 'card' | 'mobile_key'
8584
+ external_type?:
8585
+ | (
8586
+ | 'pti_card'
8587
+ | 'brivo_credential'
8588
+ | 'hid_credential'
8589
+ | 'visionline_card'
8590
+ | 'salto_ks_credential'
8591
+ )
8592
+ | undefined
8593
+ external_type_display_name?: string | undefined
8594
+ created_at: string
8595
+ workspace_id: string
8596
+ starts_at?: string | undefined
8597
+ ends_at?: string | undefined
8598
+ errors: Array<{
8599
+ error_code: string
8600
+ message: string
8601
+ }>
8602
+ warnings: Array<{
8603
+ warning_code: string
8604
+ message: string
8605
+ }>
8606
+ is_multi_phone_sync_credential?: boolean | undefined
8607
+ is_latest_desired_state_synced_with_provider?:
8608
+ | boolean
8609
+ | undefined
8610
+ latest_desired_state_synced_with_provider_at?:
8611
+ | string
8612
+ | undefined
8613
+ visionline_metadata?:
8614
+ | {
8615
+ card_function_type: 'guest' | 'staff'
8616
+ joiner_acs_credential_ids?: string[] | undefined
8617
+ guest_acs_entrance_ids?: string[] | undefined
8618
+ common_acs_entrance_ids?: string[] | undefined
8619
+ is_valid?: boolean | undefined
8620
+ auto_join?: boolean | undefined
8621
+ card_id?: string | undefined
8622
+ credential_id?: string | undefined
8623
+ }
8624
+ | undefined
8625
+ is_managed: true
8626
+ }
8627
+ | {
8628
+ acs_credential_id: string
8629
+ acs_user_id?: string | undefined
8630
+ acs_credential_pool_id?: string | undefined
8631
+ acs_system_id: string
8632
+ parent_acs_credential_id?: string | undefined
8633
+ display_name: string
8634
+ code?: (string | undefined) | null
8635
+ card_number?: (string | undefined) | null
8636
+ is_issued?: boolean | undefined
8637
+ issued_at?: (string | undefined) | null
8638
+ access_method: 'code' | 'card' | 'mobile_key'
8639
+ external_type?:
8640
+ | (
8641
+ | 'pti_card'
8642
+ | 'brivo_credential'
8643
+ | 'hid_credential'
8644
+ | 'visionline_card'
8645
+ | 'salto_ks_credential'
8646
+ )
8647
+ | undefined
8648
+ external_type_display_name?: string | undefined
8649
+ created_at: string
8650
+ workspace_id: string
8651
+ starts_at?: string | undefined
8652
+ ends_at?: string | undefined
8653
+ errors: Array<{
8654
+ error_code: string
8655
+ message: string
8656
+ }>
8657
+ warnings: Array<{
8658
+ warning_code: string
8659
+ message: string
8660
+ }>
8661
+ is_multi_phone_sync_credential?: boolean | undefined
8662
+ is_latest_desired_state_synced_with_provider?:
8663
+ | boolean
8664
+ | undefined
8665
+ latest_desired_state_synced_with_provider_at?:
8666
+ | string
8667
+ | undefined
8668
+ visionline_metadata?:
8669
+ | {
8670
+ card_function_type: 'guest' | 'staff'
8671
+ joiner_acs_credential_ids?: string[] | undefined
8672
+ guest_acs_entrance_ids?: string[] | undefined
8673
+ common_acs_entrance_ids?: string[] | undefined
8674
+ is_valid?: boolean | undefined
8675
+ auto_join?: boolean | undefined
8676
+ card_id?: string | undefined
8677
+ credential_id?: string | undefined
8678
+ }
8679
+ | undefined
8680
+ is_managed: false
8681
+ }
7909
8682
  }
7910
8683
  | {
7911
8684
  /** The ID of the action attempt. */
@@ -8556,7 +9329,117 @@ export interface Routes {
8556
9329
  status: 'success'
8557
9330
  error: null
8558
9331
  action_type: 'ENCODE_CARD'
8559
- result: {}
9332
+ result:
9333
+ | {
9334
+ acs_credential_id: string
9335
+ acs_user_id?: string | undefined
9336
+ acs_credential_pool_id?: string | undefined
9337
+ acs_system_id: string
9338
+ parent_acs_credential_id?: string | undefined
9339
+ display_name: string
9340
+ code?: (string | undefined) | null
9341
+ card_number?: (string | undefined) | null
9342
+ is_issued?: boolean | undefined
9343
+ issued_at?: (string | undefined) | null
9344
+ access_method: 'code' | 'card' | 'mobile_key'
9345
+ external_type?:
9346
+ | (
9347
+ | 'pti_card'
9348
+ | 'brivo_credential'
9349
+ | 'hid_credential'
9350
+ | 'visionline_card'
9351
+ | 'salto_ks_credential'
9352
+ )
9353
+ | undefined
9354
+ external_type_display_name?: string | undefined
9355
+ created_at: string
9356
+ workspace_id: string
9357
+ starts_at?: string | undefined
9358
+ ends_at?: string | undefined
9359
+ errors: Array<{
9360
+ error_code: string
9361
+ message: string
9362
+ }>
9363
+ warnings: Array<{
9364
+ warning_code: string
9365
+ message: string
9366
+ }>
9367
+ is_multi_phone_sync_credential?: boolean | undefined
9368
+ is_latest_desired_state_synced_with_provider?:
9369
+ | boolean
9370
+ | undefined
9371
+ latest_desired_state_synced_with_provider_at?:
9372
+ | string
9373
+ | undefined
9374
+ visionline_metadata?:
9375
+ | {
9376
+ card_function_type: 'guest' | 'staff'
9377
+ joiner_acs_credential_ids?: string[] | undefined
9378
+ guest_acs_entrance_ids?: string[] | undefined
9379
+ common_acs_entrance_ids?: string[] | undefined
9380
+ is_valid?: boolean | undefined
9381
+ auto_join?: boolean | undefined
9382
+ card_id?: string | undefined
9383
+ credential_id?: string | undefined
9384
+ }
9385
+ | undefined
9386
+ is_managed: true
9387
+ }
9388
+ | {
9389
+ acs_credential_id: string
9390
+ acs_user_id?: string | undefined
9391
+ acs_credential_pool_id?: string | undefined
9392
+ acs_system_id: string
9393
+ parent_acs_credential_id?: string | undefined
9394
+ display_name: string
9395
+ code?: (string | undefined) | null
9396
+ card_number?: (string | undefined) | null
9397
+ is_issued?: boolean | undefined
9398
+ issued_at?: (string | undefined) | null
9399
+ access_method: 'code' | 'card' | 'mobile_key'
9400
+ external_type?:
9401
+ | (
9402
+ | 'pti_card'
9403
+ | 'brivo_credential'
9404
+ | 'hid_credential'
9405
+ | 'visionline_card'
9406
+ | 'salto_ks_credential'
9407
+ )
9408
+ | undefined
9409
+ external_type_display_name?: string | undefined
9410
+ created_at: string
9411
+ workspace_id: string
9412
+ starts_at?: string | undefined
9413
+ ends_at?: string | undefined
9414
+ errors: Array<{
9415
+ error_code: string
9416
+ message: string
9417
+ }>
9418
+ warnings: Array<{
9419
+ warning_code: string
9420
+ message: string
9421
+ }>
9422
+ is_multi_phone_sync_credential?: boolean | undefined
9423
+ is_latest_desired_state_synced_with_provider?:
9424
+ | boolean
9425
+ | undefined
9426
+ latest_desired_state_synced_with_provider_at?:
9427
+ | string
9428
+ | undefined
9429
+ visionline_metadata?:
9430
+ | {
9431
+ card_function_type: 'guest' | 'staff'
9432
+ joiner_acs_credential_ids?: string[] | undefined
9433
+ guest_acs_entrance_ids?: string[] | undefined
9434
+ common_acs_entrance_ids?: string[] | undefined
9435
+ is_valid?: boolean | undefined
9436
+ auto_join?: boolean | undefined
9437
+ card_id?: string | undefined
9438
+ credential_id?: string | undefined
9439
+ }
9440
+ | undefined
9441
+ is_managed: false
9442
+ }
8560
9443
  }
8561
9444
  | {
8562
9445
  /** The ID of the action attempt. */
@@ -9160,6 +10043,7 @@ export interface Routes {
9160
10043
  | 'honeywell_resideo'
9161
10044
  | 'latch'
9162
10045
  | 'akiles'
10046
+ | 'vostio'
9163
10047
  | 'yale_access'
9164
10048
  | 'hid_cm'
9165
10049
  | 'google_nest'
@@ -10914,6 +11798,7 @@ export interface Routes {
10914
11798
  | 'honeywell_resideo'
10915
11799
  | 'latch'
10916
11800
  | 'akiles'
11801
+ | 'vostio'
10917
11802
  display_name: string
10918
11803
  image_url: string
10919
11804
  provider_categories: Array<
@@ -14605,7 +15490,117 @@ export interface Routes {
14605
15490
  status: 'success'
14606
15491
  error: null
14607
15492
  action_type: 'ENCODE_CARD'
14608
- result: {}
15493
+ result:
15494
+ | {
15495
+ acs_credential_id: string
15496
+ acs_user_id?: string | undefined
15497
+ acs_credential_pool_id?: string | undefined
15498
+ acs_system_id: string
15499
+ parent_acs_credential_id?: string | undefined
15500
+ display_name: string
15501
+ code?: (string | undefined) | null
15502
+ card_number?: (string | undefined) | null
15503
+ is_issued?: boolean | undefined
15504
+ issued_at?: (string | undefined) | null
15505
+ access_method: 'code' | 'card' | 'mobile_key'
15506
+ external_type?:
15507
+ | (
15508
+ | 'pti_card'
15509
+ | 'brivo_credential'
15510
+ | 'hid_credential'
15511
+ | 'visionline_card'
15512
+ | 'salto_ks_credential'
15513
+ )
15514
+ | undefined
15515
+ external_type_display_name?: string | undefined
15516
+ created_at: string
15517
+ workspace_id: string
15518
+ starts_at?: string | undefined
15519
+ ends_at?: string | undefined
15520
+ errors: Array<{
15521
+ error_code: string
15522
+ message: string
15523
+ }>
15524
+ warnings: Array<{
15525
+ warning_code: string
15526
+ message: string
15527
+ }>
15528
+ is_multi_phone_sync_credential?: boolean | undefined
15529
+ is_latest_desired_state_synced_with_provider?:
15530
+ | boolean
15531
+ | undefined
15532
+ latest_desired_state_synced_with_provider_at?:
15533
+ | string
15534
+ | undefined
15535
+ visionline_metadata?:
15536
+ | {
15537
+ card_function_type: 'guest' | 'staff'
15538
+ joiner_acs_credential_ids?: string[] | undefined
15539
+ guest_acs_entrance_ids?: string[] | undefined
15540
+ common_acs_entrance_ids?: string[] | undefined
15541
+ is_valid?: boolean | undefined
15542
+ auto_join?: boolean | undefined
15543
+ card_id?: string | undefined
15544
+ credential_id?: string | undefined
15545
+ }
15546
+ | undefined
15547
+ is_managed: true
15548
+ }
15549
+ | {
15550
+ acs_credential_id: string
15551
+ acs_user_id?: string | undefined
15552
+ acs_credential_pool_id?: string | undefined
15553
+ acs_system_id: string
15554
+ parent_acs_credential_id?: string | undefined
15555
+ display_name: string
15556
+ code?: (string | undefined) | null
15557
+ card_number?: (string | undefined) | null
15558
+ is_issued?: boolean | undefined
15559
+ issued_at?: (string | undefined) | null
15560
+ access_method: 'code' | 'card' | 'mobile_key'
15561
+ external_type?:
15562
+ | (
15563
+ | 'pti_card'
15564
+ | 'brivo_credential'
15565
+ | 'hid_credential'
15566
+ | 'visionline_card'
15567
+ | 'salto_ks_credential'
15568
+ )
15569
+ | undefined
15570
+ external_type_display_name?: string | undefined
15571
+ created_at: string
15572
+ workspace_id: string
15573
+ starts_at?: string | undefined
15574
+ ends_at?: string | undefined
15575
+ errors: Array<{
15576
+ error_code: string
15577
+ message: string
15578
+ }>
15579
+ warnings: Array<{
15580
+ warning_code: string
15581
+ message: string
15582
+ }>
15583
+ is_multi_phone_sync_credential?: boolean | undefined
15584
+ is_latest_desired_state_synced_with_provider?:
15585
+ | boolean
15586
+ | undefined
15587
+ latest_desired_state_synced_with_provider_at?:
15588
+ | string
15589
+ | undefined
15590
+ visionline_metadata?:
15591
+ | {
15592
+ card_function_type: 'guest' | 'staff'
15593
+ joiner_acs_credential_ids?: string[] | undefined
15594
+ guest_acs_entrance_ids?: string[] | undefined
15595
+ common_acs_entrance_ids?: string[] | undefined
15596
+ is_valid?: boolean | undefined
15597
+ auto_join?: boolean | undefined
15598
+ card_id?: string | undefined
15599
+ credential_id?: string | undefined
15600
+ }
15601
+ | undefined
15602
+ is_managed: false
15603
+ }
14609
15604
  }
14610
15605
  | {
14611
15606
  /** The ID of the action attempt. */
@@ -15257,7 +16252,117 @@ export interface Routes {
15257
16252
  status: 'success'
15258
16253
  error: null
15259
16254
  action_type: 'ENCODE_CARD'
15260
- result: {}
16255
+ result:
16256
+ | {
16257
+ acs_credential_id: string
16258
+ acs_user_id?: string | undefined
16259
+ acs_credential_pool_id?: string | undefined
16260
+ acs_system_id: string
16261
+ parent_acs_credential_id?: string | undefined
16262
+ display_name: string
16263
+ code?: (string | undefined) | null
16264
+ card_number?: (string | undefined) | null
16265
+ is_issued?: boolean | undefined
16266
+ issued_at?: (string | undefined) | null
16267
+ access_method: 'code' | 'card' | 'mobile_key'
16268
+ external_type?:
16269
+ | (
16270
+ | 'pti_card'
16271
+ | 'brivo_credential'
16272
+ | 'hid_credential'
16273
+ | 'visionline_card'
16274
+ | 'salto_ks_credential'
16275
+ )
16276
+ | undefined
16277
+ external_type_display_name?: string | undefined
16278
+ created_at: string
16279
+ workspace_id: string
16280
+ starts_at?: string | undefined
16281
+ ends_at?: string | undefined
16282
+ errors: Array<{
16283
+ error_code: string
16284
+ message: string
16285
+ }>
16286
+ warnings: Array<{
16287
+ warning_code: string
16288
+ message: string
16289
+ }>
16290
+ is_multi_phone_sync_credential?: boolean | undefined
16291
+ is_latest_desired_state_synced_with_provider?:
16292
+ | boolean
16293
+ | undefined
16294
+ latest_desired_state_synced_with_provider_at?:
16295
+ | string
16296
+ | undefined
16297
+ visionline_metadata?:
16298
+ | {
16299
+ card_function_type: 'guest' | 'staff'
16300
+ joiner_acs_credential_ids?: string[] | undefined
16301
+ guest_acs_entrance_ids?: string[] | undefined
16302
+ common_acs_entrance_ids?: string[] | undefined
16303
+ is_valid?: boolean | undefined
16304
+ auto_join?: boolean | undefined
16305
+ card_id?: string | undefined
16306
+ credential_id?: string | undefined
16307
+ }
16308
+ | undefined
16309
+ is_managed: true
16310
+ }
16311
+ | {
16312
+ acs_credential_id: string
16313
+ acs_user_id?: string | undefined
16314
+ acs_credential_pool_id?: string | undefined
16315
+ acs_system_id: string
16316
+ parent_acs_credential_id?: string | undefined
16317
+ display_name: string
16318
+ code?: (string | undefined) | null
16319
+ card_number?: (string | undefined) | null
16320
+ is_issued?: boolean | undefined
16321
+ issued_at?: (string | undefined) | null
16322
+ access_method: 'code' | 'card' | 'mobile_key'
16323
+ external_type?:
16324
+ | (
16325
+ | 'pti_card'
16326
+ | 'brivo_credential'
16327
+ | 'hid_credential'
16328
+ | 'visionline_card'
16329
+ | 'salto_ks_credential'
16330
+ )
16331
+ | undefined
16332
+ external_type_display_name?: string | undefined
16333
+ created_at: string
16334
+ workspace_id: string
16335
+ starts_at?: string | undefined
16336
+ ends_at?: string | undefined
16337
+ errors: Array<{
16338
+ error_code: string
16339
+ message: string
16340
+ }>
16341
+ warnings: Array<{
16342
+ warning_code: string
16343
+ message: string
16344
+ }>
16345
+ is_multi_phone_sync_credential?: boolean | undefined
16346
+ is_latest_desired_state_synced_with_provider?:
16347
+ | boolean
16348
+ | undefined
16349
+ latest_desired_state_synced_with_provider_at?:
16350
+ | string
16351
+ | undefined
16352
+ visionline_metadata?:
16353
+ | {
16354
+ card_function_type: 'guest' | 'staff'
16355
+ joiner_acs_credential_ids?: string[] | undefined
16356
+ guest_acs_entrance_ids?: string[] | undefined
16357
+ common_acs_entrance_ids?: string[] | undefined
16358
+ is_valid?: boolean | undefined
16359
+ auto_join?: boolean | undefined
16360
+ card_id?: string | undefined
16361
+ credential_id?: string | undefined
16362
+ }
16363
+ | undefined
16364
+ is_managed: false
16365
+ }
15261
16366
  }
15262
16367
  | {
15263
16368
  /** The ID of the action attempt. */
@@ -17347,7 +18452,117 @@ export interface Routes {
17347
18452
  status: 'success'
17348
18453
  error: null
17349
18454
  action_type: 'ENCODE_CARD'
17350
- result: {}
18455
+ result:
18456
+ | {
18457
+ acs_credential_id: string
18458
+ acs_user_id?: string | undefined
18459
+ acs_credential_pool_id?: string | undefined
18460
+ acs_system_id: string
18461
+ parent_acs_credential_id?: string | undefined
18462
+ display_name: string
18463
+ code?: (string | undefined) | null
18464
+ card_number?: (string | undefined) | null
18465
+ is_issued?: boolean | undefined
18466
+ issued_at?: (string | undefined) | null
18467
+ access_method: 'code' | 'card' | 'mobile_key'
18468
+ external_type?:
18469
+ | (
18470
+ | 'pti_card'
18471
+ | 'brivo_credential'
18472
+ | 'hid_credential'
18473
+ | 'visionline_card'
18474
+ | 'salto_ks_credential'
18475
+ )
18476
+ | undefined
18477
+ external_type_display_name?: string | undefined
18478
+ created_at: string
18479
+ workspace_id: string
18480
+ starts_at?: string | undefined
18481
+ ends_at?: string | undefined
18482
+ errors: Array<{
18483
+ error_code: string
18484
+ message: string
18485
+ }>
18486
+ warnings: Array<{
18487
+ warning_code: string
18488
+ message: string
18489
+ }>
18490
+ is_multi_phone_sync_credential?: boolean | undefined
18491
+ is_latest_desired_state_synced_with_provider?:
18492
+ | boolean
18493
+ | undefined
18494
+ latest_desired_state_synced_with_provider_at?:
18495
+ | string
18496
+ | undefined
18497
+ visionline_metadata?:
18498
+ | {
18499
+ card_function_type: 'guest' | 'staff'
18500
+ joiner_acs_credential_ids?: string[] | undefined
18501
+ guest_acs_entrance_ids?: string[] | undefined
18502
+ common_acs_entrance_ids?: string[] | undefined
18503
+ is_valid?: boolean | undefined
18504
+ auto_join?: boolean | undefined
18505
+ card_id?: string | undefined
18506
+ credential_id?: string | undefined
18507
+ }
18508
+ | undefined
18509
+ is_managed: true
18510
+ }
18511
+ | {
18512
+ acs_credential_id: string
18513
+ acs_user_id?: string | undefined
18514
+ acs_credential_pool_id?: string | undefined
18515
+ acs_system_id: string
18516
+ parent_acs_credential_id?: string | undefined
18517
+ display_name: string
18518
+ code?: (string | undefined) | null
18519
+ card_number?: (string | undefined) | null
18520
+ is_issued?: boolean | undefined
18521
+ issued_at?: (string | undefined) | null
18522
+ access_method: 'code' | 'card' | 'mobile_key'
18523
+ external_type?:
18524
+ | (
18525
+ | 'pti_card'
18526
+ | 'brivo_credential'
18527
+ | 'hid_credential'
18528
+ | 'visionline_card'
18529
+ | 'salto_ks_credential'
18530
+ )
18531
+ | undefined
18532
+ external_type_display_name?: string | undefined
18533
+ created_at: string
18534
+ workspace_id: string
18535
+ starts_at?: string | undefined
18536
+ ends_at?: string | undefined
18537
+ errors: Array<{
18538
+ error_code: string
18539
+ message: string
18540
+ }>
18541
+ warnings: Array<{
18542
+ warning_code: string
18543
+ message: string
18544
+ }>
18545
+ is_multi_phone_sync_credential?: boolean | undefined
18546
+ is_latest_desired_state_synced_with_provider?:
18547
+ | boolean
18548
+ | undefined
18549
+ latest_desired_state_synced_with_provider_at?:
18550
+ | string
18551
+ | undefined
18552
+ visionline_metadata?:
18553
+ | {
18554
+ card_function_type: 'guest' | 'staff'
18555
+ joiner_acs_credential_ids?: string[] | undefined
18556
+ guest_acs_entrance_ids?: string[] | undefined
18557
+ common_acs_entrance_ids?: string[] | undefined
18558
+ is_valid?: boolean | undefined
18559
+ auto_join?: boolean | undefined
18560
+ card_id?: string | undefined
18561
+ credential_id?: string | undefined
18562
+ }
18563
+ | undefined
18564
+ is_managed: false
18565
+ }
17351
18566
  }
17352
18567
  | {
17353
18568
  /** The ID of the action attempt. */
@@ -18009,7 +19224,117 @@ export interface Routes {
18009
19224
  status: 'success'
18010
19225
  error: null
18011
19226
  action_type: 'ENCODE_CARD'
18012
- result: {}
19227
+ result:
19228
+ | {
19229
+ acs_credential_id: string
19230
+ acs_user_id?: string | undefined
19231
+ acs_credential_pool_id?: string | undefined
19232
+ acs_system_id: string
19233
+ parent_acs_credential_id?: string | undefined
19234
+ display_name: string
19235
+ code?: (string | undefined) | null
19236
+ card_number?: (string | undefined) | null
19237
+ is_issued?: boolean | undefined
19238
+ issued_at?: (string | undefined) | null
19239
+ access_method: 'code' | 'card' | 'mobile_key'
19240
+ external_type?:
19241
+ | (
19242
+ | 'pti_card'
19243
+ | 'brivo_credential'
19244
+ | 'hid_credential'
19245
+ | 'visionline_card'
19246
+ | 'salto_ks_credential'
19247
+ )
19248
+ | undefined
19249
+ external_type_display_name?: string | undefined
19250
+ created_at: string
19251
+ workspace_id: string
19252
+ starts_at?: string | undefined
19253
+ ends_at?: string | undefined
19254
+ errors: Array<{
19255
+ error_code: string
19256
+ message: string
19257
+ }>
19258
+ warnings: Array<{
19259
+ warning_code: string
19260
+ message: string
19261
+ }>
19262
+ is_multi_phone_sync_credential?: boolean | undefined
19263
+ is_latest_desired_state_synced_with_provider?:
19264
+ | boolean
19265
+ | undefined
19266
+ latest_desired_state_synced_with_provider_at?:
19267
+ | string
19268
+ | undefined
19269
+ visionline_metadata?:
19270
+ | {
19271
+ card_function_type: 'guest' | 'staff'
19272
+ joiner_acs_credential_ids?: string[] | undefined
19273
+ guest_acs_entrance_ids?: string[] | undefined
19274
+ common_acs_entrance_ids?: string[] | undefined
19275
+ is_valid?: boolean | undefined
19276
+ auto_join?: boolean | undefined
19277
+ card_id?: string | undefined
19278
+ credential_id?: string | undefined
19279
+ }
19280
+ | undefined
19281
+ is_managed: true
19282
+ }
19283
+ | {
19284
+ acs_credential_id: string
19285
+ acs_user_id?: string | undefined
19286
+ acs_credential_pool_id?: string | undefined
19287
+ acs_system_id: string
19288
+ parent_acs_credential_id?: string | undefined
19289
+ display_name: string
19290
+ code?: (string | undefined) | null
19291
+ card_number?: (string | undefined) | null
19292
+ is_issued?: boolean | undefined
19293
+ issued_at?: (string | undefined) | null
19294
+ access_method: 'code' | 'card' | 'mobile_key'
19295
+ external_type?:
19296
+ | (
19297
+ | 'pti_card'
19298
+ | 'brivo_credential'
19299
+ | 'hid_credential'
19300
+ | 'visionline_card'
19301
+ | 'salto_ks_credential'
19302
+ )
19303
+ | undefined
19304
+ external_type_display_name?: string | undefined
19305
+ created_at: string
19306
+ workspace_id: string
19307
+ starts_at?: string | undefined
19308
+ ends_at?: string | undefined
19309
+ errors: Array<{
19310
+ error_code: string
19311
+ message: string
19312
+ }>
19313
+ warnings: Array<{
19314
+ warning_code: string
19315
+ message: string
19316
+ }>
19317
+ is_multi_phone_sync_credential?: boolean | undefined
19318
+ is_latest_desired_state_synced_with_provider?:
19319
+ | boolean
19320
+ | undefined
19321
+ latest_desired_state_synced_with_provider_at?:
19322
+ | string
19323
+ | undefined
19324
+ visionline_metadata?:
19325
+ | {
19326
+ card_function_type: 'guest' | 'staff'
19327
+ joiner_acs_credential_ids?: string[] | undefined
19328
+ guest_acs_entrance_ids?: string[] | undefined
19329
+ common_acs_entrance_ids?: string[] | undefined
19330
+ is_valid?: boolean | undefined
19331
+ auto_join?: boolean | undefined
19332
+ card_id?: string | undefined
19333
+ credential_id?: string | undefined
19334
+ }
19335
+ | undefined
19336
+ is_managed: false
19337
+ }
18013
19338
  }
18014
19339
  | {
18015
19340
  /** The ID of the action attempt. */
@@ -18710,7 +20035,117 @@ export interface Routes {
18710
20035
  status: 'success'
18711
20036
  error: null
18712
20037
  action_type: 'ENCODE_CARD'
18713
- result: {}
20038
+ result:
20039
+ | {
20040
+ acs_credential_id: string
20041
+ acs_user_id?: string | undefined
20042
+ acs_credential_pool_id?: string | undefined
20043
+ acs_system_id: string
20044
+ parent_acs_credential_id?: string | undefined
20045
+ display_name: string
20046
+ code?: (string | undefined) | null
20047
+ card_number?: (string | undefined) | null
20048
+ is_issued?: boolean | undefined
20049
+ issued_at?: (string | undefined) | null
20050
+ access_method: 'code' | 'card' | 'mobile_key'
20051
+ external_type?:
20052
+ | (
20053
+ | 'pti_card'
20054
+ | 'brivo_credential'
20055
+ | 'hid_credential'
20056
+ | 'visionline_card'
20057
+ | 'salto_ks_credential'
20058
+ )
20059
+ | undefined
20060
+ external_type_display_name?: string | undefined
20061
+ created_at: string
20062
+ workspace_id: string
20063
+ starts_at?: string | undefined
20064
+ ends_at?: string | undefined
20065
+ errors: Array<{
20066
+ error_code: string
20067
+ message: string
20068
+ }>
20069
+ warnings: Array<{
20070
+ warning_code: string
20071
+ message: string
20072
+ }>
20073
+ is_multi_phone_sync_credential?: boolean | undefined
20074
+ is_latest_desired_state_synced_with_provider?:
20075
+ | boolean
20076
+ | undefined
20077
+ latest_desired_state_synced_with_provider_at?:
20078
+ | string
20079
+ | undefined
20080
+ visionline_metadata?:
20081
+ | {
20082
+ card_function_type: 'guest' | 'staff'
20083
+ joiner_acs_credential_ids?: string[] | undefined
20084
+ guest_acs_entrance_ids?: string[] | undefined
20085
+ common_acs_entrance_ids?: string[] | undefined
20086
+ is_valid?: boolean | undefined
20087
+ auto_join?: boolean | undefined
20088
+ card_id?: string | undefined
20089
+ credential_id?: string | undefined
20090
+ }
20091
+ | undefined
20092
+ is_managed: true
20093
+ }
20094
+ | {
20095
+ acs_credential_id: string
20096
+ acs_user_id?: string | undefined
20097
+ acs_credential_pool_id?: string | undefined
20098
+ acs_system_id: string
20099
+ parent_acs_credential_id?: string | undefined
20100
+ display_name: string
20101
+ code?: (string | undefined) | null
20102
+ card_number?: (string | undefined) | null
20103
+ is_issued?: boolean | undefined
20104
+ issued_at?: (string | undefined) | null
20105
+ access_method: 'code' | 'card' | 'mobile_key'
20106
+ external_type?:
20107
+ | (
20108
+ | 'pti_card'
20109
+ | 'brivo_credential'
20110
+ | 'hid_credential'
20111
+ | 'visionline_card'
20112
+ | 'salto_ks_credential'
20113
+ )
20114
+ | undefined
20115
+ external_type_display_name?: string | undefined
20116
+ created_at: string
20117
+ workspace_id: string
20118
+ starts_at?: string | undefined
20119
+ ends_at?: string | undefined
20120
+ errors: Array<{
20121
+ error_code: string
20122
+ message: string
20123
+ }>
20124
+ warnings: Array<{
20125
+ warning_code: string
20126
+ message: string
20127
+ }>
20128
+ is_multi_phone_sync_credential?: boolean | undefined
20129
+ is_latest_desired_state_synced_with_provider?:
20130
+ | boolean
20131
+ | undefined
20132
+ latest_desired_state_synced_with_provider_at?:
20133
+ | string
20134
+ | undefined
20135
+ visionline_metadata?:
20136
+ | {
20137
+ card_function_type: 'guest' | 'staff'
20138
+ joiner_acs_credential_ids?: string[] | undefined
20139
+ guest_acs_entrance_ids?: string[] | undefined
20140
+ common_acs_entrance_ids?: string[] | undefined
20141
+ is_valid?: boolean | undefined
20142
+ auto_join?: boolean | undefined
20143
+ card_id?: string | undefined
20144
+ credential_id?: string | undefined
20145
+ }
20146
+ | undefined
20147
+ is_managed: false
20148
+ }
18714
20149
  }
18715
20150
  | {
18716
20151
  /** The ID of the action attempt. */
@@ -19568,7 +21003,117 @@ export interface Routes {
19568
21003
  status: 'success'
19569
21004
  error: null
19570
21005
  action_type: 'ENCODE_CARD'
19571
- result: {}
21006
+ result:
21007
+ | {
21008
+ acs_credential_id: string
21009
+ acs_user_id?: string | undefined
21010
+ acs_credential_pool_id?: string | undefined
21011
+ acs_system_id: string
21012
+ parent_acs_credential_id?: string | undefined
21013
+ display_name: string
21014
+ code?: (string | undefined) | null
21015
+ card_number?: (string | undefined) | null
21016
+ is_issued?: boolean | undefined
21017
+ issued_at?: (string | undefined) | null
21018
+ access_method: 'code' | 'card' | 'mobile_key'
21019
+ external_type?:
21020
+ | (
21021
+ | 'pti_card'
21022
+ | 'brivo_credential'
21023
+ | 'hid_credential'
21024
+ | 'visionline_card'
21025
+ | 'salto_ks_credential'
21026
+ )
21027
+ | undefined
21028
+ external_type_display_name?: string | undefined
21029
+ created_at: string
21030
+ workspace_id: string
21031
+ starts_at?: string | undefined
21032
+ ends_at?: string | undefined
21033
+ errors: Array<{
21034
+ error_code: string
21035
+ message: string
21036
+ }>
21037
+ warnings: Array<{
21038
+ warning_code: string
21039
+ message: string
21040
+ }>
21041
+ is_multi_phone_sync_credential?: boolean | undefined
21042
+ is_latest_desired_state_synced_with_provider?:
21043
+ | boolean
21044
+ | undefined
21045
+ latest_desired_state_synced_with_provider_at?:
21046
+ | string
21047
+ | undefined
21048
+ visionline_metadata?:
21049
+ | {
21050
+ card_function_type: 'guest' | 'staff'
21051
+ joiner_acs_credential_ids?: string[] | undefined
21052
+ guest_acs_entrance_ids?: string[] | undefined
21053
+ common_acs_entrance_ids?: string[] | undefined
21054
+ is_valid?: boolean | undefined
21055
+ auto_join?: boolean | undefined
21056
+ card_id?: string | undefined
21057
+ credential_id?: string | undefined
21058
+ }
21059
+ | undefined
21060
+ is_managed: true
21061
+ }
21062
+ | {
21063
+ acs_credential_id: string
21064
+ acs_user_id?: string | undefined
21065
+ acs_credential_pool_id?: string | undefined
21066
+ acs_system_id: string
21067
+ parent_acs_credential_id?: string | undefined
21068
+ display_name: string
21069
+ code?: (string | undefined) | null
21070
+ card_number?: (string | undefined) | null
21071
+ is_issued?: boolean | undefined
21072
+ issued_at?: (string | undefined) | null
21073
+ access_method: 'code' | 'card' | 'mobile_key'
21074
+ external_type?:
21075
+ | (
21076
+ | 'pti_card'
21077
+ | 'brivo_credential'
21078
+ | 'hid_credential'
21079
+ | 'visionline_card'
21080
+ | 'salto_ks_credential'
21081
+ )
21082
+ | undefined
21083
+ external_type_display_name?: string | undefined
21084
+ created_at: string
21085
+ workspace_id: string
21086
+ starts_at?: string | undefined
21087
+ ends_at?: string | undefined
21088
+ errors: Array<{
21089
+ error_code: string
21090
+ message: string
21091
+ }>
21092
+ warnings: Array<{
21093
+ warning_code: string
21094
+ message: string
21095
+ }>
21096
+ is_multi_phone_sync_credential?: boolean | undefined
21097
+ is_latest_desired_state_synced_with_provider?:
21098
+ | boolean
21099
+ | undefined
21100
+ latest_desired_state_synced_with_provider_at?:
21101
+ | string
21102
+ | undefined
21103
+ visionline_metadata?:
21104
+ | {
21105
+ card_function_type: 'guest' | 'staff'
21106
+ joiner_acs_credential_ids?: string[] | undefined
21107
+ guest_acs_entrance_ids?: string[] | undefined
21108
+ common_acs_entrance_ids?: string[] | undefined
21109
+ is_valid?: boolean | undefined
21110
+ auto_join?: boolean | undefined
21111
+ card_id?: string | undefined
21112
+ credential_id?: string | undefined
21113
+ }
21114
+ | undefined
21115
+ is_managed: false
21116
+ }
19572
21117
  }
19573
21118
  | {
19574
21119
  /** The ID of the action attempt. */
@@ -20222,7 +21767,117 @@ export interface Routes {
20222
21767
  status: 'success'
20223
21768
  error: null
20224
21769
  action_type: 'ENCODE_CARD'
20225
- result: {}
21770
+ result:
21771
+ | {
21772
+ acs_credential_id: string
21773
+ acs_user_id?: string | undefined
21774
+ acs_credential_pool_id?: string | undefined
21775
+ acs_system_id: string
21776
+ parent_acs_credential_id?: string | undefined
21777
+ display_name: string
21778
+ code?: (string | undefined) | null
21779
+ card_number?: (string | undefined) | null
21780
+ is_issued?: boolean | undefined
21781
+ issued_at?: (string | undefined) | null
21782
+ access_method: 'code' | 'card' | 'mobile_key'
21783
+ external_type?:
21784
+ | (
21785
+ | 'pti_card'
21786
+ | 'brivo_credential'
21787
+ | 'hid_credential'
21788
+ | 'visionline_card'
21789
+ | 'salto_ks_credential'
21790
+ )
21791
+ | undefined
21792
+ external_type_display_name?: string | undefined
21793
+ created_at: string
21794
+ workspace_id: string
21795
+ starts_at?: string | undefined
21796
+ ends_at?: string | undefined
21797
+ errors: Array<{
21798
+ error_code: string
21799
+ message: string
21800
+ }>
21801
+ warnings: Array<{
21802
+ warning_code: string
21803
+ message: string
21804
+ }>
21805
+ is_multi_phone_sync_credential?: boolean | undefined
21806
+ is_latest_desired_state_synced_with_provider?:
21807
+ | boolean
21808
+ | undefined
21809
+ latest_desired_state_synced_with_provider_at?:
21810
+ | string
21811
+ | undefined
21812
+ visionline_metadata?:
21813
+ | {
21814
+ card_function_type: 'guest' | 'staff'
21815
+ joiner_acs_credential_ids?: string[] | undefined
21816
+ guest_acs_entrance_ids?: string[] | undefined
21817
+ common_acs_entrance_ids?: string[] | undefined
21818
+ is_valid?: boolean | undefined
21819
+ auto_join?: boolean | undefined
21820
+ card_id?: string | undefined
21821
+ credential_id?: string | undefined
21822
+ }
21823
+ | undefined
21824
+ is_managed: true
21825
+ }
21826
+ | {
21827
+ acs_credential_id: string
21828
+ acs_user_id?: string | undefined
21829
+ acs_credential_pool_id?: string | undefined
21830
+ acs_system_id: string
21831
+ parent_acs_credential_id?: string | undefined
21832
+ display_name: string
21833
+ code?: (string | undefined) | null
21834
+ card_number?: (string | undefined) | null
21835
+ is_issued?: boolean | undefined
21836
+ issued_at?: (string | undefined) | null
21837
+ access_method: 'code' | 'card' | 'mobile_key'
21838
+ external_type?:
21839
+ | (
21840
+ | 'pti_card'
21841
+ | 'brivo_credential'
21842
+ | 'hid_credential'
21843
+ | 'visionline_card'
21844
+ | 'salto_ks_credential'
21845
+ )
21846
+ | undefined
21847
+ external_type_display_name?: string | undefined
21848
+ created_at: string
21849
+ workspace_id: string
21850
+ starts_at?: string | undefined
21851
+ ends_at?: string | undefined
21852
+ errors: Array<{
21853
+ error_code: string
21854
+ message: string
21855
+ }>
21856
+ warnings: Array<{
21857
+ warning_code: string
21858
+ message: string
21859
+ }>
21860
+ is_multi_phone_sync_credential?: boolean | undefined
21861
+ is_latest_desired_state_synced_with_provider?:
21862
+ | boolean
21863
+ | undefined
21864
+ latest_desired_state_synced_with_provider_at?:
21865
+ | string
21866
+ | undefined
21867
+ visionline_metadata?:
21868
+ | {
21869
+ card_function_type: 'guest' | 'staff'
21870
+ joiner_acs_credential_ids?: string[] | undefined
21871
+ guest_acs_entrance_ids?: string[] | undefined
21872
+ common_acs_entrance_ids?: string[] | undefined
21873
+ is_valid?: boolean | undefined
21874
+ auto_join?: boolean | undefined
21875
+ card_id?: string | undefined
21876
+ credential_id?: string | undefined
21877
+ }
21878
+ | undefined
21879
+ is_managed: false
21880
+ }
20226
21881
  }
20227
21882
  | {
20228
21883
  /** The ID of the action attempt. */
@@ -21535,7 +23190,117 @@ export interface Routes {
21535
23190
  status: 'success'
21536
23191
  error: null
21537
23192
  action_type: 'ENCODE_CARD'
21538
- result: {}
23193
+ result:
23194
+ | {
23195
+ acs_credential_id: string
23196
+ acs_user_id?: string | undefined
23197
+ acs_credential_pool_id?: string | undefined
23198
+ acs_system_id: string
23199
+ parent_acs_credential_id?: string | undefined
23200
+ display_name: string
23201
+ code?: (string | undefined) | null
23202
+ card_number?: (string | undefined) | null
23203
+ is_issued?: boolean | undefined
23204
+ issued_at?: (string | undefined) | null
23205
+ access_method: 'code' | 'card' | 'mobile_key'
23206
+ external_type?:
23207
+ | (
23208
+ | 'pti_card'
23209
+ | 'brivo_credential'
23210
+ | 'hid_credential'
23211
+ | 'visionline_card'
23212
+ | 'salto_ks_credential'
23213
+ )
23214
+ | undefined
23215
+ external_type_display_name?: string | undefined
23216
+ created_at: string
23217
+ workspace_id: string
23218
+ starts_at?: string | undefined
23219
+ ends_at?: string | undefined
23220
+ errors: Array<{
23221
+ error_code: string
23222
+ message: string
23223
+ }>
23224
+ warnings: Array<{
23225
+ warning_code: string
23226
+ message: string
23227
+ }>
23228
+ is_multi_phone_sync_credential?: boolean | undefined
23229
+ is_latest_desired_state_synced_with_provider?:
23230
+ | boolean
23231
+ | undefined
23232
+ latest_desired_state_synced_with_provider_at?:
23233
+ | string
23234
+ | undefined
23235
+ visionline_metadata?:
23236
+ | {
23237
+ card_function_type: 'guest' | 'staff'
23238
+ joiner_acs_credential_ids?: string[] | undefined
23239
+ guest_acs_entrance_ids?: string[] | undefined
23240
+ common_acs_entrance_ids?: string[] | undefined
23241
+ is_valid?: boolean | undefined
23242
+ auto_join?: boolean | undefined
23243
+ card_id?: string | undefined
23244
+ credential_id?: string | undefined
23245
+ }
23246
+ | undefined
23247
+ is_managed: true
23248
+ }
23249
+ | {
23250
+ acs_credential_id: string
23251
+ acs_user_id?: string | undefined
23252
+ acs_credential_pool_id?: string | undefined
23253
+ acs_system_id: string
23254
+ parent_acs_credential_id?: string | undefined
23255
+ display_name: string
23256
+ code?: (string | undefined) | null
23257
+ card_number?: (string | undefined) | null
23258
+ is_issued?: boolean | undefined
23259
+ issued_at?: (string | undefined) | null
23260
+ access_method: 'code' | 'card' | 'mobile_key'
23261
+ external_type?:
23262
+ | (
23263
+ | 'pti_card'
23264
+ | 'brivo_credential'
23265
+ | 'hid_credential'
23266
+ | 'visionline_card'
23267
+ | 'salto_ks_credential'
23268
+ )
23269
+ | undefined
23270
+ external_type_display_name?: string | undefined
23271
+ created_at: string
23272
+ workspace_id: string
23273
+ starts_at?: string | undefined
23274
+ ends_at?: string | undefined
23275
+ errors: Array<{
23276
+ error_code: string
23277
+ message: string
23278
+ }>
23279
+ warnings: Array<{
23280
+ warning_code: string
23281
+ message: string
23282
+ }>
23283
+ is_multi_phone_sync_credential?: boolean | undefined
23284
+ is_latest_desired_state_synced_with_provider?:
23285
+ | boolean
23286
+ | undefined
23287
+ latest_desired_state_synced_with_provider_at?:
23288
+ | string
23289
+ | undefined
23290
+ visionline_metadata?:
23291
+ | {
23292
+ card_function_type: 'guest' | 'staff'
23293
+ joiner_acs_credential_ids?: string[] | undefined
23294
+ guest_acs_entrance_ids?: string[] | undefined
23295
+ common_acs_entrance_ids?: string[] | undefined
23296
+ is_valid?: boolean | undefined
23297
+ auto_join?: boolean | undefined
23298
+ card_id?: string | undefined
23299
+ credential_id?: string | undefined
23300
+ }
23301
+ | undefined
23302
+ is_managed: false
23303
+ }
21539
23304
  }
21540
23305
  | {
21541
23306
  /** The ID of the action attempt. */
@@ -22191,7 +23956,117 @@ export interface Routes {
22191
23956
  status: 'success'
22192
23957
  error: null
22193
23958
  action_type: 'ENCODE_CARD'
22194
- result: {}
23959
+ result:
23960
+ | {
23961
+ acs_credential_id: string
23962
+ acs_user_id?: string | undefined
23963
+ acs_credential_pool_id?: string | undefined
23964
+ acs_system_id: string
23965
+ parent_acs_credential_id?: string | undefined
23966
+ display_name: string
23967
+ code?: (string | undefined) | null
23968
+ card_number?: (string | undefined) | null
23969
+ is_issued?: boolean | undefined
23970
+ issued_at?: (string | undefined) | null
23971
+ access_method: 'code' | 'card' | 'mobile_key'
23972
+ external_type?:
23973
+ | (
23974
+ | 'pti_card'
23975
+ | 'brivo_credential'
23976
+ | 'hid_credential'
23977
+ | 'visionline_card'
23978
+ | 'salto_ks_credential'
23979
+ )
23980
+ | undefined
23981
+ external_type_display_name?: string | undefined
23982
+ created_at: string
23983
+ workspace_id: string
23984
+ starts_at?: string | undefined
23985
+ ends_at?: string | undefined
23986
+ errors: Array<{
23987
+ error_code: string
23988
+ message: string
23989
+ }>
23990
+ warnings: Array<{
23991
+ warning_code: string
23992
+ message: string
23993
+ }>
23994
+ is_multi_phone_sync_credential?: boolean | undefined
23995
+ is_latest_desired_state_synced_with_provider?:
23996
+ | boolean
23997
+ | undefined
23998
+ latest_desired_state_synced_with_provider_at?:
23999
+ | string
24000
+ | undefined
24001
+ visionline_metadata?:
24002
+ | {
24003
+ card_function_type: 'guest' | 'staff'
24004
+ joiner_acs_credential_ids?: string[] | undefined
24005
+ guest_acs_entrance_ids?: string[] | undefined
24006
+ common_acs_entrance_ids?: string[] | undefined
24007
+ is_valid?: boolean | undefined
24008
+ auto_join?: boolean | undefined
24009
+ card_id?: string | undefined
24010
+ credential_id?: string | undefined
24011
+ }
24012
+ | undefined
24013
+ is_managed: true
24014
+ }
24015
+ | {
24016
+ acs_credential_id: string
24017
+ acs_user_id?: string | undefined
24018
+ acs_credential_pool_id?: string | undefined
24019
+ acs_system_id: string
24020
+ parent_acs_credential_id?: string | undefined
24021
+ display_name: string
24022
+ code?: (string | undefined) | null
24023
+ card_number?: (string | undefined) | null
24024
+ is_issued?: boolean | undefined
24025
+ issued_at?: (string | undefined) | null
24026
+ access_method: 'code' | 'card' | 'mobile_key'
24027
+ external_type?:
24028
+ | (
24029
+ | 'pti_card'
24030
+ | 'brivo_credential'
24031
+ | 'hid_credential'
24032
+ | 'visionline_card'
24033
+ | 'salto_ks_credential'
24034
+ )
24035
+ | undefined
24036
+ external_type_display_name?: string | undefined
24037
+ created_at: string
24038
+ workspace_id: string
24039
+ starts_at?: string | undefined
24040
+ ends_at?: string | undefined
24041
+ errors: Array<{
24042
+ error_code: string
24043
+ message: string
24044
+ }>
24045
+ warnings: Array<{
24046
+ warning_code: string
24047
+ message: string
24048
+ }>
24049
+ is_multi_phone_sync_credential?: boolean | undefined
24050
+ is_latest_desired_state_synced_with_provider?:
24051
+ | boolean
24052
+ | undefined
24053
+ latest_desired_state_synced_with_provider_at?:
24054
+ | string
24055
+ | undefined
24056
+ visionline_metadata?:
24057
+ | {
24058
+ card_function_type: 'guest' | 'staff'
24059
+ joiner_acs_credential_ids?: string[] | undefined
24060
+ guest_acs_entrance_ids?: string[] | undefined
24061
+ common_acs_entrance_ids?: string[] | undefined
24062
+ is_valid?: boolean | undefined
24063
+ auto_join?: boolean | undefined
24064
+ card_id?: string | undefined
24065
+ credential_id?: string | undefined
24066
+ }
24067
+ | undefined
24068
+ is_managed: false
24069
+ }
22195
24070
  }
22196
24071
  | {
22197
24072
  /** The ID of the action attempt. */
@@ -24242,7 +26117,117 @@ export interface Routes {
24242
26117
  status: 'success'
24243
26118
  error: null
24244
26119
  action_type: 'ENCODE_CARD'
24245
- result: {}
26120
+ result:
26121
+ | {
26122
+ acs_credential_id: string
26123
+ acs_user_id?: string | undefined
26124
+ acs_credential_pool_id?: string | undefined
26125
+ acs_system_id: string
26126
+ parent_acs_credential_id?: string | undefined
26127
+ display_name: string
26128
+ code?: (string | undefined) | null
26129
+ card_number?: (string | undefined) | null
26130
+ is_issued?: boolean | undefined
26131
+ issued_at?: (string | undefined) | null
26132
+ access_method: 'code' | 'card' | 'mobile_key'
26133
+ external_type?:
26134
+ | (
26135
+ | 'pti_card'
26136
+ | 'brivo_credential'
26137
+ | 'hid_credential'
26138
+ | 'visionline_card'
26139
+ | 'salto_ks_credential'
26140
+ )
26141
+ | undefined
26142
+ external_type_display_name?: string | undefined
26143
+ created_at: string
26144
+ workspace_id: string
26145
+ starts_at?: string | undefined
26146
+ ends_at?: string | undefined
26147
+ errors: Array<{
26148
+ error_code: string
26149
+ message: string
26150
+ }>
26151
+ warnings: Array<{
26152
+ warning_code: string
26153
+ message: string
26154
+ }>
26155
+ is_multi_phone_sync_credential?: boolean | undefined
26156
+ is_latest_desired_state_synced_with_provider?:
26157
+ | boolean
26158
+ | undefined
26159
+ latest_desired_state_synced_with_provider_at?:
26160
+ | string
26161
+ | undefined
26162
+ visionline_metadata?:
26163
+ | {
26164
+ card_function_type: 'guest' | 'staff'
26165
+ joiner_acs_credential_ids?: string[] | undefined
26166
+ guest_acs_entrance_ids?: string[] | undefined
26167
+ common_acs_entrance_ids?: string[] | undefined
26168
+ is_valid?: boolean | undefined
26169
+ auto_join?: boolean | undefined
26170
+ card_id?: string | undefined
26171
+ credential_id?: string | undefined
26172
+ }
26173
+ | undefined
26174
+ is_managed: true
26175
+ }
26176
+ | {
26177
+ acs_credential_id: string
26178
+ acs_user_id?: string | undefined
26179
+ acs_credential_pool_id?: string | undefined
26180
+ acs_system_id: string
26181
+ parent_acs_credential_id?: string | undefined
26182
+ display_name: string
26183
+ code?: (string | undefined) | null
26184
+ card_number?: (string | undefined) | null
26185
+ is_issued?: boolean | undefined
26186
+ issued_at?: (string | undefined) | null
26187
+ access_method: 'code' | 'card' | 'mobile_key'
26188
+ external_type?:
26189
+ | (
26190
+ | 'pti_card'
26191
+ | 'brivo_credential'
26192
+ | 'hid_credential'
26193
+ | 'visionline_card'
26194
+ | 'salto_ks_credential'
26195
+ )
26196
+ | undefined
26197
+ external_type_display_name?: string | undefined
26198
+ created_at: string
26199
+ workspace_id: string
26200
+ starts_at?: string | undefined
26201
+ ends_at?: string | undefined
26202
+ errors: Array<{
26203
+ error_code: string
26204
+ message: string
26205
+ }>
26206
+ warnings: Array<{
26207
+ warning_code: string
26208
+ message: string
26209
+ }>
26210
+ is_multi_phone_sync_credential?: boolean | undefined
26211
+ is_latest_desired_state_synced_with_provider?:
26212
+ | boolean
26213
+ | undefined
26214
+ latest_desired_state_synced_with_provider_at?:
26215
+ | string
26216
+ | undefined
26217
+ visionline_metadata?:
26218
+ | {
26219
+ card_function_type: 'guest' | 'staff'
26220
+ joiner_acs_credential_ids?: string[] | undefined
26221
+ guest_acs_entrance_ids?: string[] | undefined
26222
+ common_acs_entrance_ids?: string[] | undefined
26223
+ is_valid?: boolean | undefined
26224
+ auto_join?: boolean | undefined
26225
+ card_id?: string | undefined
26226
+ credential_id?: string | undefined
26227
+ }
26228
+ | undefined
26229
+ is_managed: false
26230
+ }
24246
26231
  }
24247
26232
  | {
24248
26233
  /** The ID of the action attempt. */
@@ -25015,7 +27000,117 @@ export interface Routes {
25015
27000
  status: 'success'
25016
27001
  error: null
25017
27002
  action_type: 'ENCODE_CARD'
25018
- result: {}
27003
+ result:
27004
+ | {
27005
+ acs_credential_id: string
27006
+ acs_user_id?: string | undefined
27007
+ acs_credential_pool_id?: string | undefined
27008
+ acs_system_id: string
27009
+ parent_acs_credential_id?: string | undefined
27010
+ display_name: string
27011
+ code?: (string | undefined) | null
27012
+ card_number?: (string | undefined) | null
27013
+ is_issued?: boolean | undefined
27014
+ issued_at?: (string | undefined) | null
27015
+ access_method: 'code' | 'card' | 'mobile_key'
27016
+ external_type?:
27017
+ | (
27018
+ | 'pti_card'
27019
+ | 'brivo_credential'
27020
+ | 'hid_credential'
27021
+ | 'visionline_card'
27022
+ | 'salto_ks_credential'
27023
+ )
27024
+ | undefined
27025
+ external_type_display_name?: string | undefined
27026
+ created_at: string
27027
+ workspace_id: string
27028
+ starts_at?: string | undefined
27029
+ ends_at?: string | undefined
27030
+ errors: Array<{
27031
+ error_code: string
27032
+ message: string
27033
+ }>
27034
+ warnings: Array<{
27035
+ warning_code: string
27036
+ message: string
27037
+ }>
27038
+ is_multi_phone_sync_credential?: boolean | undefined
27039
+ is_latest_desired_state_synced_with_provider?:
27040
+ | boolean
27041
+ | undefined
27042
+ latest_desired_state_synced_with_provider_at?:
27043
+ | string
27044
+ | undefined
27045
+ visionline_metadata?:
27046
+ | {
27047
+ card_function_type: 'guest' | 'staff'
27048
+ joiner_acs_credential_ids?: string[] | undefined
27049
+ guest_acs_entrance_ids?: string[] | undefined
27050
+ common_acs_entrance_ids?: string[] | undefined
27051
+ is_valid?: boolean | undefined
27052
+ auto_join?: boolean | undefined
27053
+ card_id?: string | undefined
27054
+ credential_id?: string | undefined
27055
+ }
27056
+ | undefined
27057
+ is_managed: true
27058
+ }
27059
+ | {
27060
+ acs_credential_id: string
27061
+ acs_user_id?: string | undefined
27062
+ acs_credential_pool_id?: string | undefined
27063
+ acs_system_id: string
27064
+ parent_acs_credential_id?: string | undefined
27065
+ display_name: string
27066
+ code?: (string | undefined) | null
27067
+ card_number?: (string | undefined) | null
27068
+ is_issued?: boolean | undefined
27069
+ issued_at?: (string | undefined) | null
27070
+ access_method: 'code' | 'card' | 'mobile_key'
27071
+ external_type?:
27072
+ | (
27073
+ | 'pti_card'
27074
+ | 'brivo_credential'
27075
+ | 'hid_credential'
27076
+ | 'visionline_card'
27077
+ | 'salto_ks_credential'
27078
+ )
27079
+ | undefined
27080
+ external_type_display_name?: string | undefined
27081
+ created_at: string
27082
+ workspace_id: string
27083
+ starts_at?: string | undefined
27084
+ ends_at?: string | undefined
27085
+ errors: Array<{
27086
+ error_code: string
27087
+ message: string
27088
+ }>
27089
+ warnings: Array<{
27090
+ warning_code: string
27091
+ message: string
27092
+ }>
27093
+ is_multi_phone_sync_credential?: boolean | undefined
27094
+ is_latest_desired_state_synced_with_provider?:
27095
+ | boolean
27096
+ | undefined
27097
+ latest_desired_state_synced_with_provider_at?:
27098
+ | string
27099
+ | undefined
27100
+ visionline_metadata?:
27101
+ | {
27102
+ card_function_type: 'guest' | 'staff'
27103
+ joiner_acs_credential_ids?: string[] | undefined
27104
+ guest_acs_entrance_ids?: string[] | undefined
27105
+ common_acs_entrance_ids?: string[] | undefined
27106
+ is_valid?: boolean | undefined
27107
+ auto_join?: boolean | undefined
27108
+ card_id?: string | undefined
27109
+ credential_id?: string | undefined
27110
+ }
27111
+ | undefined
27112
+ is_managed: false
27113
+ }
25019
27114
  }
25020
27115
  | {
25021
27116
  /** The ID of the action attempt. */
@@ -27541,7 +29636,117 @@ export interface Routes {
27541
29636
  status: 'success'
27542
29637
  error: null
27543
29638
  action_type: 'ENCODE_CARD'
27544
- result: {}
29639
+ result:
29640
+ | {
29641
+ acs_credential_id: string
29642
+ acs_user_id?: string | undefined
29643
+ acs_credential_pool_id?: string | undefined
29644
+ acs_system_id: string
29645
+ parent_acs_credential_id?: string | undefined
29646
+ display_name: string
29647
+ code?: (string | undefined) | null
29648
+ card_number?: (string | undefined) | null
29649
+ is_issued?: boolean | undefined
29650
+ issued_at?: (string | undefined) | null
29651
+ access_method: 'code' | 'card' | 'mobile_key'
29652
+ external_type?:
29653
+ | (
29654
+ | 'pti_card'
29655
+ | 'brivo_credential'
29656
+ | 'hid_credential'
29657
+ | 'visionline_card'
29658
+ | 'salto_ks_credential'
29659
+ )
29660
+ | undefined
29661
+ external_type_display_name?: string | undefined
29662
+ created_at: string
29663
+ workspace_id: string
29664
+ starts_at?: string | undefined
29665
+ ends_at?: string | undefined
29666
+ errors: Array<{
29667
+ error_code: string
29668
+ message: string
29669
+ }>
29670
+ warnings: Array<{
29671
+ warning_code: string
29672
+ message: string
29673
+ }>
29674
+ is_multi_phone_sync_credential?: boolean | undefined
29675
+ is_latest_desired_state_synced_with_provider?:
29676
+ | boolean
29677
+ | undefined
29678
+ latest_desired_state_synced_with_provider_at?:
29679
+ | string
29680
+ | undefined
29681
+ visionline_metadata?:
29682
+ | {
29683
+ card_function_type: 'guest' | 'staff'
29684
+ joiner_acs_credential_ids?: string[] | undefined
29685
+ guest_acs_entrance_ids?: string[] | undefined
29686
+ common_acs_entrance_ids?: string[] | undefined
29687
+ is_valid?: boolean | undefined
29688
+ auto_join?: boolean | undefined
29689
+ card_id?: string | undefined
29690
+ credential_id?: string | undefined
29691
+ }
29692
+ | undefined
29693
+ is_managed: true
29694
+ }
29695
+ | {
29696
+ acs_credential_id: string
29697
+ acs_user_id?: string | undefined
29698
+ acs_credential_pool_id?: string | undefined
29699
+ acs_system_id: string
29700
+ parent_acs_credential_id?: string | undefined
29701
+ display_name: string
29702
+ code?: (string | undefined) | null
29703
+ card_number?: (string | undefined) | null
29704
+ is_issued?: boolean | undefined
29705
+ issued_at?: (string | undefined) | null
29706
+ access_method: 'code' | 'card' | 'mobile_key'
29707
+ external_type?:
29708
+ | (
29709
+ | 'pti_card'
29710
+ | 'brivo_credential'
29711
+ | 'hid_credential'
29712
+ | 'visionline_card'
29713
+ | 'salto_ks_credential'
29714
+ )
29715
+ | undefined
29716
+ external_type_display_name?: string | undefined
29717
+ created_at: string
29718
+ workspace_id: string
29719
+ starts_at?: string | undefined
29720
+ ends_at?: string | undefined
29721
+ errors: Array<{
29722
+ error_code: string
29723
+ message: string
29724
+ }>
29725
+ warnings: Array<{
29726
+ warning_code: string
29727
+ message: string
29728
+ }>
29729
+ is_multi_phone_sync_credential?: boolean | undefined
29730
+ is_latest_desired_state_synced_with_provider?:
29731
+ | boolean
29732
+ | undefined
29733
+ latest_desired_state_synced_with_provider_at?:
29734
+ | string
29735
+ | undefined
29736
+ visionline_metadata?:
29737
+ | {
29738
+ card_function_type: 'guest' | 'staff'
29739
+ joiner_acs_credential_ids?: string[] | undefined
29740
+ guest_acs_entrance_ids?: string[] | undefined
29741
+ common_acs_entrance_ids?: string[] | undefined
29742
+ is_valid?: boolean | undefined
29743
+ auto_join?: boolean | undefined
29744
+ card_id?: string | undefined
29745
+ credential_id?: string | undefined
29746
+ }
29747
+ | undefined
29748
+ is_managed: false
29749
+ }
27545
29750
  }
27546
29751
  | {
27547
29752
  /** The ID of the action attempt. */