@seamapi/types 1.270.0 → 1.271.1
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 +241 -37
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2306 -78
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +465 -3
- package/lib/seam/connect/models/action-attempts/encode-card.d.ts +465 -3
- package/lib/seam/connect/models/action-attempts/encode-card.js +2 -1
- package/lib/seam/connect/models/action-attempts/encode-card.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +220 -49
- package/lib/seam/connect/openapi.js +240 -36
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1621 -26
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/encode-card.ts +5 -1
- package/src/lib/seam/connect/openapi.ts +240 -36
- package/src/lib/seam/connect/route-types.ts +2237 -46
|
@@ -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. */
|
|
@@ -4302,14 +4742,10 @@ export interface Routes {
|
|
|
4302
4742
|
method: 'POST'
|
|
4303
4743
|
queryParams: {}
|
|
4304
4744
|
jsonBody: {}
|
|
4305
|
-
commonParams:
|
|
4306
|
-
|
|
4307
|
-
|
|
4308
|
-
|
|
4309
|
-
}
|
|
4310
|
-
| {
|
|
4311
|
-
device_id: string
|
|
4312
|
-
}
|
|
4745
|
+
commonParams: {
|
|
4746
|
+
device_id: string
|
|
4747
|
+
acs_credential_id: string
|
|
4748
|
+
}
|
|
4313
4749
|
formData: {}
|
|
4314
4750
|
jsonResponse: {
|
|
4315
4751
|
action_attempt:
|
|
@@ -4552,7 +4988,117 @@ export interface Routes {
|
|
|
4552
4988
|
status: 'success'
|
|
4553
4989
|
error: null
|
|
4554
4990
|
action_type: 'ENCODE_CARD'
|
|
4555
|
-
result:
|
|
4991
|
+
result:
|
|
4992
|
+
| {
|
|
4993
|
+
acs_credential_id: string
|
|
4994
|
+
acs_user_id?: string | undefined
|
|
4995
|
+
acs_credential_pool_id?: string | undefined
|
|
4996
|
+
acs_system_id: string
|
|
4997
|
+
parent_acs_credential_id?: string | undefined
|
|
4998
|
+
display_name: string
|
|
4999
|
+
code?: (string | undefined) | null
|
|
5000
|
+
card_number?: (string | undefined) | null
|
|
5001
|
+
is_issued?: boolean | undefined
|
|
5002
|
+
issued_at?: (string | undefined) | null
|
|
5003
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
5004
|
+
external_type?:
|
|
5005
|
+
| (
|
|
5006
|
+
| 'pti_card'
|
|
5007
|
+
| 'brivo_credential'
|
|
5008
|
+
| 'hid_credential'
|
|
5009
|
+
| 'visionline_card'
|
|
5010
|
+
| 'salto_ks_credential'
|
|
5011
|
+
)
|
|
5012
|
+
| undefined
|
|
5013
|
+
external_type_display_name?: string | undefined
|
|
5014
|
+
created_at: string
|
|
5015
|
+
workspace_id: string
|
|
5016
|
+
starts_at?: string | undefined
|
|
5017
|
+
ends_at?: string | undefined
|
|
5018
|
+
errors: Array<{
|
|
5019
|
+
error_code: string
|
|
5020
|
+
message: string
|
|
5021
|
+
}>
|
|
5022
|
+
warnings: Array<{
|
|
5023
|
+
warning_code: string
|
|
5024
|
+
message: string
|
|
5025
|
+
}>
|
|
5026
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
5027
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5028
|
+
| boolean
|
|
5029
|
+
| undefined
|
|
5030
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5031
|
+
| string
|
|
5032
|
+
| undefined
|
|
5033
|
+
visionline_metadata?:
|
|
5034
|
+
| {
|
|
5035
|
+
card_function_type: 'guest' | 'staff'
|
|
5036
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
5037
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
5038
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
5039
|
+
is_valid?: boolean | undefined
|
|
5040
|
+
auto_join?: boolean | undefined
|
|
5041
|
+
card_id?: string | undefined
|
|
5042
|
+
credential_id?: string | undefined
|
|
5043
|
+
}
|
|
5044
|
+
| undefined
|
|
5045
|
+
is_managed: true
|
|
5046
|
+
}
|
|
5047
|
+
| {
|
|
5048
|
+
acs_credential_id: string
|
|
5049
|
+
acs_user_id?: string | undefined
|
|
5050
|
+
acs_credential_pool_id?: string | undefined
|
|
5051
|
+
acs_system_id: string
|
|
5052
|
+
parent_acs_credential_id?: string | undefined
|
|
5053
|
+
display_name: string
|
|
5054
|
+
code?: (string | undefined) | null
|
|
5055
|
+
card_number?: (string | undefined) | null
|
|
5056
|
+
is_issued?: boolean | undefined
|
|
5057
|
+
issued_at?: (string | undefined) | null
|
|
5058
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
5059
|
+
external_type?:
|
|
5060
|
+
| (
|
|
5061
|
+
| 'pti_card'
|
|
5062
|
+
| 'brivo_credential'
|
|
5063
|
+
| 'hid_credential'
|
|
5064
|
+
| 'visionline_card'
|
|
5065
|
+
| 'salto_ks_credential'
|
|
5066
|
+
)
|
|
5067
|
+
| undefined
|
|
5068
|
+
external_type_display_name?: string | undefined
|
|
5069
|
+
created_at: string
|
|
5070
|
+
workspace_id: string
|
|
5071
|
+
starts_at?: string | undefined
|
|
5072
|
+
ends_at?: string | undefined
|
|
5073
|
+
errors: Array<{
|
|
5074
|
+
error_code: string
|
|
5075
|
+
message: string
|
|
5076
|
+
}>
|
|
5077
|
+
warnings: Array<{
|
|
5078
|
+
warning_code: string
|
|
5079
|
+
message: string
|
|
5080
|
+
}>
|
|
5081
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
5082
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5083
|
+
| boolean
|
|
5084
|
+
| undefined
|
|
5085
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5086
|
+
| string
|
|
5087
|
+
| undefined
|
|
5088
|
+
visionline_metadata?:
|
|
5089
|
+
| {
|
|
5090
|
+
card_function_type: 'guest' | 'staff'
|
|
5091
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
5092
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
5093
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
5094
|
+
is_valid?: boolean | undefined
|
|
5095
|
+
auto_join?: boolean | undefined
|
|
5096
|
+
card_id?: string | undefined
|
|
5097
|
+
credential_id?: string | undefined
|
|
5098
|
+
}
|
|
5099
|
+
| undefined
|
|
5100
|
+
is_managed: false
|
|
5101
|
+
}
|
|
4556
5102
|
}
|
|
4557
5103
|
| {
|
|
4558
5104
|
/** The ID of the action attempt. */
|
|
@@ -5595,15 +6141,10 @@ export interface Routes {
|
|
|
5595
6141
|
method: 'POST'
|
|
5596
6142
|
queryParams: {}
|
|
5597
6143
|
jsonBody: {}
|
|
5598
|
-
commonParams:
|
|
5599
|
-
|
|
5600
|
-
|
|
5601
|
-
|
|
5602
|
-
}
|
|
5603
|
-
| {
|
|
5604
|
-
acs_system_id: string
|
|
5605
|
-
device_id: string
|
|
5606
|
-
}
|
|
6144
|
+
commonParams: {
|
|
6145
|
+
acs_system_id: string
|
|
6146
|
+
device_id: string
|
|
6147
|
+
}
|
|
5607
6148
|
formData: {}
|
|
5608
6149
|
jsonResponse: {
|
|
5609
6150
|
action_attempt:
|
|
@@ -5846,7 +6387,117 @@ export interface Routes {
|
|
|
5846
6387
|
status: 'success'
|
|
5847
6388
|
error: null
|
|
5848
6389
|
action_type: 'ENCODE_CARD'
|
|
5849
|
-
result:
|
|
6390
|
+
result:
|
|
6391
|
+
| {
|
|
6392
|
+
acs_credential_id: string
|
|
6393
|
+
acs_user_id?: string | undefined
|
|
6394
|
+
acs_credential_pool_id?: string | undefined
|
|
6395
|
+
acs_system_id: string
|
|
6396
|
+
parent_acs_credential_id?: string | undefined
|
|
6397
|
+
display_name: string
|
|
6398
|
+
code?: (string | undefined) | null
|
|
6399
|
+
card_number?: (string | undefined) | null
|
|
6400
|
+
is_issued?: boolean | undefined
|
|
6401
|
+
issued_at?: (string | undefined) | null
|
|
6402
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
6403
|
+
external_type?:
|
|
6404
|
+
| (
|
|
6405
|
+
| 'pti_card'
|
|
6406
|
+
| 'brivo_credential'
|
|
6407
|
+
| 'hid_credential'
|
|
6408
|
+
| 'visionline_card'
|
|
6409
|
+
| 'salto_ks_credential'
|
|
6410
|
+
)
|
|
6411
|
+
| undefined
|
|
6412
|
+
external_type_display_name?: string | undefined
|
|
6413
|
+
created_at: string
|
|
6414
|
+
workspace_id: string
|
|
6415
|
+
starts_at?: string | undefined
|
|
6416
|
+
ends_at?: string | undefined
|
|
6417
|
+
errors: Array<{
|
|
6418
|
+
error_code: string
|
|
6419
|
+
message: string
|
|
6420
|
+
}>
|
|
6421
|
+
warnings: Array<{
|
|
6422
|
+
warning_code: string
|
|
6423
|
+
message: string
|
|
6424
|
+
}>
|
|
6425
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
6426
|
+
is_latest_desired_state_synced_with_provider?:
|
|
6427
|
+
| boolean
|
|
6428
|
+
| undefined
|
|
6429
|
+
latest_desired_state_synced_with_provider_at?:
|
|
6430
|
+
| string
|
|
6431
|
+
| undefined
|
|
6432
|
+
visionline_metadata?:
|
|
6433
|
+
| {
|
|
6434
|
+
card_function_type: 'guest' | 'staff'
|
|
6435
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
6436
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
6437
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
6438
|
+
is_valid?: boolean | undefined
|
|
6439
|
+
auto_join?: boolean | undefined
|
|
6440
|
+
card_id?: string | undefined
|
|
6441
|
+
credential_id?: string | undefined
|
|
6442
|
+
}
|
|
6443
|
+
| undefined
|
|
6444
|
+
is_managed: true
|
|
6445
|
+
}
|
|
6446
|
+
| {
|
|
6447
|
+
acs_credential_id: string
|
|
6448
|
+
acs_user_id?: string | undefined
|
|
6449
|
+
acs_credential_pool_id?: string | undefined
|
|
6450
|
+
acs_system_id: string
|
|
6451
|
+
parent_acs_credential_id?: string | undefined
|
|
6452
|
+
display_name: string
|
|
6453
|
+
code?: (string | undefined) | null
|
|
6454
|
+
card_number?: (string | undefined) | null
|
|
6455
|
+
is_issued?: boolean | undefined
|
|
6456
|
+
issued_at?: (string | undefined) | null
|
|
6457
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
6458
|
+
external_type?:
|
|
6459
|
+
| (
|
|
6460
|
+
| 'pti_card'
|
|
6461
|
+
| 'brivo_credential'
|
|
6462
|
+
| 'hid_credential'
|
|
6463
|
+
| 'visionline_card'
|
|
6464
|
+
| 'salto_ks_credential'
|
|
6465
|
+
)
|
|
6466
|
+
| undefined
|
|
6467
|
+
external_type_display_name?: string | undefined
|
|
6468
|
+
created_at: string
|
|
6469
|
+
workspace_id: string
|
|
6470
|
+
starts_at?: string | undefined
|
|
6471
|
+
ends_at?: string | undefined
|
|
6472
|
+
errors: Array<{
|
|
6473
|
+
error_code: string
|
|
6474
|
+
message: string
|
|
6475
|
+
}>
|
|
6476
|
+
warnings: Array<{
|
|
6477
|
+
warning_code: string
|
|
6478
|
+
message: string
|
|
6479
|
+
}>
|
|
6480
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
6481
|
+
is_latest_desired_state_synced_with_provider?:
|
|
6482
|
+
| boolean
|
|
6483
|
+
| undefined
|
|
6484
|
+
latest_desired_state_synced_with_provider_at?:
|
|
6485
|
+
| string
|
|
6486
|
+
| undefined
|
|
6487
|
+
visionline_metadata?:
|
|
6488
|
+
| {
|
|
6489
|
+
card_function_type: 'guest' | 'staff'
|
|
6490
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
6491
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
6492
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
6493
|
+
is_valid?: boolean | undefined
|
|
6494
|
+
auto_join?: boolean | undefined
|
|
6495
|
+
card_id?: string | undefined
|
|
6496
|
+
credential_id?: string | undefined
|
|
6497
|
+
}
|
|
6498
|
+
| undefined
|
|
6499
|
+
is_managed: false
|
|
6500
|
+
}
|
|
5850
6501
|
}
|
|
5851
6502
|
| {
|
|
5852
6503
|
/** The ID of the action attempt. */
|
|
@@ -7905,7 +8556,117 @@ export interface Routes {
|
|
|
7905
8556
|
status: 'success'
|
|
7906
8557
|
error: null
|
|
7907
8558
|
action_type: 'ENCODE_CARD'
|
|
7908
|
-
result:
|
|
8559
|
+
result:
|
|
8560
|
+
| {
|
|
8561
|
+
acs_credential_id: string
|
|
8562
|
+
acs_user_id?: string | undefined
|
|
8563
|
+
acs_credential_pool_id?: string | undefined
|
|
8564
|
+
acs_system_id: string
|
|
8565
|
+
parent_acs_credential_id?: string | undefined
|
|
8566
|
+
display_name: string
|
|
8567
|
+
code?: (string | undefined) | null
|
|
8568
|
+
card_number?: (string | undefined) | null
|
|
8569
|
+
is_issued?: boolean | undefined
|
|
8570
|
+
issued_at?: (string | undefined) | null
|
|
8571
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
8572
|
+
external_type?:
|
|
8573
|
+
| (
|
|
8574
|
+
| 'pti_card'
|
|
8575
|
+
| 'brivo_credential'
|
|
8576
|
+
| 'hid_credential'
|
|
8577
|
+
| 'visionline_card'
|
|
8578
|
+
| 'salto_ks_credential'
|
|
8579
|
+
)
|
|
8580
|
+
| undefined
|
|
8581
|
+
external_type_display_name?: string | undefined
|
|
8582
|
+
created_at: string
|
|
8583
|
+
workspace_id: string
|
|
8584
|
+
starts_at?: string | undefined
|
|
8585
|
+
ends_at?: string | undefined
|
|
8586
|
+
errors: Array<{
|
|
8587
|
+
error_code: string
|
|
8588
|
+
message: string
|
|
8589
|
+
}>
|
|
8590
|
+
warnings: Array<{
|
|
8591
|
+
warning_code: string
|
|
8592
|
+
message: string
|
|
8593
|
+
}>
|
|
8594
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
8595
|
+
is_latest_desired_state_synced_with_provider?:
|
|
8596
|
+
| boolean
|
|
8597
|
+
| undefined
|
|
8598
|
+
latest_desired_state_synced_with_provider_at?:
|
|
8599
|
+
| string
|
|
8600
|
+
| undefined
|
|
8601
|
+
visionline_metadata?:
|
|
8602
|
+
| {
|
|
8603
|
+
card_function_type: 'guest' | 'staff'
|
|
8604
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
8605
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
8606
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
8607
|
+
is_valid?: boolean | undefined
|
|
8608
|
+
auto_join?: boolean | undefined
|
|
8609
|
+
card_id?: string | undefined
|
|
8610
|
+
credential_id?: string | undefined
|
|
8611
|
+
}
|
|
8612
|
+
| undefined
|
|
8613
|
+
is_managed: true
|
|
8614
|
+
}
|
|
8615
|
+
| {
|
|
8616
|
+
acs_credential_id: string
|
|
8617
|
+
acs_user_id?: string | undefined
|
|
8618
|
+
acs_credential_pool_id?: string | undefined
|
|
8619
|
+
acs_system_id: string
|
|
8620
|
+
parent_acs_credential_id?: string | undefined
|
|
8621
|
+
display_name: string
|
|
8622
|
+
code?: (string | undefined) | null
|
|
8623
|
+
card_number?: (string | undefined) | null
|
|
8624
|
+
is_issued?: boolean | undefined
|
|
8625
|
+
issued_at?: (string | undefined) | null
|
|
8626
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
8627
|
+
external_type?:
|
|
8628
|
+
| (
|
|
8629
|
+
| 'pti_card'
|
|
8630
|
+
| 'brivo_credential'
|
|
8631
|
+
| 'hid_credential'
|
|
8632
|
+
| 'visionline_card'
|
|
8633
|
+
| 'salto_ks_credential'
|
|
8634
|
+
)
|
|
8635
|
+
| undefined
|
|
8636
|
+
external_type_display_name?: string | undefined
|
|
8637
|
+
created_at: string
|
|
8638
|
+
workspace_id: string
|
|
8639
|
+
starts_at?: string | undefined
|
|
8640
|
+
ends_at?: string | undefined
|
|
8641
|
+
errors: Array<{
|
|
8642
|
+
error_code: string
|
|
8643
|
+
message: string
|
|
8644
|
+
}>
|
|
8645
|
+
warnings: Array<{
|
|
8646
|
+
warning_code: string
|
|
8647
|
+
message: string
|
|
8648
|
+
}>
|
|
8649
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
8650
|
+
is_latest_desired_state_synced_with_provider?:
|
|
8651
|
+
| boolean
|
|
8652
|
+
| undefined
|
|
8653
|
+
latest_desired_state_synced_with_provider_at?:
|
|
8654
|
+
| string
|
|
8655
|
+
| undefined
|
|
8656
|
+
visionline_metadata?:
|
|
8657
|
+
| {
|
|
8658
|
+
card_function_type: 'guest' | 'staff'
|
|
8659
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
8660
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
8661
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
8662
|
+
is_valid?: boolean | undefined
|
|
8663
|
+
auto_join?: boolean | undefined
|
|
8664
|
+
card_id?: string | undefined
|
|
8665
|
+
credential_id?: string | undefined
|
|
8666
|
+
}
|
|
8667
|
+
| undefined
|
|
8668
|
+
is_managed: false
|
|
8669
|
+
}
|
|
7909
8670
|
}
|
|
7910
8671
|
| {
|
|
7911
8672
|
/** The ID of the action attempt. */
|
|
@@ -8556,7 +9317,117 @@ export interface Routes {
|
|
|
8556
9317
|
status: 'success'
|
|
8557
9318
|
error: null
|
|
8558
9319
|
action_type: 'ENCODE_CARD'
|
|
8559
|
-
result:
|
|
9320
|
+
result:
|
|
9321
|
+
| {
|
|
9322
|
+
acs_credential_id: string
|
|
9323
|
+
acs_user_id?: string | undefined
|
|
9324
|
+
acs_credential_pool_id?: string | undefined
|
|
9325
|
+
acs_system_id: string
|
|
9326
|
+
parent_acs_credential_id?: string | undefined
|
|
9327
|
+
display_name: string
|
|
9328
|
+
code?: (string | undefined) | null
|
|
9329
|
+
card_number?: (string | undefined) | null
|
|
9330
|
+
is_issued?: boolean | undefined
|
|
9331
|
+
issued_at?: (string | undefined) | null
|
|
9332
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
9333
|
+
external_type?:
|
|
9334
|
+
| (
|
|
9335
|
+
| 'pti_card'
|
|
9336
|
+
| 'brivo_credential'
|
|
9337
|
+
| 'hid_credential'
|
|
9338
|
+
| 'visionline_card'
|
|
9339
|
+
| 'salto_ks_credential'
|
|
9340
|
+
)
|
|
9341
|
+
| undefined
|
|
9342
|
+
external_type_display_name?: string | undefined
|
|
9343
|
+
created_at: string
|
|
9344
|
+
workspace_id: string
|
|
9345
|
+
starts_at?: string | undefined
|
|
9346
|
+
ends_at?: string | undefined
|
|
9347
|
+
errors: Array<{
|
|
9348
|
+
error_code: string
|
|
9349
|
+
message: string
|
|
9350
|
+
}>
|
|
9351
|
+
warnings: Array<{
|
|
9352
|
+
warning_code: string
|
|
9353
|
+
message: string
|
|
9354
|
+
}>
|
|
9355
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
9356
|
+
is_latest_desired_state_synced_with_provider?:
|
|
9357
|
+
| boolean
|
|
9358
|
+
| undefined
|
|
9359
|
+
latest_desired_state_synced_with_provider_at?:
|
|
9360
|
+
| string
|
|
9361
|
+
| undefined
|
|
9362
|
+
visionline_metadata?:
|
|
9363
|
+
| {
|
|
9364
|
+
card_function_type: 'guest' | 'staff'
|
|
9365
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
9366
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
9367
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
9368
|
+
is_valid?: boolean | undefined
|
|
9369
|
+
auto_join?: boolean | undefined
|
|
9370
|
+
card_id?: string | undefined
|
|
9371
|
+
credential_id?: string | undefined
|
|
9372
|
+
}
|
|
9373
|
+
| undefined
|
|
9374
|
+
is_managed: true
|
|
9375
|
+
}
|
|
9376
|
+
| {
|
|
9377
|
+
acs_credential_id: string
|
|
9378
|
+
acs_user_id?: string | undefined
|
|
9379
|
+
acs_credential_pool_id?: string | undefined
|
|
9380
|
+
acs_system_id: string
|
|
9381
|
+
parent_acs_credential_id?: string | undefined
|
|
9382
|
+
display_name: string
|
|
9383
|
+
code?: (string | undefined) | null
|
|
9384
|
+
card_number?: (string | undefined) | null
|
|
9385
|
+
is_issued?: boolean | undefined
|
|
9386
|
+
issued_at?: (string | undefined) | null
|
|
9387
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
9388
|
+
external_type?:
|
|
9389
|
+
| (
|
|
9390
|
+
| 'pti_card'
|
|
9391
|
+
| 'brivo_credential'
|
|
9392
|
+
| 'hid_credential'
|
|
9393
|
+
| 'visionline_card'
|
|
9394
|
+
| 'salto_ks_credential'
|
|
9395
|
+
)
|
|
9396
|
+
| undefined
|
|
9397
|
+
external_type_display_name?: string | undefined
|
|
9398
|
+
created_at: string
|
|
9399
|
+
workspace_id: string
|
|
9400
|
+
starts_at?: string | undefined
|
|
9401
|
+
ends_at?: string | undefined
|
|
9402
|
+
errors: Array<{
|
|
9403
|
+
error_code: string
|
|
9404
|
+
message: string
|
|
9405
|
+
}>
|
|
9406
|
+
warnings: Array<{
|
|
9407
|
+
warning_code: string
|
|
9408
|
+
message: string
|
|
9409
|
+
}>
|
|
9410
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
9411
|
+
is_latest_desired_state_synced_with_provider?:
|
|
9412
|
+
| boolean
|
|
9413
|
+
| undefined
|
|
9414
|
+
latest_desired_state_synced_with_provider_at?:
|
|
9415
|
+
| string
|
|
9416
|
+
| undefined
|
|
9417
|
+
visionline_metadata?:
|
|
9418
|
+
| {
|
|
9419
|
+
card_function_type: 'guest' | 'staff'
|
|
9420
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
9421
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
9422
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
9423
|
+
is_valid?: boolean | undefined
|
|
9424
|
+
auto_join?: boolean | undefined
|
|
9425
|
+
card_id?: string | undefined
|
|
9426
|
+
credential_id?: string | undefined
|
|
9427
|
+
}
|
|
9428
|
+
| undefined
|
|
9429
|
+
is_managed: false
|
|
9430
|
+
}
|
|
8560
9431
|
}
|
|
8561
9432
|
| {
|
|
8562
9433
|
/** The ID of the action attempt. */
|
|
@@ -14607,7 +15478,117 @@ export interface Routes {
|
|
|
14607
15478
|
status: 'success'
|
|
14608
15479
|
error: null
|
|
14609
15480
|
action_type: 'ENCODE_CARD'
|
|
14610
|
-
result:
|
|
15481
|
+
result:
|
|
15482
|
+
| {
|
|
15483
|
+
acs_credential_id: string
|
|
15484
|
+
acs_user_id?: string | undefined
|
|
15485
|
+
acs_credential_pool_id?: string | undefined
|
|
15486
|
+
acs_system_id: string
|
|
15487
|
+
parent_acs_credential_id?: string | undefined
|
|
15488
|
+
display_name: string
|
|
15489
|
+
code?: (string | undefined) | null
|
|
15490
|
+
card_number?: (string | undefined) | null
|
|
15491
|
+
is_issued?: boolean | undefined
|
|
15492
|
+
issued_at?: (string | undefined) | null
|
|
15493
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
15494
|
+
external_type?:
|
|
15495
|
+
| (
|
|
15496
|
+
| 'pti_card'
|
|
15497
|
+
| 'brivo_credential'
|
|
15498
|
+
| 'hid_credential'
|
|
15499
|
+
| 'visionline_card'
|
|
15500
|
+
| 'salto_ks_credential'
|
|
15501
|
+
)
|
|
15502
|
+
| undefined
|
|
15503
|
+
external_type_display_name?: string | undefined
|
|
15504
|
+
created_at: string
|
|
15505
|
+
workspace_id: string
|
|
15506
|
+
starts_at?: string | undefined
|
|
15507
|
+
ends_at?: string | undefined
|
|
15508
|
+
errors: Array<{
|
|
15509
|
+
error_code: string
|
|
15510
|
+
message: string
|
|
15511
|
+
}>
|
|
15512
|
+
warnings: Array<{
|
|
15513
|
+
warning_code: string
|
|
15514
|
+
message: string
|
|
15515
|
+
}>
|
|
15516
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
15517
|
+
is_latest_desired_state_synced_with_provider?:
|
|
15518
|
+
| boolean
|
|
15519
|
+
| undefined
|
|
15520
|
+
latest_desired_state_synced_with_provider_at?:
|
|
15521
|
+
| string
|
|
15522
|
+
| undefined
|
|
15523
|
+
visionline_metadata?:
|
|
15524
|
+
| {
|
|
15525
|
+
card_function_type: 'guest' | 'staff'
|
|
15526
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
15527
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
15528
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
15529
|
+
is_valid?: boolean | undefined
|
|
15530
|
+
auto_join?: boolean | undefined
|
|
15531
|
+
card_id?: string | undefined
|
|
15532
|
+
credential_id?: string | undefined
|
|
15533
|
+
}
|
|
15534
|
+
| undefined
|
|
15535
|
+
is_managed: true
|
|
15536
|
+
}
|
|
15537
|
+
| {
|
|
15538
|
+
acs_credential_id: string
|
|
15539
|
+
acs_user_id?: string | undefined
|
|
15540
|
+
acs_credential_pool_id?: string | undefined
|
|
15541
|
+
acs_system_id: string
|
|
15542
|
+
parent_acs_credential_id?: string | undefined
|
|
15543
|
+
display_name: string
|
|
15544
|
+
code?: (string | undefined) | null
|
|
15545
|
+
card_number?: (string | undefined) | null
|
|
15546
|
+
is_issued?: boolean | undefined
|
|
15547
|
+
issued_at?: (string | undefined) | null
|
|
15548
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
15549
|
+
external_type?:
|
|
15550
|
+
| (
|
|
15551
|
+
| 'pti_card'
|
|
15552
|
+
| 'brivo_credential'
|
|
15553
|
+
| 'hid_credential'
|
|
15554
|
+
| 'visionline_card'
|
|
15555
|
+
| 'salto_ks_credential'
|
|
15556
|
+
)
|
|
15557
|
+
| undefined
|
|
15558
|
+
external_type_display_name?: string | undefined
|
|
15559
|
+
created_at: string
|
|
15560
|
+
workspace_id: string
|
|
15561
|
+
starts_at?: string | undefined
|
|
15562
|
+
ends_at?: string | undefined
|
|
15563
|
+
errors: Array<{
|
|
15564
|
+
error_code: string
|
|
15565
|
+
message: string
|
|
15566
|
+
}>
|
|
15567
|
+
warnings: Array<{
|
|
15568
|
+
warning_code: string
|
|
15569
|
+
message: string
|
|
15570
|
+
}>
|
|
15571
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
15572
|
+
is_latest_desired_state_synced_with_provider?:
|
|
15573
|
+
| boolean
|
|
15574
|
+
| undefined
|
|
15575
|
+
latest_desired_state_synced_with_provider_at?:
|
|
15576
|
+
| string
|
|
15577
|
+
| undefined
|
|
15578
|
+
visionline_metadata?:
|
|
15579
|
+
| {
|
|
15580
|
+
card_function_type: 'guest' | 'staff'
|
|
15581
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
15582
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
15583
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
15584
|
+
is_valid?: boolean | undefined
|
|
15585
|
+
auto_join?: boolean | undefined
|
|
15586
|
+
card_id?: string | undefined
|
|
15587
|
+
credential_id?: string | undefined
|
|
15588
|
+
}
|
|
15589
|
+
| undefined
|
|
15590
|
+
is_managed: false
|
|
15591
|
+
}
|
|
14611
15592
|
}
|
|
14612
15593
|
| {
|
|
14613
15594
|
/** The ID of the action attempt. */
|
|
@@ -15259,16 +16240,126 @@ export interface Routes {
|
|
|
15259
16240
|
status: 'success'
|
|
15260
16241
|
error: null
|
|
15261
16242
|
action_type: 'ENCODE_CARD'
|
|
15262
|
-
result:
|
|
15263
|
-
|
|
15264
|
-
|
|
15265
|
-
|
|
15266
|
-
|
|
15267
|
-
|
|
15268
|
-
|
|
15269
|
-
|
|
15270
|
-
|
|
15271
|
-
|
|
16243
|
+
result:
|
|
16244
|
+
| {
|
|
16245
|
+
acs_credential_id: string
|
|
16246
|
+
acs_user_id?: string | undefined
|
|
16247
|
+
acs_credential_pool_id?: string | undefined
|
|
16248
|
+
acs_system_id: string
|
|
16249
|
+
parent_acs_credential_id?: string | undefined
|
|
16250
|
+
display_name: string
|
|
16251
|
+
code?: (string | undefined) | null
|
|
16252
|
+
card_number?: (string | undefined) | null
|
|
16253
|
+
is_issued?: boolean | undefined
|
|
16254
|
+
issued_at?: (string | undefined) | null
|
|
16255
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
16256
|
+
external_type?:
|
|
16257
|
+
| (
|
|
16258
|
+
| 'pti_card'
|
|
16259
|
+
| 'brivo_credential'
|
|
16260
|
+
| 'hid_credential'
|
|
16261
|
+
| 'visionline_card'
|
|
16262
|
+
| 'salto_ks_credential'
|
|
16263
|
+
)
|
|
16264
|
+
| undefined
|
|
16265
|
+
external_type_display_name?: string | undefined
|
|
16266
|
+
created_at: string
|
|
16267
|
+
workspace_id: string
|
|
16268
|
+
starts_at?: string | undefined
|
|
16269
|
+
ends_at?: string | undefined
|
|
16270
|
+
errors: Array<{
|
|
16271
|
+
error_code: string
|
|
16272
|
+
message: string
|
|
16273
|
+
}>
|
|
16274
|
+
warnings: Array<{
|
|
16275
|
+
warning_code: string
|
|
16276
|
+
message: string
|
|
16277
|
+
}>
|
|
16278
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
16279
|
+
is_latest_desired_state_synced_with_provider?:
|
|
16280
|
+
| boolean
|
|
16281
|
+
| undefined
|
|
16282
|
+
latest_desired_state_synced_with_provider_at?:
|
|
16283
|
+
| string
|
|
16284
|
+
| undefined
|
|
16285
|
+
visionline_metadata?:
|
|
16286
|
+
| {
|
|
16287
|
+
card_function_type: 'guest' | 'staff'
|
|
16288
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
16289
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
16290
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
16291
|
+
is_valid?: boolean | undefined
|
|
16292
|
+
auto_join?: boolean | undefined
|
|
16293
|
+
card_id?: string | undefined
|
|
16294
|
+
credential_id?: string | undefined
|
|
16295
|
+
}
|
|
16296
|
+
| undefined
|
|
16297
|
+
is_managed: true
|
|
16298
|
+
}
|
|
16299
|
+
| {
|
|
16300
|
+
acs_credential_id: string
|
|
16301
|
+
acs_user_id?: string | undefined
|
|
16302
|
+
acs_credential_pool_id?: string | undefined
|
|
16303
|
+
acs_system_id: string
|
|
16304
|
+
parent_acs_credential_id?: string | undefined
|
|
16305
|
+
display_name: string
|
|
16306
|
+
code?: (string | undefined) | null
|
|
16307
|
+
card_number?: (string | undefined) | null
|
|
16308
|
+
is_issued?: boolean | undefined
|
|
16309
|
+
issued_at?: (string | undefined) | null
|
|
16310
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
16311
|
+
external_type?:
|
|
16312
|
+
| (
|
|
16313
|
+
| 'pti_card'
|
|
16314
|
+
| 'brivo_credential'
|
|
16315
|
+
| 'hid_credential'
|
|
16316
|
+
| 'visionline_card'
|
|
16317
|
+
| 'salto_ks_credential'
|
|
16318
|
+
)
|
|
16319
|
+
| undefined
|
|
16320
|
+
external_type_display_name?: string | undefined
|
|
16321
|
+
created_at: string
|
|
16322
|
+
workspace_id: string
|
|
16323
|
+
starts_at?: string | undefined
|
|
16324
|
+
ends_at?: string | undefined
|
|
16325
|
+
errors: Array<{
|
|
16326
|
+
error_code: string
|
|
16327
|
+
message: string
|
|
16328
|
+
}>
|
|
16329
|
+
warnings: Array<{
|
|
16330
|
+
warning_code: string
|
|
16331
|
+
message: string
|
|
16332
|
+
}>
|
|
16333
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
16334
|
+
is_latest_desired_state_synced_with_provider?:
|
|
16335
|
+
| boolean
|
|
16336
|
+
| undefined
|
|
16337
|
+
latest_desired_state_synced_with_provider_at?:
|
|
16338
|
+
| string
|
|
16339
|
+
| undefined
|
|
16340
|
+
visionline_metadata?:
|
|
16341
|
+
| {
|
|
16342
|
+
card_function_type: 'guest' | 'staff'
|
|
16343
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
16344
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
16345
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
16346
|
+
is_valid?: boolean | undefined
|
|
16347
|
+
auto_join?: boolean | undefined
|
|
16348
|
+
card_id?: string | undefined
|
|
16349
|
+
credential_id?: string | undefined
|
|
16350
|
+
}
|
|
16351
|
+
| undefined
|
|
16352
|
+
is_managed: false
|
|
16353
|
+
}
|
|
16354
|
+
}
|
|
16355
|
+
| {
|
|
16356
|
+
/** The ID of the action attempt. */
|
|
16357
|
+
action_attempt_id: string
|
|
16358
|
+
status: 'error'
|
|
16359
|
+
result: null
|
|
16360
|
+
action_type: 'ENCODE_CARD'
|
|
16361
|
+
error: {
|
|
16362
|
+
type: string
|
|
15272
16363
|
message: string
|
|
15273
16364
|
}
|
|
15274
16365
|
}
|
|
@@ -17349,7 +18440,117 @@ export interface Routes {
|
|
|
17349
18440
|
status: 'success'
|
|
17350
18441
|
error: null
|
|
17351
18442
|
action_type: 'ENCODE_CARD'
|
|
17352
|
-
result:
|
|
18443
|
+
result:
|
|
18444
|
+
| {
|
|
18445
|
+
acs_credential_id: string
|
|
18446
|
+
acs_user_id?: string | undefined
|
|
18447
|
+
acs_credential_pool_id?: string | undefined
|
|
18448
|
+
acs_system_id: string
|
|
18449
|
+
parent_acs_credential_id?: string | undefined
|
|
18450
|
+
display_name: string
|
|
18451
|
+
code?: (string | undefined) | null
|
|
18452
|
+
card_number?: (string | undefined) | null
|
|
18453
|
+
is_issued?: boolean | undefined
|
|
18454
|
+
issued_at?: (string | undefined) | null
|
|
18455
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
18456
|
+
external_type?:
|
|
18457
|
+
| (
|
|
18458
|
+
| 'pti_card'
|
|
18459
|
+
| 'brivo_credential'
|
|
18460
|
+
| 'hid_credential'
|
|
18461
|
+
| 'visionline_card'
|
|
18462
|
+
| 'salto_ks_credential'
|
|
18463
|
+
)
|
|
18464
|
+
| undefined
|
|
18465
|
+
external_type_display_name?: string | undefined
|
|
18466
|
+
created_at: string
|
|
18467
|
+
workspace_id: string
|
|
18468
|
+
starts_at?: string | undefined
|
|
18469
|
+
ends_at?: string | undefined
|
|
18470
|
+
errors: Array<{
|
|
18471
|
+
error_code: string
|
|
18472
|
+
message: string
|
|
18473
|
+
}>
|
|
18474
|
+
warnings: Array<{
|
|
18475
|
+
warning_code: string
|
|
18476
|
+
message: string
|
|
18477
|
+
}>
|
|
18478
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
18479
|
+
is_latest_desired_state_synced_with_provider?:
|
|
18480
|
+
| boolean
|
|
18481
|
+
| undefined
|
|
18482
|
+
latest_desired_state_synced_with_provider_at?:
|
|
18483
|
+
| string
|
|
18484
|
+
| undefined
|
|
18485
|
+
visionline_metadata?:
|
|
18486
|
+
| {
|
|
18487
|
+
card_function_type: 'guest' | 'staff'
|
|
18488
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
18489
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
18490
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
18491
|
+
is_valid?: boolean | undefined
|
|
18492
|
+
auto_join?: boolean | undefined
|
|
18493
|
+
card_id?: string | undefined
|
|
18494
|
+
credential_id?: string | undefined
|
|
18495
|
+
}
|
|
18496
|
+
| undefined
|
|
18497
|
+
is_managed: true
|
|
18498
|
+
}
|
|
18499
|
+
| {
|
|
18500
|
+
acs_credential_id: string
|
|
18501
|
+
acs_user_id?: string | undefined
|
|
18502
|
+
acs_credential_pool_id?: string | undefined
|
|
18503
|
+
acs_system_id: string
|
|
18504
|
+
parent_acs_credential_id?: string | undefined
|
|
18505
|
+
display_name: string
|
|
18506
|
+
code?: (string | undefined) | null
|
|
18507
|
+
card_number?: (string | undefined) | null
|
|
18508
|
+
is_issued?: boolean | undefined
|
|
18509
|
+
issued_at?: (string | undefined) | null
|
|
18510
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
18511
|
+
external_type?:
|
|
18512
|
+
| (
|
|
18513
|
+
| 'pti_card'
|
|
18514
|
+
| 'brivo_credential'
|
|
18515
|
+
| 'hid_credential'
|
|
18516
|
+
| 'visionline_card'
|
|
18517
|
+
| 'salto_ks_credential'
|
|
18518
|
+
)
|
|
18519
|
+
| undefined
|
|
18520
|
+
external_type_display_name?: string | undefined
|
|
18521
|
+
created_at: string
|
|
18522
|
+
workspace_id: string
|
|
18523
|
+
starts_at?: string | undefined
|
|
18524
|
+
ends_at?: string | undefined
|
|
18525
|
+
errors: Array<{
|
|
18526
|
+
error_code: string
|
|
18527
|
+
message: string
|
|
18528
|
+
}>
|
|
18529
|
+
warnings: Array<{
|
|
18530
|
+
warning_code: string
|
|
18531
|
+
message: string
|
|
18532
|
+
}>
|
|
18533
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
18534
|
+
is_latest_desired_state_synced_with_provider?:
|
|
18535
|
+
| boolean
|
|
18536
|
+
| undefined
|
|
18537
|
+
latest_desired_state_synced_with_provider_at?:
|
|
18538
|
+
| string
|
|
18539
|
+
| undefined
|
|
18540
|
+
visionline_metadata?:
|
|
18541
|
+
| {
|
|
18542
|
+
card_function_type: 'guest' | 'staff'
|
|
18543
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
18544
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
18545
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
18546
|
+
is_valid?: boolean | undefined
|
|
18547
|
+
auto_join?: boolean | undefined
|
|
18548
|
+
card_id?: string | undefined
|
|
18549
|
+
credential_id?: string | undefined
|
|
18550
|
+
}
|
|
18551
|
+
| undefined
|
|
18552
|
+
is_managed: false
|
|
18553
|
+
}
|
|
17353
18554
|
}
|
|
17354
18555
|
| {
|
|
17355
18556
|
/** The ID of the action attempt. */
|
|
@@ -18011,7 +19212,117 @@ export interface Routes {
|
|
|
18011
19212
|
status: 'success'
|
|
18012
19213
|
error: null
|
|
18013
19214
|
action_type: 'ENCODE_CARD'
|
|
18014
|
-
result:
|
|
19215
|
+
result:
|
|
19216
|
+
| {
|
|
19217
|
+
acs_credential_id: string
|
|
19218
|
+
acs_user_id?: string | undefined
|
|
19219
|
+
acs_credential_pool_id?: string | undefined
|
|
19220
|
+
acs_system_id: string
|
|
19221
|
+
parent_acs_credential_id?: string | undefined
|
|
19222
|
+
display_name: string
|
|
19223
|
+
code?: (string | undefined) | null
|
|
19224
|
+
card_number?: (string | undefined) | null
|
|
19225
|
+
is_issued?: boolean | undefined
|
|
19226
|
+
issued_at?: (string | undefined) | null
|
|
19227
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
19228
|
+
external_type?:
|
|
19229
|
+
| (
|
|
19230
|
+
| 'pti_card'
|
|
19231
|
+
| 'brivo_credential'
|
|
19232
|
+
| 'hid_credential'
|
|
19233
|
+
| 'visionline_card'
|
|
19234
|
+
| 'salto_ks_credential'
|
|
19235
|
+
)
|
|
19236
|
+
| undefined
|
|
19237
|
+
external_type_display_name?: string | undefined
|
|
19238
|
+
created_at: string
|
|
19239
|
+
workspace_id: string
|
|
19240
|
+
starts_at?: string | undefined
|
|
19241
|
+
ends_at?: string | undefined
|
|
19242
|
+
errors: Array<{
|
|
19243
|
+
error_code: string
|
|
19244
|
+
message: string
|
|
19245
|
+
}>
|
|
19246
|
+
warnings: Array<{
|
|
19247
|
+
warning_code: string
|
|
19248
|
+
message: string
|
|
19249
|
+
}>
|
|
19250
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
19251
|
+
is_latest_desired_state_synced_with_provider?:
|
|
19252
|
+
| boolean
|
|
19253
|
+
| undefined
|
|
19254
|
+
latest_desired_state_synced_with_provider_at?:
|
|
19255
|
+
| string
|
|
19256
|
+
| undefined
|
|
19257
|
+
visionline_metadata?:
|
|
19258
|
+
| {
|
|
19259
|
+
card_function_type: 'guest' | 'staff'
|
|
19260
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
19261
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
19262
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
19263
|
+
is_valid?: boolean | undefined
|
|
19264
|
+
auto_join?: boolean | undefined
|
|
19265
|
+
card_id?: string | undefined
|
|
19266
|
+
credential_id?: string | undefined
|
|
19267
|
+
}
|
|
19268
|
+
| undefined
|
|
19269
|
+
is_managed: true
|
|
19270
|
+
}
|
|
19271
|
+
| {
|
|
19272
|
+
acs_credential_id: string
|
|
19273
|
+
acs_user_id?: string | undefined
|
|
19274
|
+
acs_credential_pool_id?: string | undefined
|
|
19275
|
+
acs_system_id: string
|
|
19276
|
+
parent_acs_credential_id?: string | undefined
|
|
19277
|
+
display_name: string
|
|
19278
|
+
code?: (string | undefined) | null
|
|
19279
|
+
card_number?: (string | undefined) | null
|
|
19280
|
+
is_issued?: boolean | undefined
|
|
19281
|
+
issued_at?: (string | undefined) | null
|
|
19282
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
19283
|
+
external_type?:
|
|
19284
|
+
| (
|
|
19285
|
+
| 'pti_card'
|
|
19286
|
+
| 'brivo_credential'
|
|
19287
|
+
| 'hid_credential'
|
|
19288
|
+
| 'visionline_card'
|
|
19289
|
+
| 'salto_ks_credential'
|
|
19290
|
+
)
|
|
19291
|
+
| undefined
|
|
19292
|
+
external_type_display_name?: string | undefined
|
|
19293
|
+
created_at: string
|
|
19294
|
+
workspace_id: string
|
|
19295
|
+
starts_at?: string | undefined
|
|
19296
|
+
ends_at?: string | undefined
|
|
19297
|
+
errors: Array<{
|
|
19298
|
+
error_code: string
|
|
19299
|
+
message: string
|
|
19300
|
+
}>
|
|
19301
|
+
warnings: Array<{
|
|
19302
|
+
warning_code: string
|
|
19303
|
+
message: string
|
|
19304
|
+
}>
|
|
19305
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
19306
|
+
is_latest_desired_state_synced_with_provider?:
|
|
19307
|
+
| boolean
|
|
19308
|
+
| undefined
|
|
19309
|
+
latest_desired_state_synced_with_provider_at?:
|
|
19310
|
+
| string
|
|
19311
|
+
| undefined
|
|
19312
|
+
visionline_metadata?:
|
|
19313
|
+
| {
|
|
19314
|
+
card_function_type: 'guest' | 'staff'
|
|
19315
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
19316
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
19317
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
19318
|
+
is_valid?: boolean | undefined
|
|
19319
|
+
auto_join?: boolean | undefined
|
|
19320
|
+
card_id?: string | undefined
|
|
19321
|
+
credential_id?: string | undefined
|
|
19322
|
+
}
|
|
19323
|
+
| undefined
|
|
19324
|
+
is_managed: false
|
|
19325
|
+
}
|
|
18015
19326
|
}
|
|
18016
19327
|
| {
|
|
18017
19328
|
/** The ID of the action attempt. */
|
|
@@ -18712,7 +20023,117 @@ export interface Routes {
|
|
|
18712
20023
|
status: 'success'
|
|
18713
20024
|
error: null
|
|
18714
20025
|
action_type: 'ENCODE_CARD'
|
|
18715
|
-
result:
|
|
20026
|
+
result:
|
|
20027
|
+
| {
|
|
20028
|
+
acs_credential_id: string
|
|
20029
|
+
acs_user_id?: string | undefined
|
|
20030
|
+
acs_credential_pool_id?: string | undefined
|
|
20031
|
+
acs_system_id: string
|
|
20032
|
+
parent_acs_credential_id?: string | undefined
|
|
20033
|
+
display_name: string
|
|
20034
|
+
code?: (string | undefined) | null
|
|
20035
|
+
card_number?: (string | undefined) | null
|
|
20036
|
+
is_issued?: boolean | undefined
|
|
20037
|
+
issued_at?: (string | undefined) | null
|
|
20038
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
20039
|
+
external_type?:
|
|
20040
|
+
| (
|
|
20041
|
+
| 'pti_card'
|
|
20042
|
+
| 'brivo_credential'
|
|
20043
|
+
| 'hid_credential'
|
|
20044
|
+
| 'visionline_card'
|
|
20045
|
+
| 'salto_ks_credential'
|
|
20046
|
+
)
|
|
20047
|
+
| undefined
|
|
20048
|
+
external_type_display_name?: string | undefined
|
|
20049
|
+
created_at: string
|
|
20050
|
+
workspace_id: string
|
|
20051
|
+
starts_at?: string | undefined
|
|
20052
|
+
ends_at?: string | undefined
|
|
20053
|
+
errors: Array<{
|
|
20054
|
+
error_code: string
|
|
20055
|
+
message: string
|
|
20056
|
+
}>
|
|
20057
|
+
warnings: Array<{
|
|
20058
|
+
warning_code: string
|
|
20059
|
+
message: string
|
|
20060
|
+
}>
|
|
20061
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
20062
|
+
is_latest_desired_state_synced_with_provider?:
|
|
20063
|
+
| boolean
|
|
20064
|
+
| undefined
|
|
20065
|
+
latest_desired_state_synced_with_provider_at?:
|
|
20066
|
+
| string
|
|
20067
|
+
| undefined
|
|
20068
|
+
visionline_metadata?:
|
|
20069
|
+
| {
|
|
20070
|
+
card_function_type: 'guest' | 'staff'
|
|
20071
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
20072
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
20073
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
20074
|
+
is_valid?: boolean | undefined
|
|
20075
|
+
auto_join?: boolean | undefined
|
|
20076
|
+
card_id?: string | undefined
|
|
20077
|
+
credential_id?: string | undefined
|
|
20078
|
+
}
|
|
20079
|
+
| undefined
|
|
20080
|
+
is_managed: true
|
|
20081
|
+
}
|
|
20082
|
+
| {
|
|
20083
|
+
acs_credential_id: string
|
|
20084
|
+
acs_user_id?: string | undefined
|
|
20085
|
+
acs_credential_pool_id?: string | undefined
|
|
20086
|
+
acs_system_id: string
|
|
20087
|
+
parent_acs_credential_id?: string | undefined
|
|
20088
|
+
display_name: string
|
|
20089
|
+
code?: (string | undefined) | null
|
|
20090
|
+
card_number?: (string | undefined) | null
|
|
20091
|
+
is_issued?: boolean | undefined
|
|
20092
|
+
issued_at?: (string | undefined) | null
|
|
20093
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
20094
|
+
external_type?:
|
|
20095
|
+
| (
|
|
20096
|
+
| 'pti_card'
|
|
20097
|
+
| 'brivo_credential'
|
|
20098
|
+
| 'hid_credential'
|
|
20099
|
+
| 'visionline_card'
|
|
20100
|
+
| 'salto_ks_credential'
|
|
20101
|
+
)
|
|
20102
|
+
| undefined
|
|
20103
|
+
external_type_display_name?: string | undefined
|
|
20104
|
+
created_at: string
|
|
20105
|
+
workspace_id: string
|
|
20106
|
+
starts_at?: string | undefined
|
|
20107
|
+
ends_at?: string | undefined
|
|
20108
|
+
errors: Array<{
|
|
20109
|
+
error_code: string
|
|
20110
|
+
message: string
|
|
20111
|
+
}>
|
|
20112
|
+
warnings: Array<{
|
|
20113
|
+
warning_code: string
|
|
20114
|
+
message: string
|
|
20115
|
+
}>
|
|
20116
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
20117
|
+
is_latest_desired_state_synced_with_provider?:
|
|
20118
|
+
| boolean
|
|
20119
|
+
| undefined
|
|
20120
|
+
latest_desired_state_synced_with_provider_at?:
|
|
20121
|
+
| string
|
|
20122
|
+
| undefined
|
|
20123
|
+
visionline_metadata?:
|
|
20124
|
+
| {
|
|
20125
|
+
card_function_type: 'guest' | 'staff'
|
|
20126
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
20127
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
20128
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
20129
|
+
is_valid?: boolean | undefined
|
|
20130
|
+
auto_join?: boolean | undefined
|
|
20131
|
+
card_id?: string | undefined
|
|
20132
|
+
credential_id?: string | undefined
|
|
20133
|
+
}
|
|
20134
|
+
| undefined
|
|
20135
|
+
is_managed: false
|
|
20136
|
+
}
|
|
18716
20137
|
}
|
|
18717
20138
|
| {
|
|
18718
20139
|
/** The ID of the action attempt. */
|
|
@@ -19570,7 +20991,117 @@ export interface Routes {
|
|
|
19570
20991
|
status: 'success'
|
|
19571
20992
|
error: null
|
|
19572
20993
|
action_type: 'ENCODE_CARD'
|
|
19573
|
-
result:
|
|
20994
|
+
result:
|
|
20995
|
+
| {
|
|
20996
|
+
acs_credential_id: string
|
|
20997
|
+
acs_user_id?: string | undefined
|
|
20998
|
+
acs_credential_pool_id?: string | undefined
|
|
20999
|
+
acs_system_id: string
|
|
21000
|
+
parent_acs_credential_id?: string | undefined
|
|
21001
|
+
display_name: string
|
|
21002
|
+
code?: (string | undefined) | null
|
|
21003
|
+
card_number?: (string | undefined) | null
|
|
21004
|
+
is_issued?: boolean | undefined
|
|
21005
|
+
issued_at?: (string | undefined) | null
|
|
21006
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
21007
|
+
external_type?:
|
|
21008
|
+
| (
|
|
21009
|
+
| 'pti_card'
|
|
21010
|
+
| 'brivo_credential'
|
|
21011
|
+
| 'hid_credential'
|
|
21012
|
+
| 'visionline_card'
|
|
21013
|
+
| 'salto_ks_credential'
|
|
21014
|
+
)
|
|
21015
|
+
| undefined
|
|
21016
|
+
external_type_display_name?: string | undefined
|
|
21017
|
+
created_at: string
|
|
21018
|
+
workspace_id: string
|
|
21019
|
+
starts_at?: string | undefined
|
|
21020
|
+
ends_at?: string | undefined
|
|
21021
|
+
errors: Array<{
|
|
21022
|
+
error_code: string
|
|
21023
|
+
message: string
|
|
21024
|
+
}>
|
|
21025
|
+
warnings: Array<{
|
|
21026
|
+
warning_code: string
|
|
21027
|
+
message: string
|
|
21028
|
+
}>
|
|
21029
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
21030
|
+
is_latest_desired_state_synced_with_provider?:
|
|
21031
|
+
| boolean
|
|
21032
|
+
| undefined
|
|
21033
|
+
latest_desired_state_synced_with_provider_at?:
|
|
21034
|
+
| string
|
|
21035
|
+
| undefined
|
|
21036
|
+
visionline_metadata?:
|
|
21037
|
+
| {
|
|
21038
|
+
card_function_type: 'guest' | 'staff'
|
|
21039
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
21040
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
21041
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
21042
|
+
is_valid?: boolean | undefined
|
|
21043
|
+
auto_join?: boolean | undefined
|
|
21044
|
+
card_id?: string | undefined
|
|
21045
|
+
credential_id?: string | undefined
|
|
21046
|
+
}
|
|
21047
|
+
| undefined
|
|
21048
|
+
is_managed: true
|
|
21049
|
+
}
|
|
21050
|
+
| {
|
|
21051
|
+
acs_credential_id: string
|
|
21052
|
+
acs_user_id?: string | undefined
|
|
21053
|
+
acs_credential_pool_id?: string | undefined
|
|
21054
|
+
acs_system_id: string
|
|
21055
|
+
parent_acs_credential_id?: string | undefined
|
|
21056
|
+
display_name: string
|
|
21057
|
+
code?: (string | undefined) | null
|
|
21058
|
+
card_number?: (string | undefined) | null
|
|
21059
|
+
is_issued?: boolean | undefined
|
|
21060
|
+
issued_at?: (string | undefined) | null
|
|
21061
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
21062
|
+
external_type?:
|
|
21063
|
+
| (
|
|
21064
|
+
| 'pti_card'
|
|
21065
|
+
| 'brivo_credential'
|
|
21066
|
+
| 'hid_credential'
|
|
21067
|
+
| 'visionline_card'
|
|
21068
|
+
| 'salto_ks_credential'
|
|
21069
|
+
)
|
|
21070
|
+
| undefined
|
|
21071
|
+
external_type_display_name?: string | undefined
|
|
21072
|
+
created_at: string
|
|
21073
|
+
workspace_id: string
|
|
21074
|
+
starts_at?: string | undefined
|
|
21075
|
+
ends_at?: string | undefined
|
|
21076
|
+
errors: Array<{
|
|
21077
|
+
error_code: string
|
|
21078
|
+
message: string
|
|
21079
|
+
}>
|
|
21080
|
+
warnings: Array<{
|
|
21081
|
+
warning_code: string
|
|
21082
|
+
message: string
|
|
21083
|
+
}>
|
|
21084
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
21085
|
+
is_latest_desired_state_synced_with_provider?:
|
|
21086
|
+
| boolean
|
|
21087
|
+
| undefined
|
|
21088
|
+
latest_desired_state_synced_with_provider_at?:
|
|
21089
|
+
| string
|
|
21090
|
+
| undefined
|
|
21091
|
+
visionline_metadata?:
|
|
21092
|
+
| {
|
|
21093
|
+
card_function_type: 'guest' | 'staff'
|
|
21094
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
21095
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
21096
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
21097
|
+
is_valid?: boolean | undefined
|
|
21098
|
+
auto_join?: boolean | undefined
|
|
21099
|
+
card_id?: string | undefined
|
|
21100
|
+
credential_id?: string | undefined
|
|
21101
|
+
}
|
|
21102
|
+
| undefined
|
|
21103
|
+
is_managed: false
|
|
21104
|
+
}
|
|
19574
21105
|
}
|
|
19575
21106
|
| {
|
|
19576
21107
|
/** The ID of the action attempt. */
|
|
@@ -20224,7 +21755,117 @@ export interface Routes {
|
|
|
20224
21755
|
status: 'success'
|
|
20225
21756
|
error: null
|
|
20226
21757
|
action_type: 'ENCODE_CARD'
|
|
20227
|
-
result:
|
|
21758
|
+
result:
|
|
21759
|
+
| {
|
|
21760
|
+
acs_credential_id: string
|
|
21761
|
+
acs_user_id?: string | undefined
|
|
21762
|
+
acs_credential_pool_id?: string | undefined
|
|
21763
|
+
acs_system_id: string
|
|
21764
|
+
parent_acs_credential_id?: string | undefined
|
|
21765
|
+
display_name: string
|
|
21766
|
+
code?: (string | undefined) | null
|
|
21767
|
+
card_number?: (string | undefined) | null
|
|
21768
|
+
is_issued?: boolean | undefined
|
|
21769
|
+
issued_at?: (string | undefined) | null
|
|
21770
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
21771
|
+
external_type?:
|
|
21772
|
+
| (
|
|
21773
|
+
| 'pti_card'
|
|
21774
|
+
| 'brivo_credential'
|
|
21775
|
+
| 'hid_credential'
|
|
21776
|
+
| 'visionline_card'
|
|
21777
|
+
| 'salto_ks_credential'
|
|
21778
|
+
)
|
|
21779
|
+
| undefined
|
|
21780
|
+
external_type_display_name?: string | undefined
|
|
21781
|
+
created_at: string
|
|
21782
|
+
workspace_id: string
|
|
21783
|
+
starts_at?: string | undefined
|
|
21784
|
+
ends_at?: string | undefined
|
|
21785
|
+
errors: Array<{
|
|
21786
|
+
error_code: string
|
|
21787
|
+
message: string
|
|
21788
|
+
}>
|
|
21789
|
+
warnings: Array<{
|
|
21790
|
+
warning_code: string
|
|
21791
|
+
message: string
|
|
21792
|
+
}>
|
|
21793
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
21794
|
+
is_latest_desired_state_synced_with_provider?:
|
|
21795
|
+
| boolean
|
|
21796
|
+
| undefined
|
|
21797
|
+
latest_desired_state_synced_with_provider_at?:
|
|
21798
|
+
| string
|
|
21799
|
+
| undefined
|
|
21800
|
+
visionline_metadata?:
|
|
21801
|
+
| {
|
|
21802
|
+
card_function_type: 'guest' | 'staff'
|
|
21803
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
21804
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
21805
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
21806
|
+
is_valid?: boolean | undefined
|
|
21807
|
+
auto_join?: boolean | undefined
|
|
21808
|
+
card_id?: string | undefined
|
|
21809
|
+
credential_id?: string | undefined
|
|
21810
|
+
}
|
|
21811
|
+
| undefined
|
|
21812
|
+
is_managed: true
|
|
21813
|
+
}
|
|
21814
|
+
| {
|
|
21815
|
+
acs_credential_id: string
|
|
21816
|
+
acs_user_id?: string | undefined
|
|
21817
|
+
acs_credential_pool_id?: string | undefined
|
|
21818
|
+
acs_system_id: string
|
|
21819
|
+
parent_acs_credential_id?: string | undefined
|
|
21820
|
+
display_name: string
|
|
21821
|
+
code?: (string | undefined) | null
|
|
21822
|
+
card_number?: (string | undefined) | null
|
|
21823
|
+
is_issued?: boolean | undefined
|
|
21824
|
+
issued_at?: (string | undefined) | null
|
|
21825
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
21826
|
+
external_type?:
|
|
21827
|
+
| (
|
|
21828
|
+
| 'pti_card'
|
|
21829
|
+
| 'brivo_credential'
|
|
21830
|
+
| 'hid_credential'
|
|
21831
|
+
| 'visionline_card'
|
|
21832
|
+
| 'salto_ks_credential'
|
|
21833
|
+
)
|
|
21834
|
+
| undefined
|
|
21835
|
+
external_type_display_name?: string | undefined
|
|
21836
|
+
created_at: string
|
|
21837
|
+
workspace_id: string
|
|
21838
|
+
starts_at?: string | undefined
|
|
21839
|
+
ends_at?: string | undefined
|
|
21840
|
+
errors: Array<{
|
|
21841
|
+
error_code: string
|
|
21842
|
+
message: string
|
|
21843
|
+
}>
|
|
21844
|
+
warnings: Array<{
|
|
21845
|
+
warning_code: string
|
|
21846
|
+
message: string
|
|
21847
|
+
}>
|
|
21848
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
21849
|
+
is_latest_desired_state_synced_with_provider?:
|
|
21850
|
+
| boolean
|
|
21851
|
+
| undefined
|
|
21852
|
+
latest_desired_state_synced_with_provider_at?:
|
|
21853
|
+
| string
|
|
21854
|
+
| undefined
|
|
21855
|
+
visionline_metadata?:
|
|
21856
|
+
| {
|
|
21857
|
+
card_function_type: 'guest' | 'staff'
|
|
21858
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
21859
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
21860
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
21861
|
+
is_valid?: boolean | undefined
|
|
21862
|
+
auto_join?: boolean | undefined
|
|
21863
|
+
card_id?: string | undefined
|
|
21864
|
+
credential_id?: string | undefined
|
|
21865
|
+
}
|
|
21866
|
+
| undefined
|
|
21867
|
+
is_managed: false
|
|
21868
|
+
}
|
|
20228
21869
|
}
|
|
20229
21870
|
| {
|
|
20230
21871
|
/** The ID of the action attempt. */
|
|
@@ -21537,7 +23178,117 @@ export interface Routes {
|
|
|
21537
23178
|
status: 'success'
|
|
21538
23179
|
error: null
|
|
21539
23180
|
action_type: 'ENCODE_CARD'
|
|
21540
|
-
result:
|
|
23181
|
+
result:
|
|
23182
|
+
| {
|
|
23183
|
+
acs_credential_id: string
|
|
23184
|
+
acs_user_id?: string | undefined
|
|
23185
|
+
acs_credential_pool_id?: string | undefined
|
|
23186
|
+
acs_system_id: string
|
|
23187
|
+
parent_acs_credential_id?: string | undefined
|
|
23188
|
+
display_name: string
|
|
23189
|
+
code?: (string | undefined) | null
|
|
23190
|
+
card_number?: (string | undefined) | null
|
|
23191
|
+
is_issued?: boolean | undefined
|
|
23192
|
+
issued_at?: (string | undefined) | null
|
|
23193
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
23194
|
+
external_type?:
|
|
23195
|
+
| (
|
|
23196
|
+
| 'pti_card'
|
|
23197
|
+
| 'brivo_credential'
|
|
23198
|
+
| 'hid_credential'
|
|
23199
|
+
| 'visionline_card'
|
|
23200
|
+
| 'salto_ks_credential'
|
|
23201
|
+
)
|
|
23202
|
+
| undefined
|
|
23203
|
+
external_type_display_name?: string | undefined
|
|
23204
|
+
created_at: string
|
|
23205
|
+
workspace_id: string
|
|
23206
|
+
starts_at?: string | undefined
|
|
23207
|
+
ends_at?: string | undefined
|
|
23208
|
+
errors: Array<{
|
|
23209
|
+
error_code: string
|
|
23210
|
+
message: string
|
|
23211
|
+
}>
|
|
23212
|
+
warnings: Array<{
|
|
23213
|
+
warning_code: string
|
|
23214
|
+
message: string
|
|
23215
|
+
}>
|
|
23216
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
23217
|
+
is_latest_desired_state_synced_with_provider?:
|
|
23218
|
+
| boolean
|
|
23219
|
+
| undefined
|
|
23220
|
+
latest_desired_state_synced_with_provider_at?:
|
|
23221
|
+
| string
|
|
23222
|
+
| undefined
|
|
23223
|
+
visionline_metadata?:
|
|
23224
|
+
| {
|
|
23225
|
+
card_function_type: 'guest' | 'staff'
|
|
23226
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
23227
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
23228
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
23229
|
+
is_valid?: boolean | undefined
|
|
23230
|
+
auto_join?: boolean | undefined
|
|
23231
|
+
card_id?: string | undefined
|
|
23232
|
+
credential_id?: string | undefined
|
|
23233
|
+
}
|
|
23234
|
+
| undefined
|
|
23235
|
+
is_managed: true
|
|
23236
|
+
}
|
|
23237
|
+
| {
|
|
23238
|
+
acs_credential_id: string
|
|
23239
|
+
acs_user_id?: string | undefined
|
|
23240
|
+
acs_credential_pool_id?: string | undefined
|
|
23241
|
+
acs_system_id: string
|
|
23242
|
+
parent_acs_credential_id?: string | undefined
|
|
23243
|
+
display_name: string
|
|
23244
|
+
code?: (string | undefined) | null
|
|
23245
|
+
card_number?: (string | undefined) | null
|
|
23246
|
+
is_issued?: boolean | undefined
|
|
23247
|
+
issued_at?: (string | undefined) | null
|
|
23248
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
23249
|
+
external_type?:
|
|
23250
|
+
| (
|
|
23251
|
+
| 'pti_card'
|
|
23252
|
+
| 'brivo_credential'
|
|
23253
|
+
| 'hid_credential'
|
|
23254
|
+
| 'visionline_card'
|
|
23255
|
+
| 'salto_ks_credential'
|
|
23256
|
+
)
|
|
23257
|
+
| undefined
|
|
23258
|
+
external_type_display_name?: string | undefined
|
|
23259
|
+
created_at: string
|
|
23260
|
+
workspace_id: string
|
|
23261
|
+
starts_at?: string | undefined
|
|
23262
|
+
ends_at?: string | undefined
|
|
23263
|
+
errors: Array<{
|
|
23264
|
+
error_code: string
|
|
23265
|
+
message: string
|
|
23266
|
+
}>
|
|
23267
|
+
warnings: Array<{
|
|
23268
|
+
warning_code: string
|
|
23269
|
+
message: string
|
|
23270
|
+
}>
|
|
23271
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
23272
|
+
is_latest_desired_state_synced_with_provider?:
|
|
23273
|
+
| boolean
|
|
23274
|
+
| undefined
|
|
23275
|
+
latest_desired_state_synced_with_provider_at?:
|
|
23276
|
+
| string
|
|
23277
|
+
| undefined
|
|
23278
|
+
visionline_metadata?:
|
|
23279
|
+
| {
|
|
23280
|
+
card_function_type: 'guest' | 'staff'
|
|
23281
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
23282
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
23283
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
23284
|
+
is_valid?: boolean | undefined
|
|
23285
|
+
auto_join?: boolean | undefined
|
|
23286
|
+
card_id?: string | undefined
|
|
23287
|
+
credential_id?: string | undefined
|
|
23288
|
+
}
|
|
23289
|
+
| undefined
|
|
23290
|
+
is_managed: false
|
|
23291
|
+
}
|
|
21541
23292
|
}
|
|
21542
23293
|
| {
|
|
21543
23294
|
/** The ID of the action attempt. */
|
|
@@ -22193,7 +23944,117 @@ export interface Routes {
|
|
|
22193
23944
|
status: 'success'
|
|
22194
23945
|
error: null
|
|
22195
23946
|
action_type: 'ENCODE_CARD'
|
|
22196
|
-
result:
|
|
23947
|
+
result:
|
|
23948
|
+
| {
|
|
23949
|
+
acs_credential_id: string
|
|
23950
|
+
acs_user_id?: string | undefined
|
|
23951
|
+
acs_credential_pool_id?: string | undefined
|
|
23952
|
+
acs_system_id: string
|
|
23953
|
+
parent_acs_credential_id?: string | undefined
|
|
23954
|
+
display_name: string
|
|
23955
|
+
code?: (string | undefined) | null
|
|
23956
|
+
card_number?: (string | undefined) | null
|
|
23957
|
+
is_issued?: boolean | undefined
|
|
23958
|
+
issued_at?: (string | undefined) | null
|
|
23959
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
23960
|
+
external_type?:
|
|
23961
|
+
| (
|
|
23962
|
+
| 'pti_card'
|
|
23963
|
+
| 'brivo_credential'
|
|
23964
|
+
| 'hid_credential'
|
|
23965
|
+
| 'visionline_card'
|
|
23966
|
+
| 'salto_ks_credential'
|
|
23967
|
+
)
|
|
23968
|
+
| undefined
|
|
23969
|
+
external_type_display_name?: string | undefined
|
|
23970
|
+
created_at: string
|
|
23971
|
+
workspace_id: string
|
|
23972
|
+
starts_at?: string | undefined
|
|
23973
|
+
ends_at?: string | undefined
|
|
23974
|
+
errors: Array<{
|
|
23975
|
+
error_code: string
|
|
23976
|
+
message: string
|
|
23977
|
+
}>
|
|
23978
|
+
warnings: Array<{
|
|
23979
|
+
warning_code: string
|
|
23980
|
+
message: string
|
|
23981
|
+
}>
|
|
23982
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
23983
|
+
is_latest_desired_state_synced_with_provider?:
|
|
23984
|
+
| boolean
|
|
23985
|
+
| undefined
|
|
23986
|
+
latest_desired_state_synced_with_provider_at?:
|
|
23987
|
+
| string
|
|
23988
|
+
| undefined
|
|
23989
|
+
visionline_metadata?:
|
|
23990
|
+
| {
|
|
23991
|
+
card_function_type: 'guest' | 'staff'
|
|
23992
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
23993
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
23994
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
23995
|
+
is_valid?: boolean | undefined
|
|
23996
|
+
auto_join?: boolean | undefined
|
|
23997
|
+
card_id?: string | undefined
|
|
23998
|
+
credential_id?: string | undefined
|
|
23999
|
+
}
|
|
24000
|
+
| undefined
|
|
24001
|
+
is_managed: true
|
|
24002
|
+
}
|
|
24003
|
+
| {
|
|
24004
|
+
acs_credential_id: string
|
|
24005
|
+
acs_user_id?: string | undefined
|
|
24006
|
+
acs_credential_pool_id?: string | undefined
|
|
24007
|
+
acs_system_id: string
|
|
24008
|
+
parent_acs_credential_id?: string | undefined
|
|
24009
|
+
display_name: string
|
|
24010
|
+
code?: (string | undefined) | null
|
|
24011
|
+
card_number?: (string | undefined) | null
|
|
24012
|
+
is_issued?: boolean | undefined
|
|
24013
|
+
issued_at?: (string | undefined) | null
|
|
24014
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
24015
|
+
external_type?:
|
|
24016
|
+
| (
|
|
24017
|
+
| 'pti_card'
|
|
24018
|
+
| 'brivo_credential'
|
|
24019
|
+
| 'hid_credential'
|
|
24020
|
+
| 'visionline_card'
|
|
24021
|
+
| 'salto_ks_credential'
|
|
24022
|
+
)
|
|
24023
|
+
| undefined
|
|
24024
|
+
external_type_display_name?: string | undefined
|
|
24025
|
+
created_at: string
|
|
24026
|
+
workspace_id: string
|
|
24027
|
+
starts_at?: string | undefined
|
|
24028
|
+
ends_at?: string | undefined
|
|
24029
|
+
errors: Array<{
|
|
24030
|
+
error_code: string
|
|
24031
|
+
message: string
|
|
24032
|
+
}>
|
|
24033
|
+
warnings: Array<{
|
|
24034
|
+
warning_code: string
|
|
24035
|
+
message: string
|
|
24036
|
+
}>
|
|
24037
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
24038
|
+
is_latest_desired_state_synced_with_provider?:
|
|
24039
|
+
| boolean
|
|
24040
|
+
| undefined
|
|
24041
|
+
latest_desired_state_synced_with_provider_at?:
|
|
24042
|
+
| string
|
|
24043
|
+
| undefined
|
|
24044
|
+
visionline_metadata?:
|
|
24045
|
+
| {
|
|
24046
|
+
card_function_type: 'guest' | 'staff'
|
|
24047
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
24048
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
24049
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
24050
|
+
is_valid?: boolean | undefined
|
|
24051
|
+
auto_join?: boolean | undefined
|
|
24052
|
+
card_id?: string | undefined
|
|
24053
|
+
credential_id?: string | undefined
|
|
24054
|
+
}
|
|
24055
|
+
| undefined
|
|
24056
|
+
is_managed: false
|
|
24057
|
+
}
|
|
22197
24058
|
}
|
|
22198
24059
|
| {
|
|
22199
24060
|
/** The ID of the action attempt. */
|
|
@@ -24244,7 +26105,117 @@ export interface Routes {
|
|
|
24244
26105
|
status: 'success'
|
|
24245
26106
|
error: null
|
|
24246
26107
|
action_type: 'ENCODE_CARD'
|
|
24247
|
-
result:
|
|
26108
|
+
result:
|
|
26109
|
+
| {
|
|
26110
|
+
acs_credential_id: string
|
|
26111
|
+
acs_user_id?: string | undefined
|
|
26112
|
+
acs_credential_pool_id?: string | undefined
|
|
26113
|
+
acs_system_id: string
|
|
26114
|
+
parent_acs_credential_id?: string | undefined
|
|
26115
|
+
display_name: string
|
|
26116
|
+
code?: (string | undefined) | null
|
|
26117
|
+
card_number?: (string | undefined) | null
|
|
26118
|
+
is_issued?: boolean | undefined
|
|
26119
|
+
issued_at?: (string | undefined) | null
|
|
26120
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
26121
|
+
external_type?:
|
|
26122
|
+
| (
|
|
26123
|
+
| 'pti_card'
|
|
26124
|
+
| 'brivo_credential'
|
|
26125
|
+
| 'hid_credential'
|
|
26126
|
+
| 'visionline_card'
|
|
26127
|
+
| 'salto_ks_credential'
|
|
26128
|
+
)
|
|
26129
|
+
| undefined
|
|
26130
|
+
external_type_display_name?: string | undefined
|
|
26131
|
+
created_at: string
|
|
26132
|
+
workspace_id: string
|
|
26133
|
+
starts_at?: string | undefined
|
|
26134
|
+
ends_at?: string | undefined
|
|
26135
|
+
errors: Array<{
|
|
26136
|
+
error_code: string
|
|
26137
|
+
message: string
|
|
26138
|
+
}>
|
|
26139
|
+
warnings: Array<{
|
|
26140
|
+
warning_code: string
|
|
26141
|
+
message: string
|
|
26142
|
+
}>
|
|
26143
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
26144
|
+
is_latest_desired_state_synced_with_provider?:
|
|
26145
|
+
| boolean
|
|
26146
|
+
| undefined
|
|
26147
|
+
latest_desired_state_synced_with_provider_at?:
|
|
26148
|
+
| string
|
|
26149
|
+
| undefined
|
|
26150
|
+
visionline_metadata?:
|
|
26151
|
+
| {
|
|
26152
|
+
card_function_type: 'guest' | 'staff'
|
|
26153
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
26154
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
26155
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
26156
|
+
is_valid?: boolean | undefined
|
|
26157
|
+
auto_join?: boolean | undefined
|
|
26158
|
+
card_id?: string | undefined
|
|
26159
|
+
credential_id?: string | undefined
|
|
26160
|
+
}
|
|
26161
|
+
| undefined
|
|
26162
|
+
is_managed: true
|
|
26163
|
+
}
|
|
26164
|
+
| {
|
|
26165
|
+
acs_credential_id: string
|
|
26166
|
+
acs_user_id?: string | undefined
|
|
26167
|
+
acs_credential_pool_id?: string | undefined
|
|
26168
|
+
acs_system_id: string
|
|
26169
|
+
parent_acs_credential_id?: string | undefined
|
|
26170
|
+
display_name: string
|
|
26171
|
+
code?: (string | undefined) | null
|
|
26172
|
+
card_number?: (string | undefined) | null
|
|
26173
|
+
is_issued?: boolean | undefined
|
|
26174
|
+
issued_at?: (string | undefined) | null
|
|
26175
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
26176
|
+
external_type?:
|
|
26177
|
+
| (
|
|
26178
|
+
| 'pti_card'
|
|
26179
|
+
| 'brivo_credential'
|
|
26180
|
+
| 'hid_credential'
|
|
26181
|
+
| 'visionline_card'
|
|
26182
|
+
| 'salto_ks_credential'
|
|
26183
|
+
)
|
|
26184
|
+
| undefined
|
|
26185
|
+
external_type_display_name?: string | undefined
|
|
26186
|
+
created_at: string
|
|
26187
|
+
workspace_id: string
|
|
26188
|
+
starts_at?: string | undefined
|
|
26189
|
+
ends_at?: string | undefined
|
|
26190
|
+
errors: Array<{
|
|
26191
|
+
error_code: string
|
|
26192
|
+
message: string
|
|
26193
|
+
}>
|
|
26194
|
+
warnings: Array<{
|
|
26195
|
+
warning_code: string
|
|
26196
|
+
message: string
|
|
26197
|
+
}>
|
|
26198
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
26199
|
+
is_latest_desired_state_synced_with_provider?:
|
|
26200
|
+
| boolean
|
|
26201
|
+
| undefined
|
|
26202
|
+
latest_desired_state_synced_with_provider_at?:
|
|
26203
|
+
| string
|
|
26204
|
+
| undefined
|
|
26205
|
+
visionline_metadata?:
|
|
26206
|
+
| {
|
|
26207
|
+
card_function_type: 'guest' | 'staff'
|
|
26208
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
26209
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
26210
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
26211
|
+
is_valid?: boolean | undefined
|
|
26212
|
+
auto_join?: boolean | undefined
|
|
26213
|
+
card_id?: string | undefined
|
|
26214
|
+
credential_id?: string | undefined
|
|
26215
|
+
}
|
|
26216
|
+
| undefined
|
|
26217
|
+
is_managed: false
|
|
26218
|
+
}
|
|
24248
26219
|
}
|
|
24249
26220
|
| {
|
|
24250
26221
|
/** The ID of the action attempt. */
|
|
@@ -25017,7 +26988,117 @@ export interface Routes {
|
|
|
25017
26988
|
status: 'success'
|
|
25018
26989
|
error: null
|
|
25019
26990
|
action_type: 'ENCODE_CARD'
|
|
25020
|
-
result:
|
|
26991
|
+
result:
|
|
26992
|
+
| {
|
|
26993
|
+
acs_credential_id: string
|
|
26994
|
+
acs_user_id?: string | undefined
|
|
26995
|
+
acs_credential_pool_id?: string | undefined
|
|
26996
|
+
acs_system_id: string
|
|
26997
|
+
parent_acs_credential_id?: string | undefined
|
|
26998
|
+
display_name: string
|
|
26999
|
+
code?: (string | undefined) | null
|
|
27000
|
+
card_number?: (string | undefined) | null
|
|
27001
|
+
is_issued?: boolean | undefined
|
|
27002
|
+
issued_at?: (string | undefined) | null
|
|
27003
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
27004
|
+
external_type?:
|
|
27005
|
+
| (
|
|
27006
|
+
| 'pti_card'
|
|
27007
|
+
| 'brivo_credential'
|
|
27008
|
+
| 'hid_credential'
|
|
27009
|
+
| 'visionline_card'
|
|
27010
|
+
| 'salto_ks_credential'
|
|
27011
|
+
)
|
|
27012
|
+
| undefined
|
|
27013
|
+
external_type_display_name?: string | undefined
|
|
27014
|
+
created_at: string
|
|
27015
|
+
workspace_id: string
|
|
27016
|
+
starts_at?: string | undefined
|
|
27017
|
+
ends_at?: string | undefined
|
|
27018
|
+
errors: Array<{
|
|
27019
|
+
error_code: string
|
|
27020
|
+
message: string
|
|
27021
|
+
}>
|
|
27022
|
+
warnings: Array<{
|
|
27023
|
+
warning_code: string
|
|
27024
|
+
message: string
|
|
27025
|
+
}>
|
|
27026
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
27027
|
+
is_latest_desired_state_synced_with_provider?:
|
|
27028
|
+
| boolean
|
|
27029
|
+
| undefined
|
|
27030
|
+
latest_desired_state_synced_with_provider_at?:
|
|
27031
|
+
| string
|
|
27032
|
+
| undefined
|
|
27033
|
+
visionline_metadata?:
|
|
27034
|
+
| {
|
|
27035
|
+
card_function_type: 'guest' | 'staff'
|
|
27036
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
27037
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
27038
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
27039
|
+
is_valid?: boolean | undefined
|
|
27040
|
+
auto_join?: boolean | undefined
|
|
27041
|
+
card_id?: string | undefined
|
|
27042
|
+
credential_id?: string | undefined
|
|
27043
|
+
}
|
|
27044
|
+
| undefined
|
|
27045
|
+
is_managed: true
|
|
27046
|
+
}
|
|
27047
|
+
| {
|
|
27048
|
+
acs_credential_id: string
|
|
27049
|
+
acs_user_id?: string | undefined
|
|
27050
|
+
acs_credential_pool_id?: string | undefined
|
|
27051
|
+
acs_system_id: string
|
|
27052
|
+
parent_acs_credential_id?: string | undefined
|
|
27053
|
+
display_name: string
|
|
27054
|
+
code?: (string | undefined) | null
|
|
27055
|
+
card_number?: (string | undefined) | null
|
|
27056
|
+
is_issued?: boolean | undefined
|
|
27057
|
+
issued_at?: (string | undefined) | null
|
|
27058
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
27059
|
+
external_type?:
|
|
27060
|
+
| (
|
|
27061
|
+
| 'pti_card'
|
|
27062
|
+
| 'brivo_credential'
|
|
27063
|
+
| 'hid_credential'
|
|
27064
|
+
| 'visionline_card'
|
|
27065
|
+
| 'salto_ks_credential'
|
|
27066
|
+
)
|
|
27067
|
+
| undefined
|
|
27068
|
+
external_type_display_name?: string | undefined
|
|
27069
|
+
created_at: string
|
|
27070
|
+
workspace_id: string
|
|
27071
|
+
starts_at?: string | undefined
|
|
27072
|
+
ends_at?: string | undefined
|
|
27073
|
+
errors: Array<{
|
|
27074
|
+
error_code: string
|
|
27075
|
+
message: string
|
|
27076
|
+
}>
|
|
27077
|
+
warnings: Array<{
|
|
27078
|
+
warning_code: string
|
|
27079
|
+
message: string
|
|
27080
|
+
}>
|
|
27081
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
27082
|
+
is_latest_desired_state_synced_with_provider?:
|
|
27083
|
+
| boolean
|
|
27084
|
+
| undefined
|
|
27085
|
+
latest_desired_state_synced_with_provider_at?:
|
|
27086
|
+
| string
|
|
27087
|
+
| undefined
|
|
27088
|
+
visionline_metadata?:
|
|
27089
|
+
| {
|
|
27090
|
+
card_function_type: 'guest' | 'staff'
|
|
27091
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
27092
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
27093
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
27094
|
+
is_valid?: boolean | undefined
|
|
27095
|
+
auto_join?: boolean | undefined
|
|
27096
|
+
card_id?: string | undefined
|
|
27097
|
+
credential_id?: string | undefined
|
|
27098
|
+
}
|
|
27099
|
+
| undefined
|
|
27100
|
+
is_managed: false
|
|
27101
|
+
}
|
|
25021
27102
|
}
|
|
25022
27103
|
| {
|
|
25023
27104
|
/** The ID of the action attempt. */
|
|
@@ -27543,7 +29624,117 @@ export interface Routes {
|
|
|
27543
29624
|
status: 'success'
|
|
27544
29625
|
error: null
|
|
27545
29626
|
action_type: 'ENCODE_CARD'
|
|
27546
|
-
result:
|
|
29627
|
+
result:
|
|
29628
|
+
| {
|
|
29629
|
+
acs_credential_id: string
|
|
29630
|
+
acs_user_id?: string | undefined
|
|
29631
|
+
acs_credential_pool_id?: string | undefined
|
|
29632
|
+
acs_system_id: string
|
|
29633
|
+
parent_acs_credential_id?: string | undefined
|
|
29634
|
+
display_name: string
|
|
29635
|
+
code?: (string | undefined) | null
|
|
29636
|
+
card_number?: (string | undefined) | null
|
|
29637
|
+
is_issued?: boolean | undefined
|
|
29638
|
+
issued_at?: (string | undefined) | null
|
|
29639
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
29640
|
+
external_type?:
|
|
29641
|
+
| (
|
|
29642
|
+
| 'pti_card'
|
|
29643
|
+
| 'brivo_credential'
|
|
29644
|
+
| 'hid_credential'
|
|
29645
|
+
| 'visionline_card'
|
|
29646
|
+
| 'salto_ks_credential'
|
|
29647
|
+
)
|
|
29648
|
+
| undefined
|
|
29649
|
+
external_type_display_name?: string | undefined
|
|
29650
|
+
created_at: string
|
|
29651
|
+
workspace_id: string
|
|
29652
|
+
starts_at?: string | undefined
|
|
29653
|
+
ends_at?: string | undefined
|
|
29654
|
+
errors: Array<{
|
|
29655
|
+
error_code: string
|
|
29656
|
+
message: string
|
|
29657
|
+
}>
|
|
29658
|
+
warnings: Array<{
|
|
29659
|
+
warning_code: string
|
|
29660
|
+
message: string
|
|
29661
|
+
}>
|
|
29662
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
29663
|
+
is_latest_desired_state_synced_with_provider?:
|
|
29664
|
+
| boolean
|
|
29665
|
+
| undefined
|
|
29666
|
+
latest_desired_state_synced_with_provider_at?:
|
|
29667
|
+
| string
|
|
29668
|
+
| undefined
|
|
29669
|
+
visionline_metadata?:
|
|
29670
|
+
| {
|
|
29671
|
+
card_function_type: 'guest' | 'staff'
|
|
29672
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
29673
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
29674
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
29675
|
+
is_valid?: boolean | undefined
|
|
29676
|
+
auto_join?: boolean | undefined
|
|
29677
|
+
card_id?: string | undefined
|
|
29678
|
+
credential_id?: string | undefined
|
|
29679
|
+
}
|
|
29680
|
+
| undefined
|
|
29681
|
+
is_managed: true
|
|
29682
|
+
}
|
|
29683
|
+
| {
|
|
29684
|
+
acs_credential_id: string
|
|
29685
|
+
acs_user_id?: string | undefined
|
|
29686
|
+
acs_credential_pool_id?: string | undefined
|
|
29687
|
+
acs_system_id: string
|
|
29688
|
+
parent_acs_credential_id?: string | undefined
|
|
29689
|
+
display_name: string
|
|
29690
|
+
code?: (string | undefined) | null
|
|
29691
|
+
card_number?: (string | undefined) | null
|
|
29692
|
+
is_issued?: boolean | undefined
|
|
29693
|
+
issued_at?: (string | undefined) | null
|
|
29694
|
+
access_method: 'code' | 'card' | 'mobile_key'
|
|
29695
|
+
external_type?:
|
|
29696
|
+
| (
|
|
29697
|
+
| 'pti_card'
|
|
29698
|
+
| 'brivo_credential'
|
|
29699
|
+
| 'hid_credential'
|
|
29700
|
+
| 'visionline_card'
|
|
29701
|
+
| 'salto_ks_credential'
|
|
29702
|
+
)
|
|
29703
|
+
| undefined
|
|
29704
|
+
external_type_display_name?: string | undefined
|
|
29705
|
+
created_at: string
|
|
29706
|
+
workspace_id: string
|
|
29707
|
+
starts_at?: string | undefined
|
|
29708
|
+
ends_at?: string | undefined
|
|
29709
|
+
errors: Array<{
|
|
29710
|
+
error_code: string
|
|
29711
|
+
message: string
|
|
29712
|
+
}>
|
|
29713
|
+
warnings: Array<{
|
|
29714
|
+
warning_code: string
|
|
29715
|
+
message: string
|
|
29716
|
+
}>
|
|
29717
|
+
is_multi_phone_sync_credential?: boolean | undefined
|
|
29718
|
+
is_latest_desired_state_synced_with_provider?:
|
|
29719
|
+
| boolean
|
|
29720
|
+
| undefined
|
|
29721
|
+
latest_desired_state_synced_with_provider_at?:
|
|
29722
|
+
| string
|
|
29723
|
+
| undefined
|
|
29724
|
+
visionline_metadata?:
|
|
29725
|
+
| {
|
|
29726
|
+
card_function_type: 'guest' | 'staff'
|
|
29727
|
+
joiner_acs_credential_ids?: string[] | undefined
|
|
29728
|
+
guest_acs_entrance_ids?: string[] | undefined
|
|
29729
|
+
common_acs_entrance_ids?: string[] | undefined
|
|
29730
|
+
is_valid?: boolean | undefined
|
|
29731
|
+
auto_join?: boolean | undefined
|
|
29732
|
+
card_id?: string | undefined
|
|
29733
|
+
credential_id?: string | undefined
|
|
29734
|
+
}
|
|
29735
|
+
| undefined
|
|
29736
|
+
is_managed: false
|
|
29737
|
+
}
|
|
27547
29738
|
}
|
|
27548
29739
|
| {
|
|
27549
29740
|
/** The ID of the action attempt. */
|