@seamapi/types 1.233.0 → 1.235.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +678 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1514 -169
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +45 -2
- package/lib/seam/connect/models/acs/acs-access-group.js +7 -1
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +160 -2
- package/lib/seam/connect/models/acs/acs-credential.js +7 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +114 -1
- package/lib/seam/connect/models/acs/acs-user.js +7 -1
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/visionline.d.ts +9 -0
- package/lib/seam/connect/models/acs/metadata/visionline.js +3 -0
- package/lib/seam/connect/models/acs/metadata/visionline.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +867 -41
- package/lib/seam/connect/openapi.js +638 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +206 -1
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +11 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +14 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +14 -1
- package/src/lib/seam/connect/models/acs/metadata/visionline.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +638 -3
- package/src/lib/seam/connect/route-types.ts +246 -1
- package/src/lib/seam/connect/schemas.ts +3 -0
package/dist/connect.d.cts
CHANGED
|
@@ -308,7 +308,7 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
308
308
|
}>;
|
|
309
309
|
type UnmanagedAccessCode = z.infer<typeof unmanaged_access_code>;
|
|
310
310
|
|
|
311
|
-
declare const acs_access_group: z.ZodObject<{
|
|
311
|
+
declare const acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
312
312
|
acs_access_group_id: z.ZodString;
|
|
313
313
|
acs_system_id: z.ZodString;
|
|
314
314
|
workspace_id: z.ZodString;
|
|
@@ -319,11 +319,14 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
319
319
|
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_access_group", "brivo_group"]>;
|
|
320
320
|
external_type_display_name: z.ZodString;
|
|
321
321
|
created_at: z.ZodString;
|
|
322
|
-
},
|
|
322
|
+
}, {
|
|
323
|
+
is_managed: z.ZodLiteral<true>;
|
|
324
|
+
}>, "strip", z.ZodTypeAny, {
|
|
323
325
|
created_at: string;
|
|
324
326
|
name: string;
|
|
325
327
|
display_name: string;
|
|
326
328
|
workspace_id: string;
|
|
329
|
+
is_managed: true;
|
|
327
330
|
acs_access_group_id: string;
|
|
328
331
|
acs_system_id: string;
|
|
329
332
|
access_group_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
|
|
@@ -335,6 +338,45 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
335
338
|
name: string;
|
|
336
339
|
display_name: string;
|
|
337
340
|
workspace_id: string;
|
|
341
|
+
is_managed: true;
|
|
342
|
+
acs_access_group_id: string;
|
|
343
|
+
acs_system_id: string;
|
|
344
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
|
|
345
|
+
access_group_type_display_name: string;
|
|
346
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
|
|
347
|
+
external_type_display_name: string;
|
|
348
|
+
}>;
|
|
349
|
+
declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
350
|
+
acs_access_group_id: z.ZodString;
|
|
351
|
+
acs_system_id: z.ZodString;
|
|
352
|
+
workspace_id: z.ZodString;
|
|
353
|
+
name: z.ZodString;
|
|
354
|
+
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_access_group", "brivo_group"]>;
|
|
355
|
+
access_group_type_display_name: z.ZodString;
|
|
356
|
+
display_name: z.ZodString;
|
|
357
|
+
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_access_group", "brivo_group"]>;
|
|
358
|
+
external_type_display_name: z.ZodString;
|
|
359
|
+
created_at: z.ZodString;
|
|
360
|
+
}, {
|
|
361
|
+
is_managed: z.ZodLiteral<false>;
|
|
362
|
+
}>, "strip", z.ZodTypeAny, {
|
|
363
|
+
created_at: string;
|
|
364
|
+
name: string;
|
|
365
|
+
display_name: string;
|
|
366
|
+
workspace_id: string;
|
|
367
|
+
is_managed: false;
|
|
368
|
+
acs_access_group_id: string;
|
|
369
|
+
acs_system_id: string;
|
|
370
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
|
|
371
|
+
access_group_type_display_name: string;
|
|
372
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
|
|
373
|
+
external_type_display_name: string;
|
|
374
|
+
}, {
|
|
375
|
+
created_at: string;
|
|
376
|
+
name: string;
|
|
377
|
+
display_name: string;
|
|
378
|
+
workspace_id: string;
|
|
379
|
+
is_managed: false;
|
|
338
380
|
acs_access_group_id: string;
|
|
339
381
|
acs_system_id: string;
|
|
340
382
|
access_group_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
|
|
@@ -344,7 +386,7 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
344
386
|
}>;
|
|
345
387
|
type AcsAccessGroup = z.output<typeof acs_access_group>;
|
|
346
388
|
|
|
347
|
-
declare const acs_credential: z.ZodObject<{
|
|
389
|
+
declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
348
390
|
acs_credential_id: z.ZodString;
|
|
349
391
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
350
392
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
@@ -387,18 +429,167 @@ declare const acs_credential: z.ZodObject<{
|
|
|
387
429
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
388
430
|
guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
389
431
|
common_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
432
|
+
is_valid: z.ZodOptional<z.ZodBoolean>;
|
|
433
|
+
card_id: z.ZodOptional<z.ZodString>;
|
|
434
|
+
credential_id: z.ZodOptional<z.ZodString>;
|
|
390
435
|
}, "strip", z.ZodTypeAny, {
|
|
391
436
|
card_function_type: "guest" | "staff";
|
|
392
437
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
393
438
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
394
439
|
common_acs_entrance_ids?: string[] | undefined;
|
|
440
|
+
is_valid?: boolean | undefined;
|
|
441
|
+
card_id?: string | undefined;
|
|
442
|
+
credential_id?: string | undefined;
|
|
395
443
|
}, {
|
|
396
444
|
card_function_type: "guest" | "staff";
|
|
397
445
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
398
446
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
399
447
|
common_acs_entrance_ids?: string[] | undefined;
|
|
448
|
+
is_valid?: boolean | undefined;
|
|
449
|
+
card_id?: string | undefined;
|
|
450
|
+
credential_id?: string | undefined;
|
|
400
451
|
}>>;
|
|
401
|
-
},
|
|
452
|
+
}, {
|
|
453
|
+
is_managed: z.ZodLiteral<true>;
|
|
454
|
+
}>, "strip", z.ZodTypeAny, {
|
|
455
|
+
created_at: string;
|
|
456
|
+
errors: {
|
|
457
|
+
message: string;
|
|
458
|
+
error_code: string;
|
|
459
|
+
}[];
|
|
460
|
+
warnings: {
|
|
461
|
+
message: string;
|
|
462
|
+
warning_code: string;
|
|
463
|
+
}[];
|
|
464
|
+
display_name: string;
|
|
465
|
+
workspace_id: string;
|
|
466
|
+
is_managed: true;
|
|
467
|
+
acs_system_id: string;
|
|
468
|
+
acs_credential_id: string;
|
|
469
|
+
access_method: "code" | "card" | "mobile_key";
|
|
470
|
+
code?: string | null | undefined;
|
|
471
|
+
starts_at?: string | undefined;
|
|
472
|
+
ends_at?: string | undefined;
|
|
473
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
474
|
+
external_type_display_name?: string | undefined;
|
|
475
|
+
acs_user_id?: string | undefined;
|
|
476
|
+
acs_credential_pool_id?: string | undefined;
|
|
477
|
+
parent_acs_credential_id?: string | undefined;
|
|
478
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
479
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
480
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
481
|
+
visionline_metadata?: {
|
|
482
|
+
card_function_type: "guest" | "staff";
|
|
483
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
484
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
485
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
486
|
+
is_valid?: boolean | undefined;
|
|
487
|
+
card_id?: string | undefined;
|
|
488
|
+
credential_id?: string | undefined;
|
|
489
|
+
} | undefined;
|
|
490
|
+
}, {
|
|
491
|
+
created_at: string;
|
|
492
|
+
errors: {
|
|
493
|
+
message: string;
|
|
494
|
+
error_code: string;
|
|
495
|
+
}[];
|
|
496
|
+
warnings: {
|
|
497
|
+
message: string;
|
|
498
|
+
warning_code: string;
|
|
499
|
+
}[];
|
|
500
|
+
display_name: string;
|
|
501
|
+
workspace_id: string;
|
|
502
|
+
is_managed: true;
|
|
503
|
+
acs_system_id: string;
|
|
504
|
+
acs_credential_id: string;
|
|
505
|
+
access_method: "code" | "card" | "mobile_key";
|
|
506
|
+
code?: string | null | undefined;
|
|
507
|
+
starts_at?: string | undefined;
|
|
508
|
+
ends_at?: string | undefined;
|
|
509
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
510
|
+
external_type_display_name?: string | undefined;
|
|
511
|
+
acs_user_id?: string | undefined;
|
|
512
|
+
acs_credential_pool_id?: string | undefined;
|
|
513
|
+
parent_acs_credential_id?: string | undefined;
|
|
514
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
515
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
516
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
517
|
+
visionline_metadata?: {
|
|
518
|
+
card_function_type: "guest" | "staff";
|
|
519
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
520
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
521
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
522
|
+
is_valid?: boolean | undefined;
|
|
523
|
+
card_id?: string | undefined;
|
|
524
|
+
credential_id?: string | undefined;
|
|
525
|
+
} | undefined;
|
|
526
|
+
}>;
|
|
527
|
+
declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
528
|
+
acs_credential_id: z.ZodString;
|
|
529
|
+
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
530
|
+
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
531
|
+
acs_system_id: z.ZodString;
|
|
532
|
+
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
533
|
+
display_name: z.ZodString;
|
|
534
|
+
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
535
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
536
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
537
|
+
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
538
|
+
created_at: z.ZodString;
|
|
539
|
+
workspace_id: z.ZodString;
|
|
540
|
+
starts_at: z.ZodOptional<z.ZodString>;
|
|
541
|
+
ends_at: z.ZodOptional<z.ZodString>;
|
|
542
|
+
errors: z.ZodArray<z.ZodObject<{
|
|
543
|
+
error_code: z.ZodString;
|
|
544
|
+
message: z.ZodString;
|
|
545
|
+
}, "strip", z.ZodTypeAny, {
|
|
546
|
+
message: string;
|
|
547
|
+
error_code: string;
|
|
548
|
+
}, {
|
|
549
|
+
message: string;
|
|
550
|
+
error_code: string;
|
|
551
|
+
}>, "many">;
|
|
552
|
+
warnings: z.ZodArray<z.ZodObject<{
|
|
553
|
+
warning_code: z.ZodString;
|
|
554
|
+
message: z.ZodString;
|
|
555
|
+
}, "strip", z.ZodTypeAny, {
|
|
556
|
+
message: string;
|
|
557
|
+
warning_code: string;
|
|
558
|
+
}, {
|
|
559
|
+
message: string;
|
|
560
|
+
warning_code: string;
|
|
561
|
+
}>, "many">;
|
|
562
|
+
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
563
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
564
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString>;
|
|
565
|
+
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
566
|
+
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
567
|
+
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
568
|
+
guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
569
|
+
common_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
570
|
+
is_valid: z.ZodOptional<z.ZodBoolean>;
|
|
571
|
+
card_id: z.ZodOptional<z.ZodString>;
|
|
572
|
+
credential_id: z.ZodOptional<z.ZodString>;
|
|
573
|
+
}, "strip", z.ZodTypeAny, {
|
|
574
|
+
card_function_type: "guest" | "staff";
|
|
575
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
576
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
577
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
578
|
+
is_valid?: boolean | undefined;
|
|
579
|
+
card_id?: string | undefined;
|
|
580
|
+
credential_id?: string | undefined;
|
|
581
|
+
}, {
|
|
582
|
+
card_function_type: "guest" | "staff";
|
|
583
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
584
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
585
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
586
|
+
is_valid?: boolean | undefined;
|
|
587
|
+
card_id?: string | undefined;
|
|
588
|
+
credential_id?: string | undefined;
|
|
589
|
+
}>>;
|
|
590
|
+
}, {
|
|
591
|
+
is_managed: z.ZodLiteral<false>;
|
|
592
|
+
}>, "strip", z.ZodTypeAny, {
|
|
402
593
|
created_at: string;
|
|
403
594
|
errors: {
|
|
404
595
|
message: string;
|
|
@@ -410,6 +601,7 @@ declare const acs_credential: z.ZodObject<{
|
|
|
410
601
|
}[];
|
|
411
602
|
display_name: string;
|
|
412
603
|
workspace_id: string;
|
|
604
|
+
is_managed: false;
|
|
413
605
|
acs_system_id: string;
|
|
414
606
|
acs_credential_id: string;
|
|
415
607
|
access_method: "code" | "card" | "mobile_key";
|
|
@@ -429,6 +621,9 @@ declare const acs_credential: z.ZodObject<{
|
|
|
429
621
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
430
622
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
431
623
|
common_acs_entrance_ids?: string[] | undefined;
|
|
624
|
+
is_valid?: boolean | undefined;
|
|
625
|
+
card_id?: string | undefined;
|
|
626
|
+
credential_id?: string | undefined;
|
|
432
627
|
} | undefined;
|
|
433
628
|
}, {
|
|
434
629
|
created_at: string;
|
|
@@ -442,6 +637,7 @@ declare const acs_credential: z.ZodObject<{
|
|
|
442
637
|
}[];
|
|
443
638
|
display_name: string;
|
|
444
639
|
workspace_id: string;
|
|
640
|
+
is_managed: false;
|
|
445
641
|
acs_system_id: string;
|
|
446
642
|
acs_credential_id: string;
|
|
447
643
|
access_method: "code" | "card" | "mobile_key";
|
|
@@ -461,6 +657,9 @@ declare const acs_credential: z.ZodObject<{
|
|
|
461
657
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
462
658
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
463
659
|
common_acs_entrance_ids?: string[] | undefined;
|
|
660
|
+
is_valid?: boolean | undefined;
|
|
661
|
+
card_id?: string | undefined;
|
|
662
|
+
credential_id?: string | undefined;
|
|
464
663
|
} | undefined;
|
|
465
664
|
}>;
|
|
466
665
|
type AcsCredential = z.output<typeof acs_credential>;
|
|
@@ -738,7 +937,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
738
937
|
}>;
|
|
739
938
|
type AcsSystem = z.output<typeof acs_system>;
|
|
740
939
|
|
|
741
|
-
declare const acs_user: z.ZodObject<z.objectUtil.extendShape<{
|
|
940
|
+
declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
742
941
|
acs_user_id: z.ZodString;
|
|
743
942
|
acs_system_id: z.ZodString;
|
|
744
943
|
hid_acs_system_id: z.ZodOptional<z.ZodString>;
|
|
@@ -783,6 +982,8 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
783
982
|
email: z.ZodOptional<z.ZodString>;
|
|
784
983
|
email_address: z.ZodOptional<z.ZodString>;
|
|
785
984
|
phone_number: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
985
|
+
}>, {
|
|
986
|
+
is_managed: z.ZodLiteral<true>;
|
|
786
987
|
}>, "strip", z.ZodTypeAny, {
|
|
787
988
|
created_at: string;
|
|
788
989
|
warnings: {
|
|
@@ -792,6 +993,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
792
993
|
}[];
|
|
793
994
|
display_name: string;
|
|
794
995
|
workspace_id: string;
|
|
996
|
+
is_managed: true;
|
|
795
997
|
acs_system_id: string;
|
|
796
998
|
acs_user_id: string;
|
|
797
999
|
is_suspended: boolean;
|
|
@@ -821,6 +1023,115 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
821
1023
|
}[];
|
|
822
1024
|
display_name: string;
|
|
823
1025
|
workspace_id: string;
|
|
1026
|
+
is_managed: true;
|
|
1027
|
+
acs_system_id: string;
|
|
1028
|
+
acs_user_id: string;
|
|
1029
|
+
is_suspended: boolean;
|
|
1030
|
+
email?: string | undefined;
|
|
1031
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
1032
|
+
external_type_display_name?: string | undefined;
|
|
1033
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1034
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1035
|
+
user_identity_id?: string | undefined;
|
|
1036
|
+
full_name?: string | undefined;
|
|
1037
|
+
email_address?: string | undefined;
|
|
1038
|
+
phone_number?: string | undefined;
|
|
1039
|
+
hid_acs_system_id?: string | undefined;
|
|
1040
|
+
access_schedule?: {
|
|
1041
|
+
starts_at: string;
|
|
1042
|
+
ends_at: string;
|
|
1043
|
+
} | undefined;
|
|
1044
|
+
user_identity_full_name?: string | null | undefined;
|
|
1045
|
+
user_identity_email_address?: string | null | undefined;
|
|
1046
|
+
user_identity_phone_number?: string | null | undefined;
|
|
1047
|
+
}>;
|
|
1048
|
+
declare const acs_unmanaged_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1049
|
+
acs_user_id: z.ZodString;
|
|
1050
|
+
acs_system_id: z.ZodString;
|
|
1051
|
+
hid_acs_system_id: z.ZodOptional<z.ZodString>;
|
|
1052
|
+
workspace_id: z.ZodString;
|
|
1053
|
+
created_at: z.ZodString;
|
|
1054
|
+
display_name: z.ZodString;
|
|
1055
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user"]>>;
|
|
1056
|
+
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1057
|
+
is_suspended: z.ZodBoolean;
|
|
1058
|
+
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
1059
|
+
starts_at: z.ZodString;
|
|
1060
|
+
ends_at: z.ZodString;
|
|
1061
|
+
}, "strip", z.ZodTypeAny, {
|
|
1062
|
+
starts_at: string;
|
|
1063
|
+
ends_at: string;
|
|
1064
|
+
}, {
|
|
1065
|
+
starts_at: string;
|
|
1066
|
+
ends_at: string;
|
|
1067
|
+
}>>;
|
|
1068
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
1069
|
+
user_identity_full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1070
|
+
user_identity_email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1071
|
+
user_identity_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1072
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString>;
|
|
1073
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
1074
|
+
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
1075
|
+
created_at: z.ZodString;
|
|
1076
|
+
message: z.ZodString;
|
|
1077
|
+
}, {
|
|
1078
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
1079
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1080
|
+
message: string;
|
|
1081
|
+
warning_code: "being_deleted";
|
|
1082
|
+
created_at: string;
|
|
1083
|
+
}, {
|
|
1084
|
+
message: string;
|
|
1085
|
+
warning_code: "being_deleted";
|
|
1086
|
+
created_at: string;
|
|
1087
|
+
}>, "many">;
|
|
1088
|
+
}, {
|
|
1089
|
+
full_name: z.ZodOptional<z.ZodString>;
|
|
1090
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1091
|
+
email_address: z.ZodOptional<z.ZodString>;
|
|
1092
|
+
phone_number: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1093
|
+
}>, {
|
|
1094
|
+
is_managed: z.ZodLiteral<false>;
|
|
1095
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1096
|
+
created_at: string;
|
|
1097
|
+
warnings: {
|
|
1098
|
+
message: string;
|
|
1099
|
+
warning_code: "being_deleted";
|
|
1100
|
+
created_at: string;
|
|
1101
|
+
}[];
|
|
1102
|
+
display_name: string;
|
|
1103
|
+
workspace_id: string;
|
|
1104
|
+
is_managed: false;
|
|
1105
|
+
acs_system_id: string;
|
|
1106
|
+
acs_user_id: string;
|
|
1107
|
+
is_suspended: boolean;
|
|
1108
|
+
email?: string | undefined;
|
|
1109
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
1110
|
+
external_type_display_name?: string | undefined;
|
|
1111
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1112
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1113
|
+
user_identity_id?: string | undefined;
|
|
1114
|
+
full_name?: string | undefined;
|
|
1115
|
+
email_address?: string | undefined;
|
|
1116
|
+
phone_number?: string | undefined;
|
|
1117
|
+
hid_acs_system_id?: string | undefined;
|
|
1118
|
+
access_schedule?: {
|
|
1119
|
+
starts_at: string;
|
|
1120
|
+
ends_at: string;
|
|
1121
|
+
} | undefined;
|
|
1122
|
+
user_identity_full_name?: string | null | undefined;
|
|
1123
|
+
user_identity_email_address?: string | null | undefined;
|
|
1124
|
+
user_identity_phone_number?: string | null | undefined;
|
|
1125
|
+
}, {
|
|
1126
|
+
created_at: string;
|
|
1127
|
+
warnings: {
|
|
1128
|
+
message: string;
|
|
1129
|
+
warning_code: "being_deleted";
|
|
1130
|
+
created_at: string;
|
|
1131
|
+
}[];
|
|
1132
|
+
display_name: string;
|
|
1133
|
+
workspace_id: string;
|
|
1134
|
+
is_managed: false;
|
|
824
1135
|
acs_system_id: string;
|
|
825
1136
|
acs_user_id: string;
|
|
826
1137
|
is_suspended: boolean;
|
|
@@ -8167,6 +8478,7 @@ declare const schemas_acs_access_group: typeof acs_access_group;
|
|
|
8167
8478
|
declare const schemas_acs_credential: typeof acs_credential;
|
|
8168
8479
|
declare const schemas_acs_entrance: typeof acs_entrance;
|
|
8169
8480
|
declare const schemas_acs_system: typeof acs_system;
|
|
8481
|
+
declare const schemas_acs_unmanaged_user: typeof acs_unmanaged_user;
|
|
8170
8482
|
declare const schemas_acs_user: typeof acs_user;
|
|
8171
8483
|
declare const schemas_action_attempt: typeof action_attempt;
|
|
8172
8484
|
declare const schemas_client_session: typeof client_session;
|
|
@@ -8179,12 +8491,14 @@ declare const schemas_device_provider: typeof device_provider;
|
|
|
8179
8491
|
declare const schemas_noise_threshold: typeof noise_threshold;
|
|
8180
8492
|
declare const schemas_seam_event: typeof seam_event;
|
|
8181
8493
|
declare const schemas_unmanaged_access_code: typeof unmanaged_access_code;
|
|
8494
|
+
declare const schemas_unmanaged_acs_access_group: typeof unmanaged_acs_access_group;
|
|
8495
|
+
declare const schemas_unmanaged_acs_credential: typeof unmanaged_acs_credential;
|
|
8182
8496
|
declare const schemas_unmanaged_device: typeof unmanaged_device;
|
|
8183
8497
|
declare const schemas_user_identity: typeof user_identity;
|
|
8184
8498
|
declare const schemas_webhook: typeof webhook;
|
|
8185
8499
|
declare const schemas_workspace: typeof workspace;
|
|
8186
8500
|
declare namespace schemas {
|
|
8187
|
-
export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_client_session as client_session, schemas_climate_setting_schedule as climate_setting_schedule, schemas_connect_webview as connect_webview, schemas_connected_account as connected_account, schemas_custom_metadata as custom_metadata, schemas_device as device, schemas_device_provider as device_provider, schemas_noise_threshold as noise_threshold, schemas_seam_event as seam_event, schemas_unmanaged_access_code as unmanaged_access_code, schemas_unmanaged_device as unmanaged_device, schemas_user_identity as user_identity, schemas_webhook as webhook, schemas_workspace as workspace };
|
|
8501
|
+
export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_unmanaged_user as acs_unmanaged_user, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_client_session as client_session, schemas_climate_setting_schedule as climate_setting_schedule, schemas_connect_webview as connect_webview, schemas_connected_account as connected_account, schemas_custom_metadata as custom_metadata, schemas_device as device, schemas_device_provider as device_provider, schemas_noise_threshold as noise_threshold, schemas_seam_event as seam_event, schemas_unmanaged_access_code as unmanaged_access_code, schemas_unmanaged_acs_access_group as unmanaged_acs_access_group, schemas_unmanaged_acs_credential as unmanaged_acs_credential, schemas_unmanaged_device as unmanaged_device, schemas_user_identity as user_identity, schemas_webhook as webhook, schemas_workspace as workspace };
|
|
8188
8502
|
}
|
|
8189
8503
|
|
|
8190
8504
|
declare const _default: {
|
|
@@ -8396,6 +8710,10 @@ declare const _default: {
|
|
|
8396
8710
|
external_type_display_name: {
|
|
8397
8711
|
type: string;
|
|
8398
8712
|
};
|
|
8713
|
+
is_managed: {
|
|
8714
|
+
enum: boolean[];
|
|
8715
|
+
type: string;
|
|
8716
|
+
};
|
|
8399
8717
|
name: {
|
|
8400
8718
|
type: string;
|
|
8401
8719
|
};
|
|
@@ -8469,6 +8787,10 @@ declare const _default: {
|
|
|
8469
8787
|
is_latest_desired_state_synced_with_provider: {
|
|
8470
8788
|
type: string;
|
|
8471
8789
|
};
|
|
8790
|
+
is_managed: {
|
|
8791
|
+
enum: boolean[];
|
|
8792
|
+
type: string;
|
|
8793
|
+
};
|
|
8472
8794
|
is_multi_phone_sync_credential: {
|
|
8473
8795
|
type: string;
|
|
8474
8796
|
};
|
|
@@ -8489,6 +8811,9 @@ declare const _default: {
|
|
|
8489
8811
|
enum: string[];
|
|
8490
8812
|
type: string;
|
|
8491
8813
|
};
|
|
8814
|
+
card_id: {
|
|
8815
|
+
type: string;
|
|
8816
|
+
};
|
|
8492
8817
|
common_acs_entrance_ids: {
|
|
8493
8818
|
items: {
|
|
8494
8819
|
format: string;
|
|
@@ -8496,6 +8821,9 @@ declare const _default: {
|
|
|
8496
8821
|
};
|
|
8497
8822
|
type: string;
|
|
8498
8823
|
};
|
|
8824
|
+
credential_id: {
|
|
8825
|
+
type: string;
|
|
8826
|
+
};
|
|
8499
8827
|
guest_acs_entrance_ids: {
|
|
8500
8828
|
items: {
|
|
8501
8829
|
format: string;
|
|
@@ -8503,6 +8831,9 @@ declare const _default: {
|
|
|
8503
8831
|
};
|
|
8504
8832
|
type: string;
|
|
8505
8833
|
};
|
|
8834
|
+
is_valid: {
|
|
8835
|
+
type: string;
|
|
8836
|
+
};
|
|
8506
8837
|
joiner_acs_credential_ids: {
|
|
8507
8838
|
items: {
|
|
8508
8839
|
format: string;
|
|
@@ -8903,6 +9234,10 @@ declare const _default: {
|
|
|
8903
9234
|
is_latest_desired_state_synced_with_provider: {
|
|
8904
9235
|
type: string;
|
|
8905
9236
|
};
|
|
9237
|
+
is_managed: {
|
|
9238
|
+
enum: boolean[];
|
|
9239
|
+
type: string;
|
|
9240
|
+
};
|
|
8906
9241
|
is_suspended: {
|
|
8907
9242
|
type: string;
|
|
8908
9243
|
};
|
|
@@ -13987,7 +14322,7 @@ declare const _default: {
|
|
|
13987
14322
|
'x-fern-sdk-method-name': string;
|
|
13988
14323
|
};
|
|
13989
14324
|
};
|
|
13990
|
-
'/acs/
|
|
14325
|
+
'/acs/access_groups/unmanaged/get': {
|
|
13991
14326
|
post: {
|
|
13992
14327
|
operationId: string;
|
|
13993
14328
|
requestBody: {
|
|
@@ -13995,7 +14330,7 @@ declare const _default: {
|
|
|
13995
14330
|
'application/json': {
|
|
13996
14331
|
schema: {
|
|
13997
14332
|
properties: {
|
|
13998
|
-
|
|
14333
|
+
acs_access_group_id: {
|
|
13999
14334
|
format: string;
|
|
14000
14335
|
type: string;
|
|
14001
14336
|
};
|
|
@@ -14012,10 +14347,54 @@ declare const _default: {
|
|
|
14012
14347
|
'application/json': {
|
|
14013
14348
|
schema: {
|
|
14014
14349
|
properties: {
|
|
14015
|
-
|
|
14016
|
-
|
|
14017
|
-
|
|
14350
|
+
acs_access_group: {
|
|
14351
|
+
properties: {
|
|
14352
|
+
access_group_type: {
|
|
14353
|
+
deprecated: boolean;
|
|
14354
|
+
enum: string[];
|
|
14355
|
+
type: string;
|
|
14356
|
+
'x-deprecated': string;
|
|
14357
|
+
};
|
|
14358
|
+
access_group_type_display_name: {
|
|
14359
|
+
deprecated: boolean;
|
|
14360
|
+
type: string;
|
|
14361
|
+
'x-deprecated': string;
|
|
14362
|
+
};
|
|
14363
|
+
acs_access_group_id: {
|
|
14364
|
+
format: string;
|
|
14365
|
+
type: string;
|
|
14366
|
+
};
|
|
14367
|
+
acs_system_id: {
|
|
14368
|
+
format: string;
|
|
14369
|
+
type: string;
|
|
14370
|
+
};
|
|
14371
|
+
created_at: {
|
|
14372
|
+
format: string;
|
|
14373
|
+
type: string;
|
|
14374
|
+
};
|
|
14375
|
+
display_name: {
|
|
14376
|
+
type: string;
|
|
14377
|
+
};
|
|
14378
|
+
external_type: {
|
|
14379
|
+
enum: string[];
|
|
14380
|
+
type: string;
|
|
14381
|
+
};
|
|
14382
|
+
external_type_display_name: {
|
|
14383
|
+
type: string;
|
|
14384
|
+
};
|
|
14385
|
+
is_managed: {
|
|
14386
|
+
enum: boolean[];
|
|
14387
|
+
type: string;
|
|
14388
|
+
};
|
|
14389
|
+
name: {
|
|
14390
|
+
type: string;
|
|
14391
|
+
};
|
|
14392
|
+
workspace_id: {
|
|
14393
|
+
format: string;
|
|
14394
|
+
type: string;
|
|
14395
|
+
};
|
|
14018
14396
|
};
|
|
14397
|
+
required: string[];
|
|
14019
14398
|
type: string;
|
|
14020
14399
|
};
|
|
14021
14400
|
ok: {
|
|
@@ -14056,7 +14435,7 @@ declare const _default: {
|
|
|
14056
14435
|
'x-fern-sdk-return-value': string;
|
|
14057
14436
|
};
|
|
14058
14437
|
};
|
|
14059
|
-
'/acs/
|
|
14438
|
+
'/acs/access_groups/unmanaged/list': {
|
|
14060
14439
|
post: {
|
|
14061
14440
|
operationId: string;
|
|
14062
14441
|
requestBody: {
|
|
@@ -14064,27 +14443,15 @@ declare const _default: {
|
|
|
14064
14443
|
'application/json': {
|
|
14065
14444
|
schema: {
|
|
14066
14445
|
properties: {
|
|
14067
|
-
|
|
14068
|
-
format: string;
|
|
14069
|
-
type: string;
|
|
14070
|
-
};
|
|
14071
|
-
create_credential_manager_user: {
|
|
14072
|
-
type: string;
|
|
14073
|
-
};
|
|
14074
|
-
credential_manager_acs_system_id: {
|
|
14075
|
-
format: string;
|
|
14076
|
-
type: string;
|
|
14077
|
-
};
|
|
14078
|
-
credential_manager_acs_user_id: {
|
|
14446
|
+
acs_system_id: {
|
|
14079
14447
|
format: string;
|
|
14080
14448
|
type: string;
|
|
14081
14449
|
};
|
|
14082
|
-
|
|
14450
|
+
acs_user_id: {
|
|
14083
14451
|
format: string;
|
|
14084
14452
|
type: string;
|
|
14085
14453
|
};
|
|
14086
14454
|
};
|
|
14087
|
-
required: string[];
|
|
14088
14455
|
type: string;
|
|
14089
14456
|
};
|
|
14090
14457
|
};
|
|
@@ -14096,8 +14463,58 @@ declare const _default: {
|
|
|
14096
14463
|
'application/json': {
|
|
14097
14464
|
schema: {
|
|
14098
14465
|
properties: {
|
|
14099
|
-
|
|
14100
|
-
|
|
14466
|
+
acs_access_groups: {
|
|
14467
|
+
items: {
|
|
14468
|
+
properties: {
|
|
14469
|
+
access_group_type: {
|
|
14470
|
+
deprecated: boolean;
|
|
14471
|
+
enum: string[];
|
|
14472
|
+
type: string;
|
|
14473
|
+
'x-deprecated': string;
|
|
14474
|
+
};
|
|
14475
|
+
access_group_type_display_name: {
|
|
14476
|
+
deprecated: boolean;
|
|
14477
|
+
type: string;
|
|
14478
|
+
'x-deprecated': string;
|
|
14479
|
+
};
|
|
14480
|
+
acs_access_group_id: {
|
|
14481
|
+
format: string;
|
|
14482
|
+
type: string;
|
|
14483
|
+
};
|
|
14484
|
+
acs_system_id: {
|
|
14485
|
+
format: string;
|
|
14486
|
+
type: string;
|
|
14487
|
+
};
|
|
14488
|
+
created_at: {
|
|
14489
|
+
format: string;
|
|
14490
|
+
type: string;
|
|
14491
|
+
};
|
|
14492
|
+
display_name: {
|
|
14493
|
+
type: string;
|
|
14494
|
+
};
|
|
14495
|
+
external_type: {
|
|
14496
|
+
enum: string[];
|
|
14497
|
+
type: string;
|
|
14498
|
+
};
|
|
14499
|
+
external_type_display_name: {
|
|
14500
|
+
type: string;
|
|
14501
|
+
};
|
|
14502
|
+
is_managed: {
|
|
14503
|
+
enum: boolean[];
|
|
14504
|
+
type: string;
|
|
14505
|
+
};
|
|
14506
|
+
name: {
|
|
14507
|
+
type: string;
|
|
14508
|
+
};
|
|
14509
|
+
workspace_id: {
|
|
14510
|
+
format: string;
|
|
14511
|
+
type: string;
|
|
14512
|
+
};
|
|
14513
|
+
};
|
|
14514
|
+
required: string[];
|
|
14515
|
+
type: string;
|
|
14516
|
+
};
|
|
14517
|
+
type: string;
|
|
14101
14518
|
};
|
|
14102
14519
|
ok: {
|
|
14103
14520
|
type: string;
|
|
@@ -14137,73 +14554,7 @@ declare const _default: {
|
|
|
14137
14554
|
'x-fern-sdk-return-value': string;
|
|
14138
14555
|
};
|
|
14139
14556
|
};
|
|
14140
|
-
'/acs/
|
|
14141
|
-
patch: {
|
|
14142
|
-
operationId: string;
|
|
14143
|
-
requestBody: {
|
|
14144
|
-
content: {
|
|
14145
|
-
'application/json': {
|
|
14146
|
-
schema: {
|
|
14147
|
-
properties: {
|
|
14148
|
-
acs_credential_id: {
|
|
14149
|
-
format: string;
|
|
14150
|
-
type: string;
|
|
14151
|
-
};
|
|
14152
|
-
acs_user_id: {
|
|
14153
|
-
format: string;
|
|
14154
|
-
type: string;
|
|
14155
|
-
};
|
|
14156
|
-
};
|
|
14157
|
-
required: string[];
|
|
14158
|
-
type: string;
|
|
14159
|
-
};
|
|
14160
|
-
};
|
|
14161
|
-
};
|
|
14162
|
-
};
|
|
14163
|
-
responses: {
|
|
14164
|
-
200: {
|
|
14165
|
-
content: {
|
|
14166
|
-
'application/json': {
|
|
14167
|
-
schema: {
|
|
14168
|
-
properties: {
|
|
14169
|
-
acs_credential: {
|
|
14170
|
-
$ref: string;
|
|
14171
|
-
};
|
|
14172
|
-
ok: {
|
|
14173
|
-
type: string;
|
|
14174
|
-
};
|
|
14175
|
-
};
|
|
14176
|
-
required: string[];
|
|
14177
|
-
type: string;
|
|
14178
|
-
};
|
|
14179
|
-
};
|
|
14180
|
-
};
|
|
14181
|
-
description: string;
|
|
14182
|
-
};
|
|
14183
|
-
400: {
|
|
14184
|
-
description: string;
|
|
14185
|
-
};
|
|
14186
|
-
401: {
|
|
14187
|
-
description: string;
|
|
14188
|
-
};
|
|
14189
|
-
};
|
|
14190
|
-
security: ({
|
|
14191
|
-
pat_with_workspace: never[];
|
|
14192
|
-
console_session?: never;
|
|
14193
|
-
api_key?: never;
|
|
14194
|
-
} | {
|
|
14195
|
-
console_session: never[];
|
|
14196
|
-
pat_with_workspace?: never;
|
|
14197
|
-
api_key?: never;
|
|
14198
|
-
} | {
|
|
14199
|
-
api_key: never[];
|
|
14200
|
-
pat_with_workspace?: never;
|
|
14201
|
-
console_session?: never;
|
|
14202
|
-
})[];
|
|
14203
|
-
summary: string;
|
|
14204
|
-
tags: string[];
|
|
14205
|
-
'x-fern-ignore': boolean;
|
|
14206
|
-
};
|
|
14557
|
+
'/acs/credential_pools/list': {
|
|
14207
14558
|
post: {
|
|
14208
14559
|
operationId: string;
|
|
14209
14560
|
requestBody: {
|
|
@@ -14211,11 +14562,7 @@ declare const _default: {
|
|
|
14211
14562
|
'application/json': {
|
|
14212
14563
|
schema: {
|
|
14213
14564
|
properties: {
|
|
14214
|
-
|
|
14215
|
-
format: string;
|
|
14216
|
-
type: string;
|
|
14217
|
-
};
|
|
14218
|
-
acs_user_id: {
|
|
14565
|
+
acs_system_id: {
|
|
14219
14566
|
format: string;
|
|
14220
14567
|
type: string;
|
|
14221
14568
|
};
|
|
@@ -14232,8 +14579,11 @@ declare const _default: {
|
|
|
14232
14579
|
'application/json': {
|
|
14233
14580
|
schema: {
|
|
14234
14581
|
properties: {
|
|
14235
|
-
|
|
14236
|
-
|
|
14582
|
+
acs_credential_pools: {
|
|
14583
|
+
items: {
|
|
14584
|
+
$ref: string;
|
|
14585
|
+
};
|
|
14586
|
+
type: string;
|
|
14237
14587
|
};
|
|
14238
14588
|
ok: {
|
|
14239
14589
|
type: string;
|
|
@@ -14270,9 +14620,10 @@ declare const _default: {
|
|
|
14270
14620
|
tags: string[];
|
|
14271
14621
|
'x-fern-sdk-group-name': string[];
|
|
14272
14622
|
'x-fern-sdk-method-name': string;
|
|
14623
|
+
'x-fern-sdk-return-value': string;
|
|
14273
14624
|
};
|
|
14274
14625
|
};
|
|
14275
|
-
'/acs/
|
|
14626
|
+
'/acs/credential_provisioning_automations/launch': {
|
|
14276
14627
|
post: {
|
|
14277
14628
|
operationId: string;
|
|
14278
14629
|
requestBody: {
|
|
@@ -14280,75 +14631,25 @@ declare const _default: {
|
|
|
14280
14631
|
'application/json': {
|
|
14281
14632
|
schema: {
|
|
14282
14633
|
properties: {
|
|
14283
|
-
|
|
14284
|
-
enum: string[];
|
|
14285
|
-
type: string;
|
|
14286
|
-
};
|
|
14287
|
-
acs_user_id: {
|
|
14634
|
+
acs_credential_pool_id: {
|
|
14288
14635
|
format: string;
|
|
14289
14636
|
type: string;
|
|
14290
14637
|
};
|
|
14291
|
-
|
|
14292
|
-
default: never[];
|
|
14293
|
-
items: {
|
|
14294
|
-
format: string;
|
|
14295
|
-
type: string;
|
|
14296
|
-
};
|
|
14297
|
-
type: string;
|
|
14298
|
-
};
|
|
14299
|
-
code: {
|
|
14300
|
-
pattern: string;
|
|
14638
|
+
create_credential_manager_user: {
|
|
14301
14639
|
type: string;
|
|
14302
14640
|
};
|
|
14303
14641
|
credential_manager_acs_system_id: {
|
|
14304
14642
|
format: string;
|
|
14305
14643
|
type: string;
|
|
14306
14644
|
};
|
|
14307
|
-
|
|
14645
|
+
credential_manager_acs_user_id: {
|
|
14308
14646
|
format: string;
|
|
14309
14647
|
type: string;
|
|
14310
14648
|
};
|
|
14311
|
-
|
|
14312
|
-
default: boolean;
|
|
14313
|
-
type: string;
|
|
14314
|
-
};
|
|
14315
|
-
starts_at: {
|
|
14649
|
+
user_identity_id: {
|
|
14316
14650
|
format: string;
|
|
14317
14651
|
type: string;
|
|
14318
14652
|
};
|
|
14319
|
-
visionline_metadata: {
|
|
14320
|
-
properties: {
|
|
14321
|
-
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
14322
|
-
format: string;
|
|
14323
|
-
type: string;
|
|
14324
|
-
};
|
|
14325
|
-
card_format: {
|
|
14326
|
-
enum: string[];
|
|
14327
|
-
type: string;
|
|
14328
|
-
};
|
|
14329
|
-
card_function_type: {
|
|
14330
|
-
default: string;
|
|
14331
|
-
enum: string[];
|
|
14332
|
-
type: string;
|
|
14333
|
-
};
|
|
14334
|
-
is_override_key: {
|
|
14335
|
-
deprecated: boolean;
|
|
14336
|
-
type: string;
|
|
14337
|
-
'x-deprecated': string;
|
|
14338
|
-
};
|
|
14339
|
-
joiner_acs_credential_ids: {
|
|
14340
|
-
items: {
|
|
14341
|
-
format: string;
|
|
14342
|
-
type: string;
|
|
14343
|
-
};
|
|
14344
|
-
type: string;
|
|
14345
|
-
};
|
|
14346
|
-
override: {
|
|
14347
|
-
type: string;
|
|
14348
|
-
};
|
|
14349
|
-
};
|
|
14350
|
-
type: string;
|
|
14351
|
-
};
|
|
14352
14653
|
};
|
|
14353
14654
|
required: string[];
|
|
14354
14655
|
type: string;
|
|
@@ -14362,7 +14663,273 @@ declare const _default: {
|
|
|
14362
14663
|
'application/json': {
|
|
14363
14664
|
schema: {
|
|
14364
14665
|
properties: {
|
|
14365
|
-
|
|
14666
|
+
acs_credential_provisioning_automation: {
|
|
14667
|
+
$ref: string;
|
|
14668
|
+
};
|
|
14669
|
+
ok: {
|
|
14670
|
+
type: string;
|
|
14671
|
+
};
|
|
14672
|
+
};
|
|
14673
|
+
required: string[];
|
|
14674
|
+
type: string;
|
|
14675
|
+
};
|
|
14676
|
+
};
|
|
14677
|
+
};
|
|
14678
|
+
description: string;
|
|
14679
|
+
};
|
|
14680
|
+
400: {
|
|
14681
|
+
description: string;
|
|
14682
|
+
};
|
|
14683
|
+
401: {
|
|
14684
|
+
description: string;
|
|
14685
|
+
};
|
|
14686
|
+
};
|
|
14687
|
+
security: ({
|
|
14688
|
+
pat_with_workspace: never[];
|
|
14689
|
+
console_session?: never;
|
|
14690
|
+
api_key?: never;
|
|
14691
|
+
} | {
|
|
14692
|
+
console_session: never[];
|
|
14693
|
+
pat_with_workspace?: never;
|
|
14694
|
+
api_key?: never;
|
|
14695
|
+
} | {
|
|
14696
|
+
api_key: never[];
|
|
14697
|
+
pat_with_workspace?: never;
|
|
14698
|
+
console_session?: never;
|
|
14699
|
+
})[];
|
|
14700
|
+
summary: string;
|
|
14701
|
+
tags: string[];
|
|
14702
|
+
'x-fern-sdk-group-name': string[];
|
|
14703
|
+
'x-fern-sdk-method-name': string;
|
|
14704
|
+
'x-fern-sdk-return-value': string;
|
|
14705
|
+
};
|
|
14706
|
+
};
|
|
14707
|
+
'/acs/credentials/assign': {
|
|
14708
|
+
patch: {
|
|
14709
|
+
operationId: string;
|
|
14710
|
+
requestBody: {
|
|
14711
|
+
content: {
|
|
14712
|
+
'application/json': {
|
|
14713
|
+
schema: {
|
|
14714
|
+
properties: {
|
|
14715
|
+
acs_credential_id: {
|
|
14716
|
+
format: string;
|
|
14717
|
+
type: string;
|
|
14718
|
+
};
|
|
14719
|
+
acs_user_id: {
|
|
14720
|
+
format: string;
|
|
14721
|
+
type: string;
|
|
14722
|
+
};
|
|
14723
|
+
};
|
|
14724
|
+
required: string[];
|
|
14725
|
+
type: string;
|
|
14726
|
+
};
|
|
14727
|
+
};
|
|
14728
|
+
};
|
|
14729
|
+
};
|
|
14730
|
+
responses: {
|
|
14731
|
+
200: {
|
|
14732
|
+
content: {
|
|
14733
|
+
'application/json': {
|
|
14734
|
+
schema: {
|
|
14735
|
+
properties: {
|
|
14736
|
+
acs_credential: {
|
|
14737
|
+
$ref: string;
|
|
14738
|
+
};
|
|
14739
|
+
ok: {
|
|
14740
|
+
type: string;
|
|
14741
|
+
};
|
|
14742
|
+
};
|
|
14743
|
+
required: string[];
|
|
14744
|
+
type: string;
|
|
14745
|
+
};
|
|
14746
|
+
};
|
|
14747
|
+
};
|
|
14748
|
+
description: string;
|
|
14749
|
+
};
|
|
14750
|
+
400: {
|
|
14751
|
+
description: string;
|
|
14752
|
+
};
|
|
14753
|
+
401: {
|
|
14754
|
+
description: string;
|
|
14755
|
+
};
|
|
14756
|
+
};
|
|
14757
|
+
security: ({
|
|
14758
|
+
pat_with_workspace: never[];
|
|
14759
|
+
console_session?: never;
|
|
14760
|
+
api_key?: never;
|
|
14761
|
+
} | {
|
|
14762
|
+
console_session: never[];
|
|
14763
|
+
pat_with_workspace?: never;
|
|
14764
|
+
api_key?: never;
|
|
14765
|
+
} | {
|
|
14766
|
+
api_key: never[];
|
|
14767
|
+
pat_with_workspace?: never;
|
|
14768
|
+
console_session?: never;
|
|
14769
|
+
})[];
|
|
14770
|
+
summary: string;
|
|
14771
|
+
tags: string[];
|
|
14772
|
+
'x-fern-ignore': boolean;
|
|
14773
|
+
};
|
|
14774
|
+
post: {
|
|
14775
|
+
operationId: string;
|
|
14776
|
+
requestBody: {
|
|
14777
|
+
content: {
|
|
14778
|
+
'application/json': {
|
|
14779
|
+
schema: {
|
|
14780
|
+
properties: {
|
|
14781
|
+
acs_credential_id: {
|
|
14782
|
+
format: string;
|
|
14783
|
+
type: string;
|
|
14784
|
+
};
|
|
14785
|
+
acs_user_id: {
|
|
14786
|
+
format: string;
|
|
14787
|
+
type: string;
|
|
14788
|
+
};
|
|
14789
|
+
};
|
|
14790
|
+
required: string[];
|
|
14791
|
+
type: string;
|
|
14792
|
+
};
|
|
14793
|
+
};
|
|
14794
|
+
};
|
|
14795
|
+
};
|
|
14796
|
+
responses: {
|
|
14797
|
+
200: {
|
|
14798
|
+
content: {
|
|
14799
|
+
'application/json': {
|
|
14800
|
+
schema: {
|
|
14801
|
+
properties: {
|
|
14802
|
+
acs_credential: {
|
|
14803
|
+
$ref: string;
|
|
14804
|
+
};
|
|
14805
|
+
ok: {
|
|
14806
|
+
type: string;
|
|
14807
|
+
};
|
|
14808
|
+
};
|
|
14809
|
+
required: string[];
|
|
14810
|
+
type: string;
|
|
14811
|
+
};
|
|
14812
|
+
};
|
|
14813
|
+
};
|
|
14814
|
+
description: string;
|
|
14815
|
+
};
|
|
14816
|
+
400: {
|
|
14817
|
+
description: string;
|
|
14818
|
+
};
|
|
14819
|
+
401: {
|
|
14820
|
+
description: string;
|
|
14821
|
+
};
|
|
14822
|
+
};
|
|
14823
|
+
security: ({
|
|
14824
|
+
pat_with_workspace: never[];
|
|
14825
|
+
console_session?: never;
|
|
14826
|
+
api_key?: never;
|
|
14827
|
+
} | {
|
|
14828
|
+
console_session: never[];
|
|
14829
|
+
pat_with_workspace?: never;
|
|
14830
|
+
api_key?: never;
|
|
14831
|
+
} | {
|
|
14832
|
+
api_key: never[];
|
|
14833
|
+
pat_with_workspace?: never;
|
|
14834
|
+
console_session?: never;
|
|
14835
|
+
})[];
|
|
14836
|
+
summary: string;
|
|
14837
|
+
tags: string[];
|
|
14838
|
+
'x-fern-sdk-group-name': string[];
|
|
14839
|
+
'x-fern-sdk-method-name': string;
|
|
14840
|
+
};
|
|
14841
|
+
};
|
|
14842
|
+
'/acs/credentials/create': {
|
|
14843
|
+
post: {
|
|
14844
|
+
operationId: string;
|
|
14845
|
+
requestBody: {
|
|
14846
|
+
content: {
|
|
14847
|
+
'application/json': {
|
|
14848
|
+
schema: {
|
|
14849
|
+
properties: {
|
|
14850
|
+
access_method: {
|
|
14851
|
+
enum: string[];
|
|
14852
|
+
type: string;
|
|
14853
|
+
};
|
|
14854
|
+
acs_user_id: {
|
|
14855
|
+
format: string;
|
|
14856
|
+
type: string;
|
|
14857
|
+
};
|
|
14858
|
+
allowed_acs_entrance_ids: {
|
|
14859
|
+
default: never[];
|
|
14860
|
+
items: {
|
|
14861
|
+
format: string;
|
|
14862
|
+
type: string;
|
|
14863
|
+
};
|
|
14864
|
+
type: string;
|
|
14865
|
+
};
|
|
14866
|
+
code: {
|
|
14867
|
+
pattern: string;
|
|
14868
|
+
type: string;
|
|
14869
|
+
};
|
|
14870
|
+
credential_manager_acs_system_id: {
|
|
14871
|
+
format: string;
|
|
14872
|
+
type: string;
|
|
14873
|
+
};
|
|
14874
|
+
ends_at: {
|
|
14875
|
+
format: string;
|
|
14876
|
+
type: string;
|
|
14877
|
+
};
|
|
14878
|
+
is_multi_phone_sync_credential: {
|
|
14879
|
+
default: boolean;
|
|
14880
|
+
type: string;
|
|
14881
|
+
};
|
|
14882
|
+
starts_at: {
|
|
14883
|
+
format: string;
|
|
14884
|
+
type: string;
|
|
14885
|
+
};
|
|
14886
|
+
visionline_metadata: {
|
|
14887
|
+
properties: {
|
|
14888
|
+
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
14889
|
+
format: string;
|
|
14890
|
+
type: string;
|
|
14891
|
+
};
|
|
14892
|
+
card_format: {
|
|
14893
|
+
enum: string[];
|
|
14894
|
+
type: string;
|
|
14895
|
+
};
|
|
14896
|
+
card_function_type: {
|
|
14897
|
+
default: string;
|
|
14898
|
+
enum: string[];
|
|
14899
|
+
type: string;
|
|
14900
|
+
};
|
|
14901
|
+
is_override_key: {
|
|
14902
|
+
deprecated: boolean;
|
|
14903
|
+
type: string;
|
|
14904
|
+
'x-deprecated': string;
|
|
14905
|
+
};
|
|
14906
|
+
joiner_acs_credential_ids: {
|
|
14907
|
+
items: {
|
|
14908
|
+
format: string;
|
|
14909
|
+
type: string;
|
|
14910
|
+
};
|
|
14911
|
+
type: string;
|
|
14912
|
+
};
|
|
14913
|
+
override: {
|
|
14914
|
+
type: string;
|
|
14915
|
+
};
|
|
14916
|
+
};
|
|
14917
|
+
type: string;
|
|
14918
|
+
};
|
|
14919
|
+
};
|
|
14920
|
+
required: string[];
|
|
14921
|
+
type: string;
|
|
14922
|
+
};
|
|
14923
|
+
};
|
|
14924
|
+
};
|
|
14925
|
+
};
|
|
14926
|
+
responses: {
|
|
14927
|
+
200: {
|
|
14928
|
+
content: {
|
|
14929
|
+
'application/json': {
|
|
14930
|
+
schema: {
|
|
14931
|
+
properties: {
|
|
14932
|
+
acs_credential: {
|
|
14366
14933
|
$ref: string;
|
|
14367
14934
|
};
|
|
14368
14935
|
ok: {
|
|
@@ -14873,6 +15440,461 @@ declare const _default: {
|
|
|
14873
15440
|
'x-fern-sdk-method-name': string;
|
|
14874
15441
|
};
|
|
14875
15442
|
};
|
|
15443
|
+
'/acs/credentials/unmanaged/get': {
|
|
15444
|
+
post: {
|
|
15445
|
+
operationId: string;
|
|
15446
|
+
requestBody: {
|
|
15447
|
+
content: {
|
|
15448
|
+
'application/json': {
|
|
15449
|
+
schema: {
|
|
15450
|
+
properties: {
|
|
15451
|
+
acs_credential_id: {
|
|
15452
|
+
format: string;
|
|
15453
|
+
type: string;
|
|
15454
|
+
};
|
|
15455
|
+
};
|
|
15456
|
+
required: string[];
|
|
15457
|
+
type: string;
|
|
15458
|
+
};
|
|
15459
|
+
};
|
|
15460
|
+
};
|
|
15461
|
+
};
|
|
15462
|
+
responses: {
|
|
15463
|
+
200: {
|
|
15464
|
+
content: {
|
|
15465
|
+
'application/json': {
|
|
15466
|
+
schema: {
|
|
15467
|
+
properties: {
|
|
15468
|
+
acs_credential: {
|
|
15469
|
+
properties: {
|
|
15470
|
+
access_method: {
|
|
15471
|
+
enum: string[];
|
|
15472
|
+
type: string;
|
|
15473
|
+
};
|
|
15474
|
+
acs_credential_id: {
|
|
15475
|
+
format: string;
|
|
15476
|
+
type: string;
|
|
15477
|
+
};
|
|
15478
|
+
acs_credential_pool_id: {
|
|
15479
|
+
format: string;
|
|
15480
|
+
type: string;
|
|
15481
|
+
};
|
|
15482
|
+
acs_system_id: {
|
|
15483
|
+
format: string;
|
|
15484
|
+
type: string;
|
|
15485
|
+
};
|
|
15486
|
+
acs_user_id: {
|
|
15487
|
+
format: string;
|
|
15488
|
+
type: string;
|
|
15489
|
+
};
|
|
15490
|
+
code: {
|
|
15491
|
+
nullable: boolean;
|
|
15492
|
+
type: string;
|
|
15493
|
+
};
|
|
15494
|
+
created_at: {
|
|
15495
|
+
format: string;
|
|
15496
|
+
type: string;
|
|
15497
|
+
};
|
|
15498
|
+
display_name: {
|
|
15499
|
+
minLength: number;
|
|
15500
|
+
type: string;
|
|
15501
|
+
};
|
|
15502
|
+
ends_at: {
|
|
15503
|
+
type: string;
|
|
15504
|
+
};
|
|
15505
|
+
errors: {
|
|
15506
|
+
items: {
|
|
15507
|
+
properties: {
|
|
15508
|
+
error_code: {
|
|
15509
|
+
type: string;
|
|
15510
|
+
};
|
|
15511
|
+
message: {
|
|
15512
|
+
type: string;
|
|
15513
|
+
};
|
|
15514
|
+
};
|
|
15515
|
+
required: string[];
|
|
15516
|
+
type: string;
|
|
15517
|
+
};
|
|
15518
|
+
type: string;
|
|
15519
|
+
};
|
|
15520
|
+
external_type: {
|
|
15521
|
+
enum: string[];
|
|
15522
|
+
type: string;
|
|
15523
|
+
};
|
|
15524
|
+
external_type_display_name: {
|
|
15525
|
+
type: string;
|
|
15526
|
+
};
|
|
15527
|
+
is_latest_desired_state_synced_with_provider: {
|
|
15528
|
+
type: string;
|
|
15529
|
+
};
|
|
15530
|
+
is_managed: {
|
|
15531
|
+
enum: boolean[];
|
|
15532
|
+
type: string;
|
|
15533
|
+
};
|
|
15534
|
+
is_multi_phone_sync_credential: {
|
|
15535
|
+
type: string;
|
|
15536
|
+
};
|
|
15537
|
+
latest_desired_state_synced_with_provider_at: {
|
|
15538
|
+
format: string;
|
|
15539
|
+
type: string;
|
|
15540
|
+
};
|
|
15541
|
+
parent_acs_credential_id: {
|
|
15542
|
+
format: string;
|
|
15543
|
+
type: string;
|
|
15544
|
+
};
|
|
15545
|
+
starts_at: {
|
|
15546
|
+
type: string;
|
|
15547
|
+
};
|
|
15548
|
+
visionline_metadata: {
|
|
15549
|
+
properties: {
|
|
15550
|
+
card_function_type: {
|
|
15551
|
+
enum: string[];
|
|
15552
|
+
type: string;
|
|
15553
|
+
};
|
|
15554
|
+
card_id: {
|
|
15555
|
+
type: string;
|
|
15556
|
+
};
|
|
15557
|
+
common_acs_entrance_ids: {
|
|
15558
|
+
items: {
|
|
15559
|
+
format: string;
|
|
15560
|
+
type: string;
|
|
15561
|
+
};
|
|
15562
|
+
type: string;
|
|
15563
|
+
};
|
|
15564
|
+
credential_id: {
|
|
15565
|
+
type: string;
|
|
15566
|
+
};
|
|
15567
|
+
guest_acs_entrance_ids: {
|
|
15568
|
+
items: {
|
|
15569
|
+
format: string;
|
|
15570
|
+
type: string;
|
|
15571
|
+
};
|
|
15572
|
+
type: string;
|
|
15573
|
+
};
|
|
15574
|
+
is_valid: {
|
|
15575
|
+
type: string;
|
|
15576
|
+
};
|
|
15577
|
+
joiner_acs_credential_ids: {
|
|
15578
|
+
items: {
|
|
15579
|
+
format: string;
|
|
15580
|
+
type: string;
|
|
15581
|
+
};
|
|
15582
|
+
type: string;
|
|
15583
|
+
};
|
|
15584
|
+
};
|
|
15585
|
+
required: string[];
|
|
15586
|
+
type: string;
|
|
15587
|
+
};
|
|
15588
|
+
warnings: {
|
|
15589
|
+
items: {
|
|
15590
|
+
properties: {
|
|
15591
|
+
message: {
|
|
15592
|
+
type: string;
|
|
15593
|
+
};
|
|
15594
|
+
warning_code: {
|
|
15595
|
+
type: string;
|
|
15596
|
+
};
|
|
15597
|
+
};
|
|
15598
|
+
required: string[];
|
|
15599
|
+
type: string;
|
|
15600
|
+
};
|
|
15601
|
+
type: string;
|
|
15602
|
+
};
|
|
15603
|
+
workspace_id: {
|
|
15604
|
+
format: string;
|
|
15605
|
+
type: string;
|
|
15606
|
+
};
|
|
15607
|
+
};
|
|
15608
|
+
required: string[];
|
|
15609
|
+
type: string;
|
|
15610
|
+
};
|
|
15611
|
+
ok: {
|
|
15612
|
+
type: string;
|
|
15613
|
+
};
|
|
15614
|
+
};
|
|
15615
|
+
required: string[];
|
|
15616
|
+
type: string;
|
|
15617
|
+
};
|
|
15618
|
+
};
|
|
15619
|
+
};
|
|
15620
|
+
description: string;
|
|
15621
|
+
};
|
|
15622
|
+
400: {
|
|
15623
|
+
description: string;
|
|
15624
|
+
};
|
|
15625
|
+
401: {
|
|
15626
|
+
description: string;
|
|
15627
|
+
};
|
|
15628
|
+
};
|
|
15629
|
+
security: ({
|
|
15630
|
+
pat_with_workspace: never[];
|
|
15631
|
+
console_session?: never;
|
|
15632
|
+
api_key?: never;
|
|
15633
|
+
} | {
|
|
15634
|
+
console_session: never[];
|
|
15635
|
+
pat_with_workspace?: never;
|
|
15636
|
+
api_key?: never;
|
|
15637
|
+
} | {
|
|
15638
|
+
api_key: never[];
|
|
15639
|
+
pat_with_workspace?: never;
|
|
15640
|
+
console_session?: never;
|
|
15641
|
+
})[];
|
|
15642
|
+
summary: string;
|
|
15643
|
+
tags: string[];
|
|
15644
|
+
'x-fern-sdk-group-name': string[];
|
|
15645
|
+
'x-fern-sdk-method-name': string;
|
|
15646
|
+
'x-fern-sdk-return-value': string;
|
|
15647
|
+
};
|
|
15648
|
+
};
|
|
15649
|
+
'/acs/credentials/unmanaged/list': {
|
|
15650
|
+
post: {
|
|
15651
|
+
operationId: string;
|
|
15652
|
+
requestBody: {
|
|
15653
|
+
content: {
|
|
15654
|
+
'application/json': {
|
|
15655
|
+
schema: {
|
|
15656
|
+
oneOf: ({
|
|
15657
|
+
properties: {
|
|
15658
|
+
acs_user_id: {
|
|
15659
|
+
format: string;
|
|
15660
|
+
type: string;
|
|
15661
|
+
};
|
|
15662
|
+
acs_system_id?: never;
|
|
15663
|
+
user_identity_id?: never;
|
|
15664
|
+
};
|
|
15665
|
+
required: string[];
|
|
15666
|
+
type: string;
|
|
15667
|
+
} | {
|
|
15668
|
+
properties: {
|
|
15669
|
+
acs_system_id: {
|
|
15670
|
+
format: string;
|
|
15671
|
+
type: string;
|
|
15672
|
+
};
|
|
15673
|
+
acs_user_id?: never;
|
|
15674
|
+
user_identity_id?: never;
|
|
15675
|
+
};
|
|
15676
|
+
required: string[];
|
|
15677
|
+
type: string;
|
|
15678
|
+
} | {
|
|
15679
|
+
properties: {
|
|
15680
|
+
acs_system_id: {
|
|
15681
|
+
format: string;
|
|
15682
|
+
type: string;
|
|
15683
|
+
};
|
|
15684
|
+
acs_user_id: {
|
|
15685
|
+
format: string;
|
|
15686
|
+
type: string;
|
|
15687
|
+
};
|
|
15688
|
+
user_identity_id?: never;
|
|
15689
|
+
};
|
|
15690
|
+
required: string[];
|
|
15691
|
+
type: string;
|
|
15692
|
+
} | {
|
|
15693
|
+
properties: {
|
|
15694
|
+
user_identity_id: {
|
|
15695
|
+
format: string;
|
|
15696
|
+
type: string;
|
|
15697
|
+
};
|
|
15698
|
+
acs_user_id?: never;
|
|
15699
|
+
acs_system_id?: never;
|
|
15700
|
+
};
|
|
15701
|
+
required: string[];
|
|
15702
|
+
type: string;
|
|
15703
|
+
})[];
|
|
15704
|
+
};
|
|
15705
|
+
};
|
|
15706
|
+
};
|
|
15707
|
+
};
|
|
15708
|
+
responses: {
|
|
15709
|
+
200: {
|
|
15710
|
+
content: {
|
|
15711
|
+
'application/json': {
|
|
15712
|
+
schema: {
|
|
15713
|
+
properties: {
|
|
15714
|
+
acs_credentials: {
|
|
15715
|
+
items: {
|
|
15716
|
+
properties: {
|
|
15717
|
+
access_method: {
|
|
15718
|
+
enum: string[];
|
|
15719
|
+
type: string;
|
|
15720
|
+
};
|
|
15721
|
+
acs_credential_id: {
|
|
15722
|
+
format: string;
|
|
15723
|
+
type: string;
|
|
15724
|
+
};
|
|
15725
|
+
acs_credential_pool_id: {
|
|
15726
|
+
format: string;
|
|
15727
|
+
type: string;
|
|
15728
|
+
};
|
|
15729
|
+
acs_system_id: {
|
|
15730
|
+
format: string;
|
|
15731
|
+
type: string;
|
|
15732
|
+
};
|
|
15733
|
+
acs_user_id: {
|
|
15734
|
+
format: string;
|
|
15735
|
+
type: string;
|
|
15736
|
+
};
|
|
15737
|
+
code: {
|
|
15738
|
+
nullable: boolean;
|
|
15739
|
+
type: string;
|
|
15740
|
+
};
|
|
15741
|
+
created_at: {
|
|
15742
|
+
format: string;
|
|
15743
|
+
type: string;
|
|
15744
|
+
};
|
|
15745
|
+
display_name: {
|
|
15746
|
+
minLength: number;
|
|
15747
|
+
type: string;
|
|
15748
|
+
};
|
|
15749
|
+
ends_at: {
|
|
15750
|
+
type: string;
|
|
15751
|
+
};
|
|
15752
|
+
errors: {
|
|
15753
|
+
items: {
|
|
15754
|
+
properties: {
|
|
15755
|
+
error_code: {
|
|
15756
|
+
type: string;
|
|
15757
|
+
};
|
|
15758
|
+
message: {
|
|
15759
|
+
type: string;
|
|
15760
|
+
};
|
|
15761
|
+
};
|
|
15762
|
+
required: string[];
|
|
15763
|
+
type: string;
|
|
15764
|
+
};
|
|
15765
|
+
type: string;
|
|
15766
|
+
};
|
|
15767
|
+
external_type: {
|
|
15768
|
+
enum: string[];
|
|
15769
|
+
type: string;
|
|
15770
|
+
};
|
|
15771
|
+
external_type_display_name: {
|
|
15772
|
+
type: string;
|
|
15773
|
+
};
|
|
15774
|
+
is_latest_desired_state_synced_with_provider: {
|
|
15775
|
+
type: string;
|
|
15776
|
+
};
|
|
15777
|
+
is_managed: {
|
|
15778
|
+
enum: boolean[];
|
|
15779
|
+
type: string;
|
|
15780
|
+
};
|
|
15781
|
+
is_multi_phone_sync_credential: {
|
|
15782
|
+
type: string;
|
|
15783
|
+
};
|
|
15784
|
+
latest_desired_state_synced_with_provider_at: {
|
|
15785
|
+
format: string;
|
|
15786
|
+
type: string;
|
|
15787
|
+
};
|
|
15788
|
+
parent_acs_credential_id: {
|
|
15789
|
+
format: string;
|
|
15790
|
+
type: string;
|
|
15791
|
+
};
|
|
15792
|
+
starts_at: {
|
|
15793
|
+
type: string;
|
|
15794
|
+
};
|
|
15795
|
+
visionline_metadata: {
|
|
15796
|
+
properties: {
|
|
15797
|
+
card_function_type: {
|
|
15798
|
+
enum: string[];
|
|
15799
|
+
type: string;
|
|
15800
|
+
};
|
|
15801
|
+
card_id: {
|
|
15802
|
+
type: string;
|
|
15803
|
+
};
|
|
15804
|
+
common_acs_entrance_ids: {
|
|
15805
|
+
items: {
|
|
15806
|
+
format: string;
|
|
15807
|
+
type: string;
|
|
15808
|
+
};
|
|
15809
|
+
type: string;
|
|
15810
|
+
};
|
|
15811
|
+
credential_id: {
|
|
15812
|
+
type: string;
|
|
15813
|
+
};
|
|
15814
|
+
guest_acs_entrance_ids: {
|
|
15815
|
+
items: {
|
|
15816
|
+
format: string;
|
|
15817
|
+
type: string;
|
|
15818
|
+
};
|
|
15819
|
+
type: string;
|
|
15820
|
+
};
|
|
15821
|
+
is_valid: {
|
|
15822
|
+
type: string;
|
|
15823
|
+
};
|
|
15824
|
+
joiner_acs_credential_ids: {
|
|
15825
|
+
items: {
|
|
15826
|
+
format: string;
|
|
15827
|
+
type: string;
|
|
15828
|
+
};
|
|
15829
|
+
type: string;
|
|
15830
|
+
};
|
|
15831
|
+
};
|
|
15832
|
+
required: string[];
|
|
15833
|
+
type: string;
|
|
15834
|
+
};
|
|
15835
|
+
warnings: {
|
|
15836
|
+
items: {
|
|
15837
|
+
properties: {
|
|
15838
|
+
message: {
|
|
15839
|
+
type: string;
|
|
15840
|
+
};
|
|
15841
|
+
warning_code: {
|
|
15842
|
+
type: string;
|
|
15843
|
+
};
|
|
15844
|
+
};
|
|
15845
|
+
required: string[];
|
|
15846
|
+
type: string;
|
|
15847
|
+
};
|
|
15848
|
+
type: string;
|
|
15849
|
+
};
|
|
15850
|
+
workspace_id: {
|
|
15851
|
+
format: string;
|
|
15852
|
+
type: string;
|
|
15853
|
+
};
|
|
15854
|
+
};
|
|
15855
|
+
required: string[];
|
|
15856
|
+
type: string;
|
|
15857
|
+
};
|
|
15858
|
+
type: string;
|
|
15859
|
+
};
|
|
15860
|
+
ok: {
|
|
15861
|
+
type: string;
|
|
15862
|
+
};
|
|
15863
|
+
};
|
|
15864
|
+
required: string[];
|
|
15865
|
+
type: string;
|
|
15866
|
+
};
|
|
15867
|
+
};
|
|
15868
|
+
};
|
|
15869
|
+
description: string;
|
|
15870
|
+
};
|
|
15871
|
+
400: {
|
|
15872
|
+
description: string;
|
|
15873
|
+
};
|
|
15874
|
+
401: {
|
|
15875
|
+
description: string;
|
|
15876
|
+
};
|
|
15877
|
+
};
|
|
15878
|
+
security: ({
|
|
15879
|
+
api_key: never[];
|
|
15880
|
+
pat_with_workspace?: never;
|
|
15881
|
+
console_session?: never;
|
|
15882
|
+
} | {
|
|
15883
|
+
pat_with_workspace: never[];
|
|
15884
|
+
api_key?: never;
|
|
15885
|
+
console_session?: never;
|
|
15886
|
+
} | {
|
|
15887
|
+
console_session: never[];
|
|
15888
|
+
api_key?: never;
|
|
15889
|
+
pat_with_workspace?: never;
|
|
15890
|
+
})[];
|
|
15891
|
+
summary: string;
|
|
15892
|
+
tags: string[];
|
|
15893
|
+
'x-fern-sdk-group-name': string[];
|
|
15894
|
+
'x-fern-sdk-method-name': string;
|
|
15895
|
+
'x-fern-sdk-return-value': string;
|
|
15896
|
+
};
|
|
15897
|
+
};
|
|
14876
15898
|
'/acs/credentials/update': {
|
|
14877
15899
|
patch: {
|
|
14878
15900
|
operationId: string;
|
|
@@ -16346,8 +17368,22 @@ declare const _default: {
|
|
|
16346
17368
|
format: string;
|
|
16347
17369
|
type: string;
|
|
16348
17370
|
};
|
|
17371
|
+
limit: {
|
|
17372
|
+
default: number;
|
|
17373
|
+
format: string;
|
|
17374
|
+
type: string;
|
|
17375
|
+
};
|
|
17376
|
+
user_identity_email_address: {
|
|
17377
|
+
type: string;
|
|
17378
|
+
};
|
|
17379
|
+
user_identity_id: {
|
|
17380
|
+
format: string;
|
|
17381
|
+
type: string;
|
|
17382
|
+
};
|
|
17383
|
+
user_identity_phone_number: {
|
|
17384
|
+
type: string;
|
|
17385
|
+
};
|
|
16349
17386
|
};
|
|
16350
|
-
required: string[];
|
|
16351
17387
|
type: string;
|
|
16352
17388
|
};
|
|
16353
17389
|
};
|
|
@@ -16361,7 +17397,119 @@ declare const _default: {
|
|
|
16361
17397
|
properties: {
|
|
16362
17398
|
acs_users: {
|
|
16363
17399
|
items: {
|
|
16364
|
-
|
|
17400
|
+
properties: {
|
|
17401
|
+
access_schedule: {
|
|
17402
|
+
properties: {
|
|
17403
|
+
ends_at: {
|
|
17404
|
+
format: string;
|
|
17405
|
+
type: string;
|
|
17406
|
+
};
|
|
17407
|
+
starts_at: {
|
|
17408
|
+
format: string;
|
|
17409
|
+
type: string;
|
|
17410
|
+
};
|
|
17411
|
+
};
|
|
17412
|
+
required: string[];
|
|
17413
|
+
type: string;
|
|
17414
|
+
};
|
|
17415
|
+
acs_system_id: {
|
|
17416
|
+
format: string;
|
|
17417
|
+
type: string;
|
|
17418
|
+
};
|
|
17419
|
+
acs_user_id: {
|
|
17420
|
+
format: string;
|
|
17421
|
+
type: string;
|
|
17422
|
+
};
|
|
17423
|
+
created_at: {
|
|
17424
|
+
format: string;
|
|
17425
|
+
type: string;
|
|
17426
|
+
};
|
|
17427
|
+
display_name: {
|
|
17428
|
+
type: string;
|
|
17429
|
+
};
|
|
17430
|
+
email: {
|
|
17431
|
+
deprecated: boolean;
|
|
17432
|
+
format: string;
|
|
17433
|
+
type: string;
|
|
17434
|
+
'x-deprecated': string;
|
|
17435
|
+
};
|
|
17436
|
+
email_address: {
|
|
17437
|
+
format: string;
|
|
17438
|
+
type: string;
|
|
17439
|
+
};
|
|
17440
|
+
external_type: {
|
|
17441
|
+
enum: string[];
|
|
17442
|
+
type: string;
|
|
17443
|
+
};
|
|
17444
|
+
external_type_display_name: {
|
|
17445
|
+
type: string;
|
|
17446
|
+
};
|
|
17447
|
+
full_name: {
|
|
17448
|
+
type: string;
|
|
17449
|
+
};
|
|
17450
|
+
hid_acs_system_id: {
|
|
17451
|
+
format: string;
|
|
17452
|
+
type: string;
|
|
17453
|
+
};
|
|
17454
|
+
is_latest_desired_state_synced_with_provider: {
|
|
17455
|
+
type: string;
|
|
17456
|
+
};
|
|
17457
|
+
is_managed: {
|
|
17458
|
+
enum: boolean[];
|
|
17459
|
+
type: string;
|
|
17460
|
+
};
|
|
17461
|
+
is_suspended: {
|
|
17462
|
+
type: string;
|
|
17463
|
+
};
|
|
17464
|
+
latest_desired_state_synced_with_provider_at: {
|
|
17465
|
+
format: string;
|
|
17466
|
+
type: string;
|
|
17467
|
+
};
|
|
17468
|
+
phone_number: {
|
|
17469
|
+
type: string;
|
|
17470
|
+
};
|
|
17471
|
+
user_identity_email_address: {
|
|
17472
|
+
nullable: boolean;
|
|
17473
|
+
type: string;
|
|
17474
|
+
};
|
|
17475
|
+
user_identity_full_name: {
|
|
17476
|
+
nullable: boolean;
|
|
17477
|
+
type: string;
|
|
17478
|
+
};
|
|
17479
|
+
user_identity_id: {
|
|
17480
|
+
type: string;
|
|
17481
|
+
};
|
|
17482
|
+
user_identity_phone_number: {
|
|
17483
|
+
nullable: boolean;
|
|
17484
|
+
type: string;
|
|
17485
|
+
};
|
|
17486
|
+
warnings: {
|
|
17487
|
+
items: {
|
|
17488
|
+
properties: {
|
|
17489
|
+
created_at: {
|
|
17490
|
+
format: string;
|
|
17491
|
+
type: string;
|
|
17492
|
+
};
|
|
17493
|
+
message: {
|
|
17494
|
+
type: string;
|
|
17495
|
+
};
|
|
17496
|
+
warning_code: {
|
|
17497
|
+
enum: string[];
|
|
17498
|
+
type: string;
|
|
17499
|
+
};
|
|
17500
|
+
};
|
|
17501
|
+
required: string[];
|
|
17502
|
+
type: string;
|
|
17503
|
+
};
|
|
17504
|
+
type: string;
|
|
17505
|
+
};
|
|
17506
|
+
workspace_id: {
|
|
17507
|
+
format: string;
|
|
17508
|
+
type: string;
|
|
17509
|
+
};
|
|
17510
|
+
};
|
|
17511
|
+
required: string[];
|
|
17512
|
+
type: string;
|
|
16365
17513
|
};
|
|
16366
17514
|
type: string;
|
|
16367
17515
|
};
|
|
@@ -16384,23 +17532,15 @@ declare const _default: {
|
|
|
16384
17532
|
};
|
|
16385
17533
|
};
|
|
16386
17534
|
security: ({
|
|
16387
|
-
client_session: never[];
|
|
16388
|
-
pat_with_workspace?: never;
|
|
16389
|
-
console_session?: never;
|
|
16390
|
-
api_key?: never;
|
|
16391
|
-
} | {
|
|
16392
17535
|
pat_with_workspace: never[];
|
|
16393
|
-
client_session?: never;
|
|
16394
17536
|
console_session?: never;
|
|
16395
17537
|
api_key?: never;
|
|
16396
17538
|
} | {
|
|
16397
17539
|
console_session: never[];
|
|
16398
|
-
client_session?: never;
|
|
16399
17540
|
pat_with_workspace?: never;
|
|
16400
17541
|
api_key?: never;
|
|
16401
17542
|
} | {
|
|
16402
17543
|
api_key: never[];
|
|
16403
|
-
client_session?: never;
|
|
16404
17544
|
pat_with_workspace?: never;
|
|
16405
17545
|
console_session?: never;
|
|
16406
17546
|
})[];
|
|
@@ -27001,6 +28141,7 @@ interface Routes {
|
|
|
27001
28141
|
external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
|
|
27002
28142
|
external_type_display_name: string;
|
|
27003
28143
|
created_at: string;
|
|
28144
|
+
is_managed: true;
|
|
27004
28145
|
};
|
|
27005
28146
|
};
|
|
27006
28147
|
};
|
|
@@ -27030,6 +28171,7 @@ interface Routes {
|
|
|
27030
28171
|
external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
|
|
27031
28172
|
external_type_display_name: string;
|
|
27032
28173
|
created_at: string;
|
|
28174
|
+
is_managed: true;
|
|
27033
28175
|
}>;
|
|
27034
28176
|
};
|
|
27035
28177
|
};
|
|
@@ -27110,6 +28252,7 @@ interface Routes {
|
|
|
27110
28252
|
email?: string | undefined;
|
|
27111
28253
|
email_address?: string | undefined;
|
|
27112
28254
|
phone_number?: string | undefined;
|
|
28255
|
+
is_managed: true;
|
|
27113
28256
|
}>;
|
|
27114
28257
|
};
|
|
27115
28258
|
};
|
|
@@ -27125,6 +28268,65 @@ interface Routes {
|
|
|
27125
28268
|
formData: {};
|
|
27126
28269
|
jsonResponse: {};
|
|
27127
28270
|
};
|
|
28271
|
+
'/acs/access_groups/unmanaged/get': {
|
|
28272
|
+
route: '/acs/access_groups/unmanaged/get';
|
|
28273
|
+
method: 'GET' | 'POST';
|
|
28274
|
+
queryParams: {};
|
|
28275
|
+
jsonBody: {};
|
|
28276
|
+
commonParams: {
|
|
28277
|
+
acs_access_group_id: string;
|
|
28278
|
+
};
|
|
28279
|
+
formData: {};
|
|
28280
|
+
jsonResponse: {
|
|
28281
|
+
acs_access_group: {
|
|
28282
|
+
acs_access_group_id: string;
|
|
28283
|
+
acs_system_id: string;
|
|
28284
|
+
workspace_id: string;
|
|
28285
|
+
name: string;
|
|
28286
|
+
/**
|
|
28287
|
+
* @deprecated use external_type */
|
|
28288
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
|
|
28289
|
+
/**
|
|
28290
|
+
* @deprecated use external_type_display_name */
|
|
28291
|
+
access_group_type_display_name: string;
|
|
28292
|
+
display_name: string;
|
|
28293
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
|
|
28294
|
+
external_type_display_name: string;
|
|
28295
|
+
created_at: string;
|
|
28296
|
+
is_managed: false;
|
|
28297
|
+
};
|
|
28298
|
+
};
|
|
28299
|
+
};
|
|
28300
|
+
'/acs/access_groups/unmanaged/list': {
|
|
28301
|
+
route: '/acs/access_groups/unmanaged/list';
|
|
28302
|
+
method: 'GET' | 'POST';
|
|
28303
|
+
queryParams: {};
|
|
28304
|
+
jsonBody: {};
|
|
28305
|
+
commonParams: {
|
|
28306
|
+
acs_system_id?: string | undefined;
|
|
28307
|
+
acs_user_id?: string | undefined;
|
|
28308
|
+
};
|
|
28309
|
+
formData: {};
|
|
28310
|
+
jsonResponse: {
|
|
28311
|
+
acs_access_groups: Array<{
|
|
28312
|
+
acs_access_group_id: string;
|
|
28313
|
+
acs_system_id: string;
|
|
28314
|
+
workspace_id: string;
|
|
28315
|
+
name: string;
|
|
28316
|
+
/**
|
|
28317
|
+
* @deprecated use external_type */
|
|
28318
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
|
|
28319
|
+
/**
|
|
28320
|
+
* @deprecated use external_type_display_name */
|
|
28321
|
+
access_group_type_display_name: string;
|
|
28322
|
+
display_name: string;
|
|
28323
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
|
|
28324
|
+
external_type_display_name: string;
|
|
28325
|
+
created_at: string;
|
|
28326
|
+
is_managed: false;
|
|
28327
|
+
}>;
|
|
28328
|
+
};
|
|
28329
|
+
};
|
|
27128
28330
|
'/acs/credential_pools/list': {
|
|
27129
28331
|
route: '/acs/credential_pools/list';
|
|
27130
28332
|
method: 'GET' | 'POST';
|
|
@@ -27211,7 +28413,11 @@ interface Routes {
|
|
|
27211
28413
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27212
28414
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27213
28415
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28416
|
+
is_valid?: boolean | undefined;
|
|
28417
|
+
card_id?: string | undefined;
|
|
28418
|
+
credential_id?: string | undefined;
|
|
27214
28419
|
} | undefined;
|
|
28420
|
+
is_managed: true;
|
|
27215
28421
|
};
|
|
27216
28422
|
};
|
|
27217
28423
|
};
|
|
@@ -27273,7 +28479,11 @@ interface Routes {
|
|
|
27273
28479
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27274
28480
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27275
28481
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28482
|
+
is_valid?: boolean | undefined;
|
|
28483
|
+
card_id?: string | undefined;
|
|
28484
|
+
credential_id?: string | undefined;
|
|
27276
28485
|
} | undefined;
|
|
28486
|
+
is_managed: true;
|
|
27277
28487
|
};
|
|
27278
28488
|
};
|
|
27279
28489
|
};
|
|
@@ -27329,7 +28539,11 @@ interface Routes {
|
|
|
27329
28539
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27330
28540
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27331
28541
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28542
|
+
is_valid?: boolean | undefined;
|
|
28543
|
+
card_id?: string | undefined;
|
|
28544
|
+
credential_id?: string | undefined;
|
|
27332
28545
|
} | undefined;
|
|
28546
|
+
is_managed: true;
|
|
27333
28547
|
};
|
|
27334
28548
|
};
|
|
27335
28549
|
};
|
|
@@ -27385,7 +28599,11 @@ interface Routes {
|
|
|
27385
28599
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27386
28600
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27387
28601
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28602
|
+
is_valid?: boolean | undefined;
|
|
28603
|
+
card_id?: string | undefined;
|
|
28604
|
+
credential_id?: string | undefined;
|
|
27388
28605
|
} | undefined;
|
|
28606
|
+
is_managed: true;
|
|
27389
28607
|
}>;
|
|
27390
28608
|
};
|
|
27391
28609
|
};
|
|
@@ -27467,10 +28685,119 @@ interface Routes {
|
|
|
27467
28685
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27468
28686
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27469
28687
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28688
|
+
is_valid?: boolean | undefined;
|
|
28689
|
+
card_id?: string | undefined;
|
|
28690
|
+
credential_id?: string | undefined;
|
|
27470
28691
|
} | undefined;
|
|
28692
|
+
is_managed: true;
|
|
27471
28693
|
};
|
|
27472
28694
|
};
|
|
27473
28695
|
};
|
|
28696
|
+
'/acs/credentials/unmanaged/get': {
|
|
28697
|
+
route: '/acs/credentials/unmanaged/get';
|
|
28698
|
+
method: 'GET' | 'POST';
|
|
28699
|
+
queryParams: {};
|
|
28700
|
+
jsonBody: {};
|
|
28701
|
+
commonParams: {
|
|
28702
|
+
acs_credential_id: string;
|
|
28703
|
+
};
|
|
28704
|
+
formData: {};
|
|
28705
|
+
jsonResponse: {
|
|
28706
|
+
acs_credential: {
|
|
28707
|
+
acs_credential_id: string;
|
|
28708
|
+
acs_user_id?: string | undefined;
|
|
28709
|
+
acs_credential_pool_id?: string | undefined;
|
|
28710
|
+
acs_system_id: string;
|
|
28711
|
+
parent_acs_credential_id?: string | undefined;
|
|
28712
|
+
display_name: string;
|
|
28713
|
+
code?: (string | undefined) | null;
|
|
28714
|
+
access_method: 'code' | 'card' | 'mobile_key';
|
|
28715
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
28716
|
+
external_type_display_name?: string | undefined;
|
|
28717
|
+
created_at: string;
|
|
28718
|
+
workspace_id: string;
|
|
28719
|
+
starts_at?: string | undefined;
|
|
28720
|
+
ends_at?: string | undefined;
|
|
28721
|
+
errors: Array<{
|
|
28722
|
+
error_code: string;
|
|
28723
|
+
message: string;
|
|
28724
|
+
}>;
|
|
28725
|
+
warnings: Array<{
|
|
28726
|
+
warning_code: string;
|
|
28727
|
+
message: string;
|
|
28728
|
+
}>;
|
|
28729
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28730
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
28731
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
28732
|
+
visionline_metadata?: {
|
|
28733
|
+
card_function_type: 'guest' | 'staff';
|
|
28734
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
28735
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
28736
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
28737
|
+
is_valid?: boolean | undefined;
|
|
28738
|
+
card_id?: string | undefined;
|
|
28739
|
+
credential_id?: string | undefined;
|
|
28740
|
+
} | undefined;
|
|
28741
|
+
is_managed: false;
|
|
28742
|
+
};
|
|
28743
|
+
};
|
|
28744
|
+
};
|
|
28745
|
+
'/acs/credentials/unmanaged/list': {
|
|
28746
|
+
route: '/acs/credentials/unmanaged/list';
|
|
28747
|
+
method: 'GET' | 'POST';
|
|
28748
|
+
queryParams: {};
|
|
28749
|
+
jsonBody: {};
|
|
28750
|
+
commonParams: {
|
|
28751
|
+
acs_user_id: string;
|
|
28752
|
+
} | {
|
|
28753
|
+
acs_system_id: string;
|
|
28754
|
+
} | {
|
|
28755
|
+
acs_user_id: string;
|
|
28756
|
+
acs_system_id: string;
|
|
28757
|
+
} | {
|
|
28758
|
+
user_identity_id: string;
|
|
28759
|
+
};
|
|
28760
|
+
formData: {};
|
|
28761
|
+
jsonResponse: {
|
|
28762
|
+
acs_credentials: Array<{
|
|
28763
|
+
acs_credential_id: string;
|
|
28764
|
+
acs_user_id?: string | undefined;
|
|
28765
|
+
acs_credential_pool_id?: string | undefined;
|
|
28766
|
+
acs_system_id: string;
|
|
28767
|
+
parent_acs_credential_id?: string | undefined;
|
|
28768
|
+
display_name: string;
|
|
28769
|
+
code?: (string | undefined) | null;
|
|
28770
|
+
access_method: 'code' | 'card' | 'mobile_key';
|
|
28771
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
28772
|
+
external_type_display_name?: string | undefined;
|
|
28773
|
+
created_at: string;
|
|
28774
|
+
workspace_id: string;
|
|
28775
|
+
starts_at?: string | undefined;
|
|
28776
|
+
ends_at?: string | undefined;
|
|
28777
|
+
errors: Array<{
|
|
28778
|
+
error_code: string;
|
|
28779
|
+
message: string;
|
|
28780
|
+
}>;
|
|
28781
|
+
warnings: Array<{
|
|
28782
|
+
warning_code: string;
|
|
28783
|
+
message: string;
|
|
28784
|
+
}>;
|
|
28785
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28786
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
28787
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
28788
|
+
visionline_metadata?: {
|
|
28789
|
+
card_function_type: 'guest' | 'staff';
|
|
28790
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
28791
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
28792
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
28793
|
+
is_valid?: boolean | undefined;
|
|
28794
|
+
card_id?: string | undefined;
|
|
28795
|
+
credential_id?: string | undefined;
|
|
28796
|
+
} | undefined;
|
|
28797
|
+
is_managed: false;
|
|
28798
|
+
}>;
|
|
28799
|
+
};
|
|
28800
|
+
};
|
|
27474
28801
|
'/acs/credentials/update': {
|
|
27475
28802
|
route: '/acs/credentials/update';
|
|
27476
28803
|
method: 'PATCH' | 'POST';
|
|
@@ -27514,7 +28841,11 @@ interface Routes {
|
|
|
27514
28841
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27515
28842
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27516
28843
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28844
|
+
is_valid?: boolean | undefined;
|
|
28845
|
+
card_id?: string | undefined;
|
|
28846
|
+
credential_id?: string | undefined;
|
|
27517
28847
|
} | undefined;
|
|
28848
|
+
is_managed: true;
|
|
27518
28849
|
};
|
|
27519
28850
|
};
|
|
27520
28851
|
};
|
|
@@ -27645,7 +28976,11 @@ interface Routes {
|
|
|
27645
28976
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27646
28977
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27647
28978
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28979
|
+
is_valid?: boolean | undefined;
|
|
28980
|
+
card_id?: string | undefined;
|
|
28981
|
+
credential_id?: string | undefined;
|
|
27648
28982
|
} | undefined;
|
|
28983
|
+
is_managed: true;
|
|
27649
28984
|
}>;
|
|
27650
28985
|
};
|
|
27651
28986
|
};
|
|
@@ -27967,6 +29302,7 @@ interface Routes {
|
|
|
27967
29302
|
email?: string | undefined;
|
|
27968
29303
|
email_address?: string | undefined;
|
|
27969
29304
|
phone_number?: string | undefined;
|
|
29305
|
+
is_managed: true;
|
|
27970
29306
|
};
|
|
27971
29307
|
};
|
|
27972
29308
|
};
|
|
@@ -28022,6 +29358,7 @@ interface Routes {
|
|
|
28022
29358
|
email?: string | undefined;
|
|
28023
29359
|
email_address?: string | undefined;
|
|
28024
29360
|
phone_number?: string | undefined;
|
|
29361
|
+
is_managed: true;
|
|
28025
29362
|
};
|
|
28026
29363
|
};
|
|
28027
29364
|
};
|
|
@@ -28071,6 +29408,7 @@ interface Routes {
|
|
|
28071
29408
|
email?: string | undefined;
|
|
28072
29409
|
email_address?: string | undefined;
|
|
28073
29410
|
phone_number?: string | undefined;
|
|
29411
|
+
is_managed: true;
|
|
28074
29412
|
}>;
|
|
28075
29413
|
};
|
|
28076
29414
|
};
|
|
@@ -28185,6 +29523,7 @@ interface Routes {
|
|
|
28185
29523
|
email?: string | undefined;
|
|
28186
29524
|
email_address?: string | undefined;
|
|
28187
29525
|
phone_number?: string | undefined;
|
|
29526
|
+
is_managed: true;
|
|
28188
29527
|
};
|
|
28189
29528
|
};
|
|
28190
29529
|
};
|
|
@@ -28194,7 +29533,11 @@ interface Routes {
|
|
|
28194
29533
|
queryParams: {};
|
|
28195
29534
|
jsonBody: {};
|
|
28196
29535
|
commonParams: {
|
|
28197
|
-
|
|
29536
|
+
user_identity_id?: string | undefined;
|
|
29537
|
+
user_identity_phone_number?: string | undefined;
|
|
29538
|
+
user_identity_email_address?: string | undefined;
|
|
29539
|
+
acs_system_id?: string | undefined;
|
|
29540
|
+
limit?: number;
|
|
28198
29541
|
};
|
|
28199
29542
|
formData: {};
|
|
28200
29543
|
jsonResponse: {
|
|
@@ -28229,6 +29572,7 @@ interface Routes {
|
|
|
28229
29572
|
email?: string | undefined;
|
|
28230
29573
|
email_address?: string | undefined;
|
|
28231
29574
|
phone_number?: string | undefined;
|
|
29575
|
+
is_managed: false;
|
|
28232
29576
|
}>;
|
|
28233
29577
|
};
|
|
28234
29578
|
};
|
|
@@ -39210,6 +40554,7 @@ interface Routes {
|
|
|
39210
40554
|
email?: string | undefined;
|
|
39211
40555
|
email_address?: string | undefined;
|
|
39212
40556
|
phone_number?: string | undefined;
|
|
40557
|
+
is_managed: true;
|
|
39213
40558
|
}>;
|
|
39214
40559
|
};
|
|
39215
40560
|
};
|