@seamapi/types 1.232.0 → 1.234.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 +523 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1352 -231
- 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 +648 -10
- package/lib/seam/connect/openapi.js +492 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +223 -11
- 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-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 +492 -3
- package/src/lib/seam/connect/route-types.ts +277 -1
- package/src/lib/seam/connect/schemas.ts +2 -0
package/dist/connect.d.cts
CHANGED
|
@@ -344,7 +344,7 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
344
344
|
}>;
|
|
345
345
|
type AcsAccessGroup = z.output<typeof acs_access_group>;
|
|
346
346
|
|
|
347
|
-
declare const acs_credential: z.ZodObject<{
|
|
347
|
+
declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
348
348
|
acs_credential_id: z.ZodString;
|
|
349
349
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
350
350
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
@@ -387,18 +387,167 @@ declare const acs_credential: z.ZodObject<{
|
|
|
387
387
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
388
388
|
guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
389
389
|
common_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
390
|
+
is_valid: z.ZodOptional<z.ZodBoolean>;
|
|
391
|
+
card_id: z.ZodOptional<z.ZodString>;
|
|
392
|
+
credential_id: z.ZodOptional<z.ZodString>;
|
|
390
393
|
}, "strip", z.ZodTypeAny, {
|
|
391
394
|
card_function_type: "guest" | "staff";
|
|
392
395
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
393
396
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
394
397
|
common_acs_entrance_ids?: string[] | undefined;
|
|
398
|
+
is_valid?: boolean | undefined;
|
|
399
|
+
card_id?: string | undefined;
|
|
400
|
+
credential_id?: string | undefined;
|
|
395
401
|
}, {
|
|
396
402
|
card_function_type: "guest" | "staff";
|
|
397
403
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
398
404
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
399
405
|
common_acs_entrance_ids?: string[] | undefined;
|
|
406
|
+
is_valid?: boolean | undefined;
|
|
407
|
+
card_id?: string | undefined;
|
|
408
|
+
credential_id?: string | undefined;
|
|
400
409
|
}>>;
|
|
401
|
-
},
|
|
410
|
+
}, {
|
|
411
|
+
is_managed: z.ZodLiteral<true>;
|
|
412
|
+
}>, "strip", z.ZodTypeAny, {
|
|
413
|
+
created_at: string;
|
|
414
|
+
errors: {
|
|
415
|
+
message: string;
|
|
416
|
+
error_code: string;
|
|
417
|
+
}[];
|
|
418
|
+
warnings: {
|
|
419
|
+
message: string;
|
|
420
|
+
warning_code: string;
|
|
421
|
+
}[];
|
|
422
|
+
display_name: string;
|
|
423
|
+
workspace_id: string;
|
|
424
|
+
is_managed: true;
|
|
425
|
+
acs_system_id: string;
|
|
426
|
+
acs_credential_id: string;
|
|
427
|
+
access_method: "code" | "card" | "mobile_key";
|
|
428
|
+
code?: string | null | undefined;
|
|
429
|
+
starts_at?: string | undefined;
|
|
430
|
+
ends_at?: string | undefined;
|
|
431
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
432
|
+
external_type_display_name?: string | undefined;
|
|
433
|
+
acs_user_id?: string | undefined;
|
|
434
|
+
acs_credential_pool_id?: string | undefined;
|
|
435
|
+
parent_acs_credential_id?: string | undefined;
|
|
436
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
437
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
438
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
439
|
+
visionline_metadata?: {
|
|
440
|
+
card_function_type: "guest" | "staff";
|
|
441
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
442
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
443
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
444
|
+
is_valid?: boolean | undefined;
|
|
445
|
+
card_id?: string | undefined;
|
|
446
|
+
credential_id?: string | undefined;
|
|
447
|
+
} | undefined;
|
|
448
|
+
}, {
|
|
449
|
+
created_at: string;
|
|
450
|
+
errors: {
|
|
451
|
+
message: string;
|
|
452
|
+
error_code: string;
|
|
453
|
+
}[];
|
|
454
|
+
warnings: {
|
|
455
|
+
message: string;
|
|
456
|
+
warning_code: string;
|
|
457
|
+
}[];
|
|
458
|
+
display_name: string;
|
|
459
|
+
workspace_id: string;
|
|
460
|
+
is_managed: true;
|
|
461
|
+
acs_system_id: string;
|
|
462
|
+
acs_credential_id: string;
|
|
463
|
+
access_method: "code" | "card" | "mobile_key";
|
|
464
|
+
code?: string | null | undefined;
|
|
465
|
+
starts_at?: string | undefined;
|
|
466
|
+
ends_at?: string | undefined;
|
|
467
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
468
|
+
external_type_display_name?: string | undefined;
|
|
469
|
+
acs_user_id?: string | undefined;
|
|
470
|
+
acs_credential_pool_id?: string | undefined;
|
|
471
|
+
parent_acs_credential_id?: string | undefined;
|
|
472
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
473
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
474
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
475
|
+
visionline_metadata?: {
|
|
476
|
+
card_function_type: "guest" | "staff";
|
|
477
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
478
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
479
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
480
|
+
is_valid?: boolean | undefined;
|
|
481
|
+
card_id?: string | undefined;
|
|
482
|
+
credential_id?: string | undefined;
|
|
483
|
+
} | undefined;
|
|
484
|
+
}>;
|
|
485
|
+
declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
486
|
+
acs_credential_id: z.ZodString;
|
|
487
|
+
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
488
|
+
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
489
|
+
acs_system_id: z.ZodString;
|
|
490
|
+
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
491
|
+
display_name: z.ZodString;
|
|
492
|
+
code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
493
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
494
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
495
|
+
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
496
|
+
created_at: z.ZodString;
|
|
497
|
+
workspace_id: z.ZodString;
|
|
498
|
+
starts_at: z.ZodOptional<z.ZodString>;
|
|
499
|
+
ends_at: z.ZodOptional<z.ZodString>;
|
|
500
|
+
errors: z.ZodArray<z.ZodObject<{
|
|
501
|
+
error_code: z.ZodString;
|
|
502
|
+
message: z.ZodString;
|
|
503
|
+
}, "strip", z.ZodTypeAny, {
|
|
504
|
+
message: string;
|
|
505
|
+
error_code: string;
|
|
506
|
+
}, {
|
|
507
|
+
message: string;
|
|
508
|
+
error_code: string;
|
|
509
|
+
}>, "many">;
|
|
510
|
+
warnings: z.ZodArray<z.ZodObject<{
|
|
511
|
+
warning_code: z.ZodString;
|
|
512
|
+
message: z.ZodString;
|
|
513
|
+
}, "strip", z.ZodTypeAny, {
|
|
514
|
+
message: string;
|
|
515
|
+
warning_code: string;
|
|
516
|
+
}, {
|
|
517
|
+
message: string;
|
|
518
|
+
warning_code: string;
|
|
519
|
+
}>, "many">;
|
|
520
|
+
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
521
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
522
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString>;
|
|
523
|
+
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
524
|
+
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
525
|
+
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
526
|
+
guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
527
|
+
common_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
528
|
+
is_valid: z.ZodOptional<z.ZodBoolean>;
|
|
529
|
+
card_id: z.ZodOptional<z.ZodString>;
|
|
530
|
+
credential_id: z.ZodOptional<z.ZodString>;
|
|
531
|
+
}, "strip", z.ZodTypeAny, {
|
|
532
|
+
card_function_type: "guest" | "staff";
|
|
533
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
534
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
535
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
536
|
+
is_valid?: boolean | undefined;
|
|
537
|
+
card_id?: string | undefined;
|
|
538
|
+
credential_id?: string | undefined;
|
|
539
|
+
}, {
|
|
540
|
+
card_function_type: "guest" | "staff";
|
|
541
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
542
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
543
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
544
|
+
is_valid?: boolean | undefined;
|
|
545
|
+
card_id?: string | undefined;
|
|
546
|
+
credential_id?: string | undefined;
|
|
547
|
+
}>>;
|
|
548
|
+
}, {
|
|
549
|
+
is_managed: z.ZodLiteral<false>;
|
|
550
|
+
}>, "strip", z.ZodTypeAny, {
|
|
402
551
|
created_at: string;
|
|
403
552
|
errors: {
|
|
404
553
|
message: string;
|
|
@@ -410,6 +559,7 @@ declare const acs_credential: z.ZodObject<{
|
|
|
410
559
|
}[];
|
|
411
560
|
display_name: string;
|
|
412
561
|
workspace_id: string;
|
|
562
|
+
is_managed: false;
|
|
413
563
|
acs_system_id: string;
|
|
414
564
|
acs_credential_id: string;
|
|
415
565
|
access_method: "code" | "card" | "mobile_key";
|
|
@@ -429,6 +579,9 @@ declare const acs_credential: z.ZodObject<{
|
|
|
429
579
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
430
580
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
431
581
|
common_acs_entrance_ids?: string[] | undefined;
|
|
582
|
+
is_valid?: boolean | undefined;
|
|
583
|
+
card_id?: string | undefined;
|
|
584
|
+
credential_id?: string | undefined;
|
|
432
585
|
} | undefined;
|
|
433
586
|
}, {
|
|
434
587
|
created_at: string;
|
|
@@ -442,6 +595,7 @@ declare const acs_credential: z.ZodObject<{
|
|
|
442
595
|
}[];
|
|
443
596
|
display_name: string;
|
|
444
597
|
workspace_id: string;
|
|
598
|
+
is_managed: false;
|
|
445
599
|
acs_system_id: string;
|
|
446
600
|
acs_credential_id: string;
|
|
447
601
|
access_method: "code" | "card" | "mobile_key";
|
|
@@ -461,6 +615,9 @@ declare const acs_credential: z.ZodObject<{
|
|
|
461
615
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
462
616
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
463
617
|
common_acs_entrance_ids?: string[] | undefined;
|
|
618
|
+
is_valid?: boolean | undefined;
|
|
619
|
+
card_id?: string | undefined;
|
|
620
|
+
credential_id?: string | undefined;
|
|
464
621
|
} | undefined;
|
|
465
622
|
}>;
|
|
466
623
|
type AcsCredential = z.output<typeof acs_credential>;
|
|
@@ -738,7 +895,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
738
895
|
}>;
|
|
739
896
|
type AcsSystem = z.output<typeof acs_system>;
|
|
740
897
|
|
|
741
|
-
declare const acs_user: z.ZodObject<z.objectUtil.extendShape<{
|
|
898
|
+
declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
742
899
|
acs_user_id: z.ZodString;
|
|
743
900
|
acs_system_id: z.ZodString;
|
|
744
901
|
hid_acs_system_id: z.ZodOptional<z.ZodString>;
|
|
@@ -783,6 +940,8 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
783
940
|
email: z.ZodOptional<z.ZodString>;
|
|
784
941
|
email_address: z.ZodOptional<z.ZodString>;
|
|
785
942
|
phone_number: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
943
|
+
}>, {
|
|
944
|
+
is_managed: z.ZodLiteral<true>;
|
|
786
945
|
}>, "strip", z.ZodTypeAny, {
|
|
787
946
|
created_at: string;
|
|
788
947
|
warnings: {
|
|
@@ -792,6 +951,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
792
951
|
}[];
|
|
793
952
|
display_name: string;
|
|
794
953
|
workspace_id: string;
|
|
954
|
+
is_managed: true;
|
|
795
955
|
acs_system_id: string;
|
|
796
956
|
acs_user_id: string;
|
|
797
957
|
is_suspended: boolean;
|
|
@@ -821,6 +981,115 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
821
981
|
}[];
|
|
822
982
|
display_name: string;
|
|
823
983
|
workspace_id: string;
|
|
984
|
+
is_managed: true;
|
|
985
|
+
acs_system_id: string;
|
|
986
|
+
acs_user_id: string;
|
|
987
|
+
is_suspended: boolean;
|
|
988
|
+
email?: string | undefined;
|
|
989
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
990
|
+
external_type_display_name?: string | undefined;
|
|
991
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
992
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
993
|
+
user_identity_id?: string | undefined;
|
|
994
|
+
full_name?: string | undefined;
|
|
995
|
+
email_address?: string | undefined;
|
|
996
|
+
phone_number?: string | undefined;
|
|
997
|
+
hid_acs_system_id?: string | undefined;
|
|
998
|
+
access_schedule?: {
|
|
999
|
+
starts_at: string;
|
|
1000
|
+
ends_at: string;
|
|
1001
|
+
} | undefined;
|
|
1002
|
+
user_identity_full_name?: string | null | undefined;
|
|
1003
|
+
user_identity_email_address?: string | null | undefined;
|
|
1004
|
+
user_identity_phone_number?: string | null | undefined;
|
|
1005
|
+
}>;
|
|
1006
|
+
declare const acs_unmanaged_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1007
|
+
acs_user_id: z.ZodString;
|
|
1008
|
+
acs_system_id: z.ZodString;
|
|
1009
|
+
hid_acs_system_id: z.ZodOptional<z.ZodString>;
|
|
1010
|
+
workspace_id: z.ZodString;
|
|
1011
|
+
created_at: z.ZodString;
|
|
1012
|
+
display_name: z.ZodString;
|
|
1013
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user"]>>;
|
|
1014
|
+
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1015
|
+
is_suspended: z.ZodBoolean;
|
|
1016
|
+
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
1017
|
+
starts_at: z.ZodString;
|
|
1018
|
+
ends_at: z.ZodString;
|
|
1019
|
+
}, "strip", z.ZodTypeAny, {
|
|
1020
|
+
starts_at: string;
|
|
1021
|
+
ends_at: string;
|
|
1022
|
+
}, {
|
|
1023
|
+
starts_at: string;
|
|
1024
|
+
ends_at: string;
|
|
1025
|
+
}>>;
|
|
1026
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
1027
|
+
user_identity_full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1028
|
+
user_identity_email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1029
|
+
user_identity_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1030
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString>;
|
|
1031
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
1032
|
+
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
1033
|
+
created_at: z.ZodString;
|
|
1034
|
+
message: z.ZodString;
|
|
1035
|
+
}, {
|
|
1036
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
1037
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1038
|
+
message: string;
|
|
1039
|
+
warning_code: "being_deleted";
|
|
1040
|
+
created_at: string;
|
|
1041
|
+
}, {
|
|
1042
|
+
message: string;
|
|
1043
|
+
warning_code: "being_deleted";
|
|
1044
|
+
created_at: string;
|
|
1045
|
+
}>, "many">;
|
|
1046
|
+
}, {
|
|
1047
|
+
full_name: z.ZodOptional<z.ZodString>;
|
|
1048
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1049
|
+
email_address: z.ZodOptional<z.ZodString>;
|
|
1050
|
+
phone_number: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1051
|
+
}>, {
|
|
1052
|
+
is_managed: z.ZodLiteral<false>;
|
|
1053
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1054
|
+
created_at: string;
|
|
1055
|
+
warnings: {
|
|
1056
|
+
message: string;
|
|
1057
|
+
warning_code: "being_deleted";
|
|
1058
|
+
created_at: string;
|
|
1059
|
+
}[];
|
|
1060
|
+
display_name: string;
|
|
1061
|
+
workspace_id: string;
|
|
1062
|
+
is_managed: false;
|
|
1063
|
+
acs_system_id: string;
|
|
1064
|
+
acs_user_id: string;
|
|
1065
|
+
is_suspended: boolean;
|
|
1066
|
+
email?: string | undefined;
|
|
1067
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
1068
|
+
external_type_display_name?: string | undefined;
|
|
1069
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1070
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1071
|
+
user_identity_id?: string | undefined;
|
|
1072
|
+
full_name?: string | undefined;
|
|
1073
|
+
email_address?: string | undefined;
|
|
1074
|
+
phone_number?: string | undefined;
|
|
1075
|
+
hid_acs_system_id?: string | undefined;
|
|
1076
|
+
access_schedule?: {
|
|
1077
|
+
starts_at: string;
|
|
1078
|
+
ends_at: string;
|
|
1079
|
+
} | undefined;
|
|
1080
|
+
user_identity_full_name?: string | null | undefined;
|
|
1081
|
+
user_identity_email_address?: string | null | undefined;
|
|
1082
|
+
user_identity_phone_number?: string | null | undefined;
|
|
1083
|
+
}, {
|
|
1084
|
+
created_at: string;
|
|
1085
|
+
warnings: {
|
|
1086
|
+
message: string;
|
|
1087
|
+
warning_code: "being_deleted";
|
|
1088
|
+
created_at: string;
|
|
1089
|
+
}[];
|
|
1090
|
+
display_name: string;
|
|
1091
|
+
workspace_id: string;
|
|
1092
|
+
is_managed: false;
|
|
824
1093
|
acs_system_id: string;
|
|
825
1094
|
acs_user_id: string;
|
|
826
1095
|
is_suspended: boolean;
|
|
@@ -8167,6 +8436,7 @@ declare const schemas_acs_access_group: typeof acs_access_group;
|
|
|
8167
8436
|
declare const schemas_acs_credential: typeof acs_credential;
|
|
8168
8437
|
declare const schemas_acs_entrance: typeof acs_entrance;
|
|
8169
8438
|
declare const schemas_acs_system: typeof acs_system;
|
|
8439
|
+
declare const schemas_acs_unmanaged_user: typeof acs_unmanaged_user;
|
|
8170
8440
|
declare const schemas_acs_user: typeof acs_user;
|
|
8171
8441
|
declare const schemas_action_attempt: typeof action_attempt;
|
|
8172
8442
|
declare const schemas_client_session: typeof client_session;
|
|
@@ -8179,12 +8449,13 @@ declare const schemas_device_provider: typeof device_provider;
|
|
|
8179
8449
|
declare const schemas_noise_threshold: typeof noise_threshold;
|
|
8180
8450
|
declare const schemas_seam_event: typeof seam_event;
|
|
8181
8451
|
declare const schemas_unmanaged_access_code: typeof unmanaged_access_code;
|
|
8452
|
+
declare const schemas_unmanaged_acs_credential: typeof unmanaged_acs_credential;
|
|
8182
8453
|
declare const schemas_unmanaged_device: typeof unmanaged_device;
|
|
8183
8454
|
declare const schemas_user_identity: typeof user_identity;
|
|
8184
8455
|
declare const schemas_webhook: typeof webhook;
|
|
8185
8456
|
declare const schemas_workspace: typeof workspace;
|
|
8186
8457
|
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 };
|
|
8458
|
+
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_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
8459
|
}
|
|
8189
8460
|
|
|
8190
8461
|
declare const _default: {
|
|
@@ -8469,6 +8740,10 @@ declare const _default: {
|
|
|
8469
8740
|
is_latest_desired_state_synced_with_provider: {
|
|
8470
8741
|
type: string;
|
|
8471
8742
|
};
|
|
8743
|
+
is_managed: {
|
|
8744
|
+
enum: boolean[];
|
|
8745
|
+
type: string;
|
|
8746
|
+
};
|
|
8472
8747
|
is_multi_phone_sync_credential: {
|
|
8473
8748
|
type: string;
|
|
8474
8749
|
};
|
|
@@ -8489,6 +8764,9 @@ declare const _default: {
|
|
|
8489
8764
|
enum: string[];
|
|
8490
8765
|
type: string;
|
|
8491
8766
|
};
|
|
8767
|
+
card_id: {
|
|
8768
|
+
type: string;
|
|
8769
|
+
};
|
|
8492
8770
|
common_acs_entrance_ids: {
|
|
8493
8771
|
items: {
|
|
8494
8772
|
format: string;
|
|
@@ -8496,6 +8774,9 @@ declare const _default: {
|
|
|
8496
8774
|
};
|
|
8497
8775
|
type: string;
|
|
8498
8776
|
};
|
|
8777
|
+
credential_id: {
|
|
8778
|
+
type: string;
|
|
8779
|
+
};
|
|
8499
8780
|
guest_acs_entrance_ids: {
|
|
8500
8781
|
items: {
|
|
8501
8782
|
format: string;
|
|
@@ -8503,6 +8784,9 @@ declare const _default: {
|
|
|
8503
8784
|
};
|
|
8504
8785
|
type: string;
|
|
8505
8786
|
};
|
|
8787
|
+
is_valid: {
|
|
8788
|
+
type: string;
|
|
8789
|
+
};
|
|
8506
8790
|
joiner_acs_credential_ids: {
|
|
8507
8791
|
items: {
|
|
8508
8792
|
format: string;
|
|
@@ -8903,6 +9187,10 @@ declare const _default: {
|
|
|
8903
9187
|
is_latest_desired_state_synced_with_provider: {
|
|
8904
9188
|
type: string;
|
|
8905
9189
|
};
|
|
9190
|
+
is_managed: {
|
|
9191
|
+
enum: boolean[];
|
|
9192
|
+
type: string;
|
|
9193
|
+
};
|
|
8906
9194
|
is_suspended: {
|
|
8907
9195
|
type: string;
|
|
8908
9196
|
};
|
|
@@ -9446,6 +9734,15 @@ declare const _default: {
|
|
|
9446
9734
|
};
|
|
9447
9735
|
device: {
|
|
9448
9736
|
properties: {
|
|
9737
|
+
can_hvac_cool: {
|
|
9738
|
+
type: string;
|
|
9739
|
+
};
|
|
9740
|
+
can_hvac_heat: {
|
|
9741
|
+
type: string;
|
|
9742
|
+
};
|
|
9743
|
+
can_hvac_heat_cool: {
|
|
9744
|
+
type: string;
|
|
9745
|
+
};
|
|
9449
9746
|
can_program_offline_access_codes: {
|
|
9450
9747
|
type: string;
|
|
9451
9748
|
};
|
|
@@ -9467,6 +9764,9 @@ declare const _default: {
|
|
|
9467
9764
|
can_simulate_removal: {
|
|
9468
9765
|
type: string;
|
|
9469
9766
|
};
|
|
9767
|
+
can_turn_off_hvac: {
|
|
9768
|
+
type: string;
|
|
9769
|
+
};
|
|
9470
9770
|
capabilities_supported: {
|
|
9471
9771
|
description: string;
|
|
9472
9772
|
items: {
|
|
@@ -10739,6 +11039,15 @@ declare const _default: {
|
|
|
10739
11039
|
};
|
|
10740
11040
|
device_provider: {
|
|
10741
11041
|
properties: {
|
|
11042
|
+
can_hvac_cool: {
|
|
11043
|
+
type: string;
|
|
11044
|
+
};
|
|
11045
|
+
can_hvac_heat: {
|
|
11046
|
+
type: string;
|
|
11047
|
+
};
|
|
11048
|
+
can_hvac_heat_cool: {
|
|
11049
|
+
type: string;
|
|
11050
|
+
};
|
|
10742
11051
|
can_program_offline_access_codes: {
|
|
10743
11052
|
type: string;
|
|
10744
11053
|
};
|
|
@@ -10760,6 +11069,9 @@ declare const _default: {
|
|
|
10760
11069
|
can_simulate_removal: {
|
|
10761
11070
|
type: string;
|
|
10762
11071
|
};
|
|
11072
|
+
can_turn_off_hvac: {
|
|
11073
|
+
type: string;
|
|
11074
|
+
};
|
|
10763
11075
|
device_provider_name: {
|
|
10764
11076
|
enum: string[];
|
|
10765
11077
|
type: string;
|
|
@@ -10917,6 +11229,15 @@ declare const _default: {
|
|
|
10917
11229
|
};
|
|
10918
11230
|
phone: {
|
|
10919
11231
|
properties: {
|
|
11232
|
+
can_hvac_cool: {
|
|
11233
|
+
type: string;
|
|
11234
|
+
};
|
|
11235
|
+
can_hvac_heat: {
|
|
11236
|
+
type: string;
|
|
11237
|
+
};
|
|
11238
|
+
can_hvac_heat_cool: {
|
|
11239
|
+
type: string;
|
|
11240
|
+
};
|
|
10920
11241
|
can_program_offline_access_codes: {
|
|
10921
11242
|
type: string;
|
|
10922
11243
|
};
|
|
@@ -10938,6 +11259,9 @@ declare const _default: {
|
|
|
10938
11259
|
can_simulate_removal: {
|
|
10939
11260
|
type: string;
|
|
10940
11261
|
};
|
|
11262
|
+
can_turn_off_hvac: {
|
|
11263
|
+
type: string;
|
|
11264
|
+
};
|
|
10941
11265
|
capabilities_supported: {
|
|
10942
11266
|
description: string;
|
|
10943
11267
|
items: {
|
|
@@ -11237,6 +11561,15 @@ declare const _default: {
|
|
|
11237
11561
|
};
|
|
11238
11562
|
unmanaged_device: {
|
|
11239
11563
|
properties: {
|
|
11564
|
+
can_hvac_cool: {
|
|
11565
|
+
type: string;
|
|
11566
|
+
};
|
|
11567
|
+
can_hvac_heat: {
|
|
11568
|
+
type: string;
|
|
11569
|
+
};
|
|
11570
|
+
can_hvac_heat_cool: {
|
|
11571
|
+
type: string;
|
|
11572
|
+
};
|
|
11240
11573
|
can_program_offline_access_codes: {
|
|
11241
11574
|
type: string;
|
|
11242
11575
|
};
|
|
@@ -11258,6 +11591,9 @@ declare const _default: {
|
|
|
11258
11591
|
can_simulate_removal: {
|
|
11259
11592
|
type: string;
|
|
11260
11593
|
};
|
|
11594
|
+
can_turn_off_hvac: {
|
|
11595
|
+
type: string;
|
|
11596
|
+
};
|
|
11261
11597
|
capabilities_supported: {
|
|
11262
11598
|
description: string;
|
|
11263
11599
|
items: {
|
|
@@ -14825,76 +15161,7 @@ declare const _default: {
|
|
|
14825
15161
|
'x-fern-sdk-method-name': string;
|
|
14826
15162
|
};
|
|
14827
15163
|
};
|
|
14828
|
-
'/acs/credentials/
|
|
14829
|
-
patch: {
|
|
14830
|
-
operationId: string;
|
|
14831
|
-
requestBody: {
|
|
14832
|
-
content: {
|
|
14833
|
-
'application/json': {
|
|
14834
|
-
schema: {
|
|
14835
|
-
properties: {
|
|
14836
|
-
acs_credential_id: {
|
|
14837
|
-
type: string;
|
|
14838
|
-
};
|
|
14839
|
-
code: {
|
|
14840
|
-
pattern: string;
|
|
14841
|
-
type: string;
|
|
14842
|
-
};
|
|
14843
|
-
ends_at: {
|
|
14844
|
-
format: string;
|
|
14845
|
-
type: string;
|
|
14846
|
-
};
|
|
14847
|
-
};
|
|
14848
|
-
required: string[];
|
|
14849
|
-
type: string;
|
|
14850
|
-
};
|
|
14851
|
-
};
|
|
14852
|
-
};
|
|
14853
|
-
};
|
|
14854
|
-
responses: {
|
|
14855
|
-
200: {
|
|
14856
|
-
content: {
|
|
14857
|
-
'application/json': {
|
|
14858
|
-
schema: {
|
|
14859
|
-
properties: {
|
|
14860
|
-
acs_credential: {
|
|
14861
|
-
$ref: string;
|
|
14862
|
-
};
|
|
14863
|
-
ok: {
|
|
14864
|
-
type: string;
|
|
14865
|
-
};
|
|
14866
|
-
};
|
|
14867
|
-
required: string[];
|
|
14868
|
-
type: string;
|
|
14869
|
-
};
|
|
14870
|
-
};
|
|
14871
|
-
};
|
|
14872
|
-
description: string;
|
|
14873
|
-
};
|
|
14874
|
-
400: {
|
|
14875
|
-
description: string;
|
|
14876
|
-
};
|
|
14877
|
-
401: {
|
|
14878
|
-
description: string;
|
|
14879
|
-
};
|
|
14880
|
-
};
|
|
14881
|
-
security: ({
|
|
14882
|
-
pat_with_workspace: never[];
|
|
14883
|
-
console_session?: never;
|
|
14884
|
-
api_key?: never;
|
|
14885
|
-
} | {
|
|
14886
|
-
console_session: never[];
|
|
14887
|
-
pat_with_workspace?: never;
|
|
14888
|
-
api_key?: never;
|
|
14889
|
-
} | {
|
|
14890
|
-
api_key: never[];
|
|
14891
|
-
pat_with_workspace?: never;
|
|
14892
|
-
console_session?: never;
|
|
14893
|
-
})[];
|
|
14894
|
-
summary: string;
|
|
14895
|
-
tags: string[];
|
|
14896
|
-
'x-fern-ignore': boolean;
|
|
14897
|
-
};
|
|
15164
|
+
'/acs/credentials/unmanaged/get': {
|
|
14898
15165
|
post: {
|
|
14899
15166
|
operationId: string;
|
|
14900
15167
|
requestBody: {
|
|
@@ -14903,13 +15170,6 @@ declare const _default: {
|
|
|
14903
15170
|
schema: {
|
|
14904
15171
|
properties: {
|
|
14905
15172
|
acs_credential_id: {
|
|
14906
|
-
type: string;
|
|
14907
|
-
};
|
|
14908
|
-
code: {
|
|
14909
|
-
pattern: string;
|
|
14910
|
-
type: string;
|
|
14911
|
-
};
|
|
14912
|
-
ends_at: {
|
|
14913
15173
|
format: string;
|
|
14914
15174
|
type: string;
|
|
14915
15175
|
};
|
|
@@ -14927,73 +15187,604 @@ declare const _default: {
|
|
|
14927
15187
|
schema: {
|
|
14928
15188
|
properties: {
|
|
14929
15189
|
acs_credential: {
|
|
14930
|
-
|
|
14931
|
-
|
|
14932
|
-
|
|
15190
|
+
properties: {
|
|
15191
|
+
access_method: {
|
|
15192
|
+
enum: string[];
|
|
15193
|
+
type: string;
|
|
15194
|
+
};
|
|
15195
|
+
acs_credential_id: {
|
|
15196
|
+
format: string;
|
|
15197
|
+
type: string;
|
|
15198
|
+
};
|
|
15199
|
+
acs_credential_pool_id: {
|
|
15200
|
+
format: string;
|
|
15201
|
+
type: string;
|
|
15202
|
+
};
|
|
15203
|
+
acs_system_id: {
|
|
15204
|
+
format: string;
|
|
15205
|
+
type: string;
|
|
15206
|
+
};
|
|
15207
|
+
acs_user_id: {
|
|
15208
|
+
format: string;
|
|
15209
|
+
type: string;
|
|
15210
|
+
};
|
|
15211
|
+
code: {
|
|
15212
|
+
nullable: boolean;
|
|
15213
|
+
type: string;
|
|
15214
|
+
};
|
|
15215
|
+
created_at: {
|
|
15216
|
+
format: string;
|
|
15217
|
+
type: string;
|
|
15218
|
+
};
|
|
15219
|
+
display_name: {
|
|
15220
|
+
minLength: number;
|
|
15221
|
+
type: string;
|
|
15222
|
+
};
|
|
15223
|
+
ends_at: {
|
|
15224
|
+
type: string;
|
|
15225
|
+
};
|
|
15226
|
+
errors: {
|
|
15227
|
+
items: {
|
|
15228
|
+
properties: {
|
|
15229
|
+
error_code: {
|
|
15230
|
+
type: string;
|
|
15231
|
+
};
|
|
15232
|
+
message: {
|
|
15233
|
+
type: string;
|
|
15234
|
+
};
|
|
15235
|
+
};
|
|
15236
|
+
required: string[];
|
|
15237
|
+
type: string;
|
|
15238
|
+
};
|
|
15239
|
+
type: string;
|
|
15240
|
+
};
|
|
15241
|
+
external_type: {
|
|
15242
|
+
enum: string[];
|
|
15243
|
+
type: string;
|
|
15244
|
+
};
|
|
15245
|
+
external_type_display_name: {
|
|
15246
|
+
type: string;
|
|
15247
|
+
};
|
|
15248
|
+
is_latest_desired_state_synced_with_provider: {
|
|
15249
|
+
type: string;
|
|
15250
|
+
};
|
|
15251
|
+
is_managed: {
|
|
15252
|
+
enum: boolean[];
|
|
15253
|
+
type: string;
|
|
15254
|
+
};
|
|
15255
|
+
is_multi_phone_sync_credential: {
|
|
15256
|
+
type: string;
|
|
15257
|
+
};
|
|
15258
|
+
latest_desired_state_synced_with_provider_at: {
|
|
15259
|
+
format: string;
|
|
15260
|
+
type: string;
|
|
15261
|
+
};
|
|
15262
|
+
parent_acs_credential_id: {
|
|
15263
|
+
format: string;
|
|
15264
|
+
type: string;
|
|
15265
|
+
};
|
|
15266
|
+
starts_at: {
|
|
15267
|
+
type: string;
|
|
15268
|
+
};
|
|
15269
|
+
visionline_metadata: {
|
|
15270
|
+
properties: {
|
|
15271
|
+
card_function_type: {
|
|
15272
|
+
enum: string[];
|
|
15273
|
+
type: string;
|
|
15274
|
+
};
|
|
15275
|
+
card_id: {
|
|
15276
|
+
type: string;
|
|
15277
|
+
};
|
|
15278
|
+
common_acs_entrance_ids: {
|
|
15279
|
+
items: {
|
|
15280
|
+
format: string;
|
|
15281
|
+
type: string;
|
|
15282
|
+
};
|
|
15283
|
+
type: string;
|
|
15284
|
+
};
|
|
15285
|
+
credential_id: {
|
|
15286
|
+
type: string;
|
|
15287
|
+
};
|
|
15288
|
+
guest_acs_entrance_ids: {
|
|
15289
|
+
items: {
|
|
15290
|
+
format: string;
|
|
15291
|
+
type: string;
|
|
15292
|
+
};
|
|
15293
|
+
type: string;
|
|
15294
|
+
};
|
|
15295
|
+
is_valid: {
|
|
15296
|
+
type: string;
|
|
15297
|
+
};
|
|
15298
|
+
joiner_acs_credential_ids: {
|
|
15299
|
+
items: {
|
|
15300
|
+
format: string;
|
|
15301
|
+
type: string;
|
|
15302
|
+
};
|
|
15303
|
+
type: string;
|
|
15304
|
+
};
|
|
15305
|
+
};
|
|
15306
|
+
required: string[];
|
|
15307
|
+
type: string;
|
|
15308
|
+
};
|
|
15309
|
+
warnings: {
|
|
15310
|
+
items: {
|
|
15311
|
+
properties: {
|
|
15312
|
+
message: {
|
|
15313
|
+
type: string;
|
|
15314
|
+
};
|
|
15315
|
+
warning_code: {
|
|
15316
|
+
type: string;
|
|
15317
|
+
};
|
|
15318
|
+
};
|
|
15319
|
+
required: string[];
|
|
15320
|
+
type: string;
|
|
15321
|
+
};
|
|
15322
|
+
type: string;
|
|
15323
|
+
};
|
|
15324
|
+
workspace_id: {
|
|
15325
|
+
format: string;
|
|
15326
|
+
type: string;
|
|
15327
|
+
};
|
|
15328
|
+
};
|
|
15329
|
+
required: string[];
|
|
14933
15330
|
type: string;
|
|
14934
15331
|
};
|
|
14935
|
-
|
|
14936
|
-
|
|
14937
|
-
|
|
14938
|
-
|
|
14939
|
-
|
|
14940
|
-
|
|
14941
|
-
|
|
14942
|
-
|
|
14943
|
-
|
|
14944
|
-
description: string;
|
|
14945
|
-
};
|
|
14946
|
-
|
|
14947
|
-
description: string;
|
|
14948
|
-
};
|
|
14949
|
-
|
|
14950
|
-
|
|
14951
|
-
|
|
14952
|
-
|
|
14953
|
-
|
|
14954
|
-
|
|
14955
|
-
console_session
|
|
14956
|
-
|
|
14957
|
-
|
|
14958
|
-
|
|
14959
|
-
|
|
14960
|
-
|
|
14961
|
-
|
|
14962
|
-
|
|
14963
|
-
|
|
14964
|
-
|
|
14965
|
-
|
|
14966
|
-
|
|
14967
|
-
|
|
14968
|
-
|
|
14969
|
-
|
|
14970
|
-
|
|
14971
|
-
|
|
14972
|
-
|
|
14973
|
-
|
|
14974
|
-
|
|
14975
|
-
|
|
14976
|
-
|
|
14977
|
-
|
|
14978
|
-
|
|
14979
|
-
|
|
14980
|
-
|
|
14981
|
-
|
|
14982
|
-
|
|
14983
|
-
|
|
14984
|
-
|
|
14985
|
-
|
|
14986
|
-
|
|
14987
|
-
|
|
14988
|
-
|
|
14989
|
-
|
|
14990
|
-
|
|
14991
|
-
|
|
14992
|
-
|
|
14993
|
-
|
|
14994
|
-
|
|
14995
|
-
|
|
14996
|
-
};
|
|
15332
|
+
ok: {
|
|
15333
|
+
type: string;
|
|
15334
|
+
};
|
|
15335
|
+
};
|
|
15336
|
+
required: string[];
|
|
15337
|
+
type: string;
|
|
15338
|
+
};
|
|
15339
|
+
};
|
|
15340
|
+
};
|
|
15341
|
+
description: string;
|
|
15342
|
+
};
|
|
15343
|
+
400: {
|
|
15344
|
+
description: string;
|
|
15345
|
+
};
|
|
15346
|
+
401: {
|
|
15347
|
+
description: string;
|
|
15348
|
+
};
|
|
15349
|
+
};
|
|
15350
|
+
security: ({
|
|
15351
|
+
pat_with_workspace: never[];
|
|
15352
|
+
console_session?: never;
|
|
15353
|
+
api_key?: never;
|
|
15354
|
+
} | {
|
|
15355
|
+
console_session: never[];
|
|
15356
|
+
pat_with_workspace?: never;
|
|
15357
|
+
api_key?: never;
|
|
15358
|
+
} | {
|
|
15359
|
+
api_key: never[];
|
|
15360
|
+
pat_with_workspace?: never;
|
|
15361
|
+
console_session?: never;
|
|
15362
|
+
})[];
|
|
15363
|
+
summary: string;
|
|
15364
|
+
tags: string[];
|
|
15365
|
+
'x-fern-sdk-group-name': string[];
|
|
15366
|
+
'x-fern-sdk-method-name': string;
|
|
15367
|
+
'x-fern-sdk-return-value': string;
|
|
15368
|
+
};
|
|
15369
|
+
};
|
|
15370
|
+
'/acs/credentials/unmanaged/list': {
|
|
15371
|
+
post: {
|
|
15372
|
+
operationId: string;
|
|
15373
|
+
requestBody: {
|
|
15374
|
+
content: {
|
|
15375
|
+
'application/json': {
|
|
15376
|
+
schema: {
|
|
15377
|
+
oneOf: ({
|
|
15378
|
+
properties: {
|
|
15379
|
+
acs_user_id: {
|
|
15380
|
+
format: string;
|
|
15381
|
+
type: string;
|
|
15382
|
+
};
|
|
15383
|
+
acs_system_id?: never;
|
|
15384
|
+
user_identity_id?: never;
|
|
15385
|
+
};
|
|
15386
|
+
required: string[];
|
|
15387
|
+
type: string;
|
|
15388
|
+
} | {
|
|
15389
|
+
properties: {
|
|
15390
|
+
acs_system_id: {
|
|
15391
|
+
format: string;
|
|
15392
|
+
type: string;
|
|
15393
|
+
};
|
|
15394
|
+
acs_user_id?: never;
|
|
15395
|
+
user_identity_id?: never;
|
|
15396
|
+
};
|
|
15397
|
+
required: string[];
|
|
15398
|
+
type: string;
|
|
15399
|
+
} | {
|
|
15400
|
+
properties: {
|
|
15401
|
+
acs_system_id: {
|
|
15402
|
+
format: string;
|
|
15403
|
+
type: string;
|
|
15404
|
+
};
|
|
15405
|
+
acs_user_id: {
|
|
15406
|
+
format: string;
|
|
15407
|
+
type: string;
|
|
15408
|
+
};
|
|
15409
|
+
user_identity_id?: never;
|
|
15410
|
+
};
|
|
15411
|
+
required: string[];
|
|
15412
|
+
type: string;
|
|
15413
|
+
} | {
|
|
15414
|
+
properties: {
|
|
15415
|
+
user_identity_id: {
|
|
15416
|
+
format: string;
|
|
15417
|
+
type: string;
|
|
15418
|
+
};
|
|
15419
|
+
acs_user_id?: never;
|
|
15420
|
+
acs_system_id?: never;
|
|
15421
|
+
};
|
|
15422
|
+
required: string[];
|
|
15423
|
+
type: string;
|
|
15424
|
+
})[];
|
|
15425
|
+
};
|
|
15426
|
+
};
|
|
15427
|
+
};
|
|
15428
|
+
};
|
|
15429
|
+
responses: {
|
|
15430
|
+
200: {
|
|
15431
|
+
content: {
|
|
15432
|
+
'application/json': {
|
|
15433
|
+
schema: {
|
|
15434
|
+
properties: {
|
|
15435
|
+
acs_credentials: {
|
|
15436
|
+
items: {
|
|
15437
|
+
properties: {
|
|
15438
|
+
access_method: {
|
|
15439
|
+
enum: string[];
|
|
15440
|
+
type: string;
|
|
15441
|
+
};
|
|
15442
|
+
acs_credential_id: {
|
|
15443
|
+
format: string;
|
|
15444
|
+
type: string;
|
|
15445
|
+
};
|
|
15446
|
+
acs_credential_pool_id: {
|
|
15447
|
+
format: string;
|
|
15448
|
+
type: string;
|
|
15449
|
+
};
|
|
15450
|
+
acs_system_id: {
|
|
15451
|
+
format: string;
|
|
15452
|
+
type: string;
|
|
15453
|
+
};
|
|
15454
|
+
acs_user_id: {
|
|
15455
|
+
format: string;
|
|
15456
|
+
type: string;
|
|
15457
|
+
};
|
|
15458
|
+
code: {
|
|
15459
|
+
nullable: boolean;
|
|
15460
|
+
type: string;
|
|
15461
|
+
};
|
|
15462
|
+
created_at: {
|
|
15463
|
+
format: string;
|
|
15464
|
+
type: string;
|
|
15465
|
+
};
|
|
15466
|
+
display_name: {
|
|
15467
|
+
minLength: number;
|
|
15468
|
+
type: string;
|
|
15469
|
+
};
|
|
15470
|
+
ends_at: {
|
|
15471
|
+
type: string;
|
|
15472
|
+
};
|
|
15473
|
+
errors: {
|
|
15474
|
+
items: {
|
|
15475
|
+
properties: {
|
|
15476
|
+
error_code: {
|
|
15477
|
+
type: string;
|
|
15478
|
+
};
|
|
15479
|
+
message: {
|
|
15480
|
+
type: string;
|
|
15481
|
+
};
|
|
15482
|
+
};
|
|
15483
|
+
required: string[];
|
|
15484
|
+
type: string;
|
|
15485
|
+
};
|
|
15486
|
+
type: string;
|
|
15487
|
+
};
|
|
15488
|
+
external_type: {
|
|
15489
|
+
enum: string[];
|
|
15490
|
+
type: string;
|
|
15491
|
+
};
|
|
15492
|
+
external_type_display_name: {
|
|
15493
|
+
type: string;
|
|
15494
|
+
};
|
|
15495
|
+
is_latest_desired_state_synced_with_provider: {
|
|
15496
|
+
type: string;
|
|
15497
|
+
};
|
|
15498
|
+
is_managed: {
|
|
15499
|
+
enum: boolean[];
|
|
15500
|
+
type: string;
|
|
15501
|
+
};
|
|
15502
|
+
is_multi_phone_sync_credential: {
|
|
15503
|
+
type: string;
|
|
15504
|
+
};
|
|
15505
|
+
latest_desired_state_synced_with_provider_at: {
|
|
15506
|
+
format: string;
|
|
15507
|
+
type: string;
|
|
15508
|
+
};
|
|
15509
|
+
parent_acs_credential_id: {
|
|
15510
|
+
format: string;
|
|
15511
|
+
type: string;
|
|
15512
|
+
};
|
|
15513
|
+
starts_at: {
|
|
15514
|
+
type: string;
|
|
15515
|
+
};
|
|
15516
|
+
visionline_metadata: {
|
|
15517
|
+
properties: {
|
|
15518
|
+
card_function_type: {
|
|
15519
|
+
enum: string[];
|
|
15520
|
+
type: string;
|
|
15521
|
+
};
|
|
15522
|
+
card_id: {
|
|
15523
|
+
type: string;
|
|
15524
|
+
};
|
|
15525
|
+
common_acs_entrance_ids: {
|
|
15526
|
+
items: {
|
|
15527
|
+
format: string;
|
|
15528
|
+
type: string;
|
|
15529
|
+
};
|
|
15530
|
+
type: string;
|
|
15531
|
+
};
|
|
15532
|
+
credential_id: {
|
|
15533
|
+
type: string;
|
|
15534
|
+
};
|
|
15535
|
+
guest_acs_entrance_ids: {
|
|
15536
|
+
items: {
|
|
15537
|
+
format: string;
|
|
15538
|
+
type: string;
|
|
15539
|
+
};
|
|
15540
|
+
type: string;
|
|
15541
|
+
};
|
|
15542
|
+
is_valid: {
|
|
15543
|
+
type: string;
|
|
15544
|
+
};
|
|
15545
|
+
joiner_acs_credential_ids: {
|
|
15546
|
+
items: {
|
|
15547
|
+
format: string;
|
|
15548
|
+
type: string;
|
|
15549
|
+
};
|
|
15550
|
+
type: string;
|
|
15551
|
+
};
|
|
15552
|
+
};
|
|
15553
|
+
required: string[];
|
|
15554
|
+
type: string;
|
|
15555
|
+
};
|
|
15556
|
+
warnings: {
|
|
15557
|
+
items: {
|
|
15558
|
+
properties: {
|
|
15559
|
+
message: {
|
|
15560
|
+
type: string;
|
|
15561
|
+
};
|
|
15562
|
+
warning_code: {
|
|
15563
|
+
type: string;
|
|
15564
|
+
};
|
|
15565
|
+
};
|
|
15566
|
+
required: string[];
|
|
15567
|
+
type: string;
|
|
15568
|
+
};
|
|
15569
|
+
type: string;
|
|
15570
|
+
};
|
|
15571
|
+
workspace_id: {
|
|
15572
|
+
format: string;
|
|
15573
|
+
type: string;
|
|
15574
|
+
};
|
|
15575
|
+
};
|
|
15576
|
+
required: string[];
|
|
15577
|
+
type: string;
|
|
15578
|
+
};
|
|
15579
|
+
type: string;
|
|
15580
|
+
};
|
|
15581
|
+
ok: {
|
|
15582
|
+
type: string;
|
|
15583
|
+
};
|
|
15584
|
+
};
|
|
15585
|
+
required: string[];
|
|
15586
|
+
type: string;
|
|
15587
|
+
};
|
|
15588
|
+
};
|
|
15589
|
+
};
|
|
15590
|
+
description: string;
|
|
15591
|
+
};
|
|
15592
|
+
400: {
|
|
15593
|
+
description: string;
|
|
15594
|
+
};
|
|
15595
|
+
401: {
|
|
15596
|
+
description: string;
|
|
15597
|
+
};
|
|
15598
|
+
};
|
|
15599
|
+
security: ({
|
|
15600
|
+
api_key: never[];
|
|
15601
|
+
pat_with_workspace?: never;
|
|
15602
|
+
console_session?: never;
|
|
15603
|
+
} | {
|
|
15604
|
+
pat_with_workspace: never[];
|
|
15605
|
+
api_key?: never;
|
|
15606
|
+
console_session?: never;
|
|
15607
|
+
} | {
|
|
15608
|
+
console_session: never[];
|
|
15609
|
+
api_key?: never;
|
|
15610
|
+
pat_with_workspace?: never;
|
|
15611
|
+
})[];
|
|
15612
|
+
summary: string;
|
|
15613
|
+
tags: string[];
|
|
15614
|
+
'x-fern-sdk-group-name': string[];
|
|
15615
|
+
'x-fern-sdk-method-name': string;
|
|
15616
|
+
'x-fern-sdk-return-value': string;
|
|
15617
|
+
};
|
|
15618
|
+
};
|
|
15619
|
+
'/acs/credentials/update': {
|
|
15620
|
+
patch: {
|
|
15621
|
+
operationId: string;
|
|
15622
|
+
requestBody: {
|
|
15623
|
+
content: {
|
|
15624
|
+
'application/json': {
|
|
15625
|
+
schema: {
|
|
15626
|
+
properties: {
|
|
15627
|
+
acs_credential_id: {
|
|
15628
|
+
type: string;
|
|
15629
|
+
};
|
|
15630
|
+
code: {
|
|
15631
|
+
pattern: string;
|
|
15632
|
+
type: string;
|
|
15633
|
+
};
|
|
15634
|
+
ends_at: {
|
|
15635
|
+
format: string;
|
|
15636
|
+
type: string;
|
|
15637
|
+
};
|
|
15638
|
+
};
|
|
15639
|
+
required: string[];
|
|
15640
|
+
type: string;
|
|
15641
|
+
};
|
|
15642
|
+
};
|
|
15643
|
+
};
|
|
15644
|
+
};
|
|
15645
|
+
responses: {
|
|
15646
|
+
200: {
|
|
15647
|
+
content: {
|
|
15648
|
+
'application/json': {
|
|
15649
|
+
schema: {
|
|
15650
|
+
properties: {
|
|
15651
|
+
acs_credential: {
|
|
15652
|
+
$ref: string;
|
|
15653
|
+
};
|
|
15654
|
+
ok: {
|
|
15655
|
+
type: string;
|
|
15656
|
+
};
|
|
15657
|
+
};
|
|
15658
|
+
required: string[];
|
|
15659
|
+
type: string;
|
|
15660
|
+
};
|
|
15661
|
+
};
|
|
15662
|
+
};
|
|
15663
|
+
description: string;
|
|
15664
|
+
};
|
|
15665
|
+
400: {
|
|
15666
|
+
description: string;
|
|
15667
|
+
};
|
|
15668
|
+
401: {
|
|
15669
|
+
description: string;
|
|
15670
|
+
};
|
|
15671
|
+
};
|
|
15672
|
+
security: ({
|
|
15673
|
+
pat_with_workspace: never[];
|
|
15674
|
+
console_session?: never;
|
|
15675
|
+
api_key?: never;
|
|
15676
|
+
} | {
|
|
15677
|
+
console_session: never[];
|
|
15678
|
+
pat_with_workspace?: never;
|
|
15679
|
+
api_key?: never;
|
|
15680
|
+
} | {
|
|
15681
|
+
api_key: never[];
|
|
15682
|
+
pat_with_workspace?: never;
|
|
15683
|
+
console_session?: never;
|
|
15684
|
+
})[];
|
|
15685
|
+
summary: string;
|
|
15686
|
+
tags: string[];
|
|
15687
|
+
'x-fern-ignore': boolean;
|
|
15688
|
+
};
|
|
15689
|
+
post: {
|
|
15690
|
+
operationId: string;
|
|
15691
|
+
requestBody: {
|
|
15692
|
+
content: {
|
|
15693
|
+
'application/json': {
|
|
15694
|
+
schema: {
|
|
15695
|
+
properties: {
|
|
15696
|
+
acs_credential_id: {
|
|
15697
|
+
type: string;
|
|
15698
|
+
};
|
|
15699
|
+
code: {
|
|
15700
|
+
pattern: string;
|
|
15701
|
+
type: string;
|
|
15702
|
+
};
|
|
15703
|
+
ends_at: {
|
|
15704
|
+
format: string;
|
|
15705
|
+
type: string;
|
|
15706
|
+
};
|
|
15707
|
+
};
|
|
15708
|
+
required: string[];
|
|
15709
|
+
type: string;
|
|
15710
|
+
};
|
|
15711
|
+
};
|
|
15712
|
+
};
|
|
15713
|
+
};
|
|
15714
|
+
responses: {
|
|
15715
|
+
200: {
|
|
15716
|
+
content: {
|
|
15717
|
+
'application/json': {
|
|
15718
|
+
schema: {
|
|
15719
|
+
properties: {
|
|
15720
|
+
acs_credential: {
|
|
15721
|
+
$ref: string;
|
|
15722
|
+
};
|
|
15723
|
+
ok: {
|
|
15724
|
+
type: string;
|
|
15725
|
+
};
|
|
15726
|
+
};
|
|
15727
|
+
required: string[];
|
|
15728
|
+
type: string;
|
|
15729
|
+
};
|
|
15730
|
+
};
|
|
15731
|
+
};
|
|
15732
|
+
description: string;
|
|
15733
|
+
};
|
|
15734
|
+
400: {
|
|
15735
|
+
description: string;
|
|
15736
|
+
};
|
|
15737
|
+
401: {
|
|
15738
|
+
description: string;
|
|
15739
|
+
};
|
|
15740
|
+
};
|
|
15741
|
+
security: ({
|
|
15742
|
+
pat_with_workspace: never[];
|
|
15743
|
+
console_session?: never;
|
|
15744
|
+
api_key?: never;
|
|
15745
|
+
} | {
|
|
15746
|
+
console_session: never[];
|
|
15747
|
+
pat_with_workspace?: never;
|
|
15748
|
+
api_key?: never;
|
|
15749
|
+
} | {
|
|
15750
|
+
api_key: never[];
|
|
15751
|
+
pat_with_workspace?: never;
|
|
15752
|
+
console_session?: never;
|
|
15753
|
+
})[];
|
|
15754
|
+
summary: string;
|
|
15755
|
+
tags: string[];
|
|
15756
|
+
'x-fern-sdk-group-name': string[];
|
|
15757
|
+
'x-fern-sdk-method-name': string;
|
|
15758
|
+
};
|
|
15759
|
+
};
|
|
15760
|
+
'/acs/entrances/get': {
|
|
15761
|
+
post: {
|
|
15762
|
+
operationId: string;
|
|
15763
|
+
requestBody: {
|
|
15764
|
+
content: {
|
|
15765
|
+
'application/json': {
|
|
15766
|
+
schema: {
|
|
15767
|
+
properties: {
|
|
15768
|
+
acs_entrance_id: {
|
|
15769
|
+
format: string;
|
|
15770
|
+
type: string;
|
|
15771
|
+
};
|
|
15772
|
+
};
|
|
15773
|
+
required: string[];
|
|
15774
|
+
type: string;
|
|
15775
|
+
};
|
|
15776
|
+
};
|
|
15777
|
+
};
|
|
15778
|
+
};
|
|
15779
|
+
responses: {
|
|
15780
|
+
200: {
|
|
15781
|
+
content: {
|
|
15782
|
+
'application/json': {
|
|
15783
|
+
schema: {
|
|
15784
|
+
properties: {
|
|
15785
|
+
acs_entrance: {
|
|
15786
|
+
$ref: string;
|
|
15787
|
+
};
|
|
14997
15788
|
ok: {
|
|
14998
15789
|
type: string;
|
|
14999
15790
|
};
|
|
@@ -16267,92 +17058,210 @@ declare const _default: {
|
|
|
16267
17058
|
};
|
|
16268
17059
|
};
|
|
16269
17060
|
security: ({
|
|
16270
|
-
pat_with_workspace: never[];
|
|
16271
|
-
console_session?: never;
|
|
16272
|
-
api_key?: never;
|
|
16273
|
-
} | {
|
|
16274
|
-
console_session: never[];
|
|
16275
|
-
pat_with_workspace?: never;
|
|
16276
|
-
api_key?: never;
|
|
16277
|
-
} | {
|
|
16278
|
-
api_key: never[];
|
|
16279
|
-
pat_with_workspace?: never;
|
|
16280
|
-
console_session?: never;
|
|
16281
|
-
})[];
|
|
16282
|
-
summary: string;
|
|
16283
|
-
tags: string[];
|
|
16284
|
-
'x-fern-sdk-group-name': string[];
|
|
16285
|
-
'x-fern-sdk-method-name': string;
|
|
16286
|
-
'x-fern-sdk-return-value': string;
|
|
16287
|
-
};
|
|
16288
|
-
};
|
|
16289
|
-
'/acs/users/unmanaged/list': {
|
|
16290
|
-
post: {
|
|
16291
|
-
operationId: string;
|
|
16292
|
-
requestBody: {
|
|
16293
|
-
content: {
|
|
16294
|
-
'application/json': {
|
|
16295
|
-
schema: {
|
|
16296
|
-
properties: {
|
|
16297
|
-
acs_system_id: {
|
|
16298
|
-
format: string;
|
|
16299
|
-
type: string;
|
|
16300
|
-
};
|
|
16301
|
-
};
|
|
16302
|
-
required: string[];
|
|
16303
|
-
type: string;
|
|
16304
|
-
};
|
|
16305
|
-
};
|
|
16306
|
-
};
|
|
16307
|
-
};
|
|
16308
|
-
responses: {
|
|
16309
|
-
200: {
|
|
16310
|
-
content: {
|
|
16311
|
-
'application/json': {
|
|
16312
|
-
schema: {
|
|
16313
|
-
properties: {
|
|
16314
|
-
acs_users: {
|
|
16315
|
-
items: {
|
|
16316
|
-
$ref: string;
|
|
16317
|
-
};
|
|
16318
|
-
type: string;
|
|
16319
|
-
};
|
|
16320
|
-
ok: {
|
|
16321
|
-
type: string;
|
|
16322
|
-
};
|
|
16323
|
-
};
|
|
16324
|
-
required: string[];
|
|
16325
|
-
type: string;
|
|
16326
|
-
};
|
|
16327
|
-
};
|
|
16328
|
-
};
|
|
16329
|
-
description: string;
|
|
16330
|
-
};
|
|
16331
|
-
400: {
|
|
16332
|
-
description: string;
|
|
16333
|
-
};
|
|
16334
|
-
401: {
|
|
16335
|
-
description: string;
|
|
16336
|
-
};
|
|
16337
|
-
};
|
|
16338
|
-
security: ({
|
|
16339
|
-
client_session: never[];
|
|
16340
|
-
pat_with_workspace?: never;
|
|
17061
|
+
pat_with_workspace: never[];
|
|
16341
17062
|
console_session?: never;
|
|
16342
17063
|
api_key?: never;
|
|
16343
17064
|
} | {
|
|
17065
|
+
console_session: never[];
|
|
17066
|
+
pat_with_workspace?: never;
|
|
17067
|
+
api_key?: never;
|
|
17068
|
+
} | {
|
|
17069
|
+
api_key: never[];
|
|
17070
|
+
pat_with_workspace?: never;
|
|
17071
|
+
console_session?: never;
|
|
17072
|
+
})[];
|
|
17073
|
+
summary: string;
|
|
17074
|
+
tags: string[];
|
|
17075
|
+
'x-fern-sdk-group-name': string[];
|
|
17076
|
+
'x-fern-sdk-method-name': string;
|
|
17077
|
+
'x-fern-sdk-return-value': string;
|
|
17078
|
+
};
|
|
17079
|
+
};
|
|
17080
|
+
'/acs/users/unmanaged/list': {
|
|
17081
|
+
post: {
|
|
17082
|
+
operationId: string;
|
|
17083
|
+
requestBody: {
|
|
17084
|
+
content: {
|
|
17085
|
+
'application/json': {
|
|
17086
|
+
schema: {
|
|
17087
|
+
properties: {
|
|
17088
|
+
acs_system_id: {
|
|
17089
|
+
format: string;
|
|
17090
|
+
type: string;
|
|
17091
|
+
};
|
|
17092
|
+
limit: {
|
|
17093
|
+
default: number;
|
|
17094
|
+
format: string;
|
|
17095
|
+
type: string;
|
|
17096
|
+
};
|
|
17097
|
+
user_identity_email_address: {
|
|
17098
|
+
type: string;
|
|
17099
|
+
};
|
|
17100
|
+
user_identity_id: {
|
|
17101
|
+
format: string;
|
|
17102
|
+
type: string;
|
|
17103
|
+
};
|
|
17104
|
+
user_identity_phone_number: {
|
|
17105
|
+
type: string;
|
|
17106
|
+
};
|
|
17107
|
+
};
|
|
17108
|
+
type: string;
|
|
17109
|
+
};
|
|
17110
|
+
};
|
|
17111
|
+
};
|
|
17112
|
+
};
|
|
17113
|
+
responses: {
|
|
17114
|
+
200: {
|
|
17115
|
+
content: {
|
|
17116
|
+
'application/json': {
|
|
17117
|
+
schema: {
|
|
17118
|
+
properties: {
|
|
17119
|
+
acs_users: {
|
|
17120
|
+
items: {
|
|
17121
|
+
properties: {
|
|
17122
|
+
access_schedule: {
|
|
17123
|
+
properties: {
|
|
17124
|
+
ends_at: {
|
|
17125
|
+
format: string;
|
|
17126
|
+
type: string;
|
|
17127
|
+
};
|
|
17128
|
+
starts_at: {
|
|
17129
|
+
format: string;
|
|
17130
|
+
type: string;
|
|
17131
|
+
};
|
|
17132
|
+
};
|
|
17133
|
+
required: string[];
|
|
17134
|
+
type: string;
|
|
17135
|
+
};
|
|
17136
|
+
acs_system_id: {
|
|
17137
|
+
format: string;
|
|
17138
|
+
type: string;
|
|
17139
|
+
};
|
|
17140
|
+
acs_user_id: {
|
|
17141
|
+
format: string;
|
|
17142
|
+
type: string;
|
|
17143
|
+
};
|
|
17144
|
+
created_at: {
|
|
17145
|
+
format: string;
|
|
17146
|
+
type: string;
|
|
17147
|
+
};
|
|
17148
|
+
display_name: {
|
|
17149
|
+
type: string;
|
|
17150
|
+
};
|
|
17151
|
+
email: {
|
|
17152
|
+
deprecated: boolean;
|
|
17153
|
+
format: string;
|
|
17154
|
+
type: string;
|
|
17155
|
+
'x-deprecated': string;
|
|
17156
|
+
};
|
|
17157
|
+
email_address: {
|
|
17158
|
+
format: string;
|
|
17159
|
+
type: string;
|
|
17160
|
+
};
|
|
17161
|
+
external_type: {
|
|
17162
|
+
enum: string[];
|
|
17163
|
+
type: string;
|
|
17164
|
+
};
|
|
17165
|
+
external_type_display_name: {
|
|
17166
|
+
type: string;
|
|
17167
|
+
};
|
|
17168
|
+
full_name: {
|
|
17169
|
+
type: string;
|
|
17170
|
+
};
|
|
17171
|
+
hid_acs_system_id: {
|
|
17172
|
+
format: string;
|
|
17173
|
+
type: string;
|
|
17174
|
+
};
|
|
17175
|
+
is_latest_desired_state_synced_with_provider: {
|
|
17176
|
+
type: string;
|
|
17177
|
+
};
|
|
17178
|
+
is_managed: {
|
|
17179
|
+
enum: boolean[];
|
|
17180
|
+
type: string;
|
|
17181
|
+
};
|
|
17182
|
+
is_suspended: {
|
|
17183
|
+
type: string;
|
|
17184
|
+
};
|
|
17185
|
+
latest_desired_state_synced_with_provider_at: {
|
|
17186
|
+
format: string;
|
|
17187
|
+
type: string;
|
|
17188
|
+
};
|
|
17189
|
+
phone_number: {
|
|
17190
|
+
type: string;
|
|
17191
|
+
};
|
|
17192
|
+
user_identity_email_address: {
|
|
17193
|
+
nullable: boolean;
|
|
17194
|
+
type: string;
|
|
17195
|
+
};
|
|
17196
|
+
user_identity_full_name: {
|
|
17197
|
+
nullable: boolean;
|
|
17198
|
+
type: string;
|
|
17199
|
+
};
|
|
17200
|
+
user_identity_id: {
|
|
17201
|
+
type: string;
|
|
17202
|
+
};
|
|
17203
|
+
user_identity_phone_number: {
|
|
17204
|
+
nullable: boolean;
|
|
17205
|
+
type: string;
|
|
17206
|
+
};
|
|
17207
|
+
warnings: {
|
|
17208
|
+
items: {
|
|
17209
|
+
properties: {
|
|
17210
|
+
created_at: {
|
|
17211
|
+
format: string;
|
|
17212
|
+
type: string;
|
|
17213
|
+
};
|
|
17214
|
+
message: {
|
|
17215
|
+
type: string;
|
|
17216
|
+
};
|
|
17217
|
+
warning_code: {
|
|
17218
|
+
enum: string[];
|
|
17219
|
+
type: string;
|
|
17220
|
+
};
|
|
17221
|
+
};
|
|
17222
|
+
required: string[];
|
|
17223
|
+
type: string;
|
|
17224
|
+
};
|
|
17225
|
+
type: string;
|
|
17226
|
+
};
|
|
17227
|
+
workspace_id: {
|
|
17228
|
+
format: string;
|
|
17229
|
+
type: string;
|
|
17230
|
+
};
|
|
17231
|
+
};
|
|
17232
|
+
required: string[];
|
|
17233
|
+
type: string;
|
|
17234
|
+
};
|
|
17235
|
+
type: string;
|
|
17236
|
+
};
|
|
17237
|
+
ok: {
|
|
17238
|
+
type: string;
|
|
17239
|
+
};
|
|
17240
|
+
};
|
|
17241
|
+
required: string[];
|
|
17242
|
+
type: string;
|
|
17243
|
+
};
|
|
17244
|
+
};
|
|
17245
|
+
};
|
|
17246
|
+
description: string;
|
|
17247
|
+
};
|
|
17248
|
+
400: {
|
|
17249
|
+
description: string;
|
|
17250
|
+
};
|
|
17251
|
+
401: {
|
|
17252
|
+
description: string;
|
|
17253
|
+
};
|
|
17254
|
+
};
|
|
17255
|
+
security: ({
|
|
16344
17256
|
pat_with_workspace: never[];
|
|
16345
|
-
client_session?: never;
|
|
16346
17257
|
console_session?: never;
|
|
16347
17258
|
api_key?: never;
|
|
16348
17259
|
} | {
|
|
16349
17260
|
console_session: never[];
|
|
16350
|
-
client_session?: never;
|
|
16351
17261
|
pat_with_workspace?: never;
|
|
16352
17262
|
api_key?: never;
|
|
16353
17263
|
} | {
|
|
16354
17264
|
api_key: never[];
|
|
16355
|
-
client_session?: never;
|
|
16356
17265
|
pat_with_workspace?: never;
|
|
16357
17266
|
console_session?: never;
|
|
16358
17267
|
})[];
|
|
@@ -27062,6 +27971,7 @@ interface Routes {
|
|
|
27062
27971
|
email?: string | undefined;
|
|
27063
27972
|
email_address?: string | undefined;
|
|
27064
27973
|
phone_number?: string | undefined;
|
|
27974
|
+
is_managed: true;
|
|
27065
27975
|
}>;
|
|
27066
27976
|
};
|
|
27067
27977
|
};
|
|
@@ -27163,7 +28073,11 @@ interface Routes {
|
|
|
27163
28073
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27164
28074
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27165
28075
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28076
|
+
is_valid?: boolean | undefined;
|
|
28077
|
+
card_id?: string | undefined;
|
|
28078
|
+
credential_id?: string | undefined;
|
|
27166
28079
|
} | undefined;
|
|
28080
|
+
is_managed: true;
|
|
27167
28081
|
};
|
|
27168
28082
|
};
|
|
27169
28083
|
};
|
|
@@ -27225,7 +28139,11 @@ interface Routes {
|
|
|
27225
28139
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27226
28140
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27227
28141
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28142
|
+
is_valid?: boolean | undefined;
|
|
28143
|
+
card_id?: string | undefined;
|
|
28144
|
+
credential_id?: string | undefined;
|
|
27228
28145
|
} | undefined;
|
|
28146
|
+
is_managed: true;
|
|
27229
28147
|
};
|
|
27230
28148
|
};
|
|
27231
28149
|
};
|
|
@@ -27281,7 +28199,11 @@ interface Routes {
|
|
|
27281
28199
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27282
28200
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27283
28201
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28202
|
+
is_valid?: boolean | undefined;
|
|
28203
|
+
card_id?: string | undefined;
|
|
28204
|
+
credential_id?: string | undefined;
|
|
27284
28205
|
} | undefined;
|
|
28206
|
+
is_managed: true;
|
|
27285
28207
|
};
|
|
27286
28208
|
};
|
|
27287
28209
|
};
|
|
@@ -27337,7 +28259,11 @@ interface Routes {
|
|
|
27337
28259
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27338
28260
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27339
28261
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28262
|
+
is_valid?: boolean | undefined;
|
|
28263
|
+
card_id?: string | undefined;
|
|
28264
|
+
credential_id?: string | undefined;
|
|
27340
28265
|
} | undefined;
|
|
28266
|
+
is_managed: true;
|
|
27341
28267
|
}>;
|
|
27342
28268
|
};
|
|
27343
28269
|
};
|
|
@@ -27419,10 +28345,119 @@ interface Routes {
|
|
|
27419
28345
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27420
28346
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27421
28347
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28348
|
+
is_valid?: boolean | undefined;
|
|
28349
|
+
card_id?: string | undefined;
|
|
28350
|
+
credential_id?: string | undefined;
|
|
28351
|
+
} | undefined;
|
|
28352
|
+
is_managed: true;
|
|
28353
|
+
};
|
|
28354
|
+
};
|
|
28355
|
+
};
|
|
28356
|
+
'/acs/credentials/unmanaged/get': {
|
|
28357
|
+
route: '/acs/credentials/unmanaged/get';
|
|
28358
|
+
method: 'GET' | 'POST';
|
|
28359
|
+
queryParams: {};
|
|
28360
|
+
jsonBody: {};
|
|
28361
|
+
commonParams: {
|
|
28362
|
+
acs_credential_id: string;
|
|
28363
|
+
};
|
|
28364
|
+
formData: {};
|
|
28365
|
+
jsonResponse: {
|
|
28366
|
+
acs_credential: {
|
|
28367
|
+
acs_credential_id: string;
|
|
28368
|
+
acs_user_id?: string | undefined;
|
|
28369
|
+
acs_credential_pool_id?: string | undefined;
|
|
28370
|
+
acs_system_id: string;
|
|
28371
|
+
parent_acs_credential_id?: string | undefined;
|
|
28372
|
+
display_name: string;
|
|
28373
|
+
code?: (string | undefined) | null;
|
|
28374
|
+
access_method: 'code' | 'card' | 'mobile_key';
|
|
28375
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
28376
|
+
external_type_display_name?: string | undefined;
|
|
28377
|
+
created_at: string;
|
|
28378
|
+
workspace_id: string;
|
|
28379
|
+
starts_at?: string | undefined;
|
|
28380
|
+
ends_at?: string | undefined;
|
|
28381
|
+
errors: Array<{
|
|
28382
|
+
error_code: string;
|
|
28383
|
+
message: string;
|
|
28384
|
+
}>;
|
|
28385
|
+
warnings: Array<{
|
|
28386
|
+
warning_code: string;
|
|
28387
|
+
message: string;
|
|
28388
|
+
}>;
|
|
28389
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28390
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
28391
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
28392
|
+
visionline_metadata?: {
|
|
28393
|
+
card_function_type: 'guest' | 'staff';
|
|
28394
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
28395
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
28396
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
28397
|
+
is_valid?: boolean | undefined;
|
|
28398
|
+
card_id?: string | undefined;
|
|
28399
|
+
credential_id?: string | undefined;
|
|
27422
28400
|
} | undefined;
|
|
28401
|
+
is_managed: false;
|
|
27423
28402
|
};
|
|
27424
28403
|
};
|
|
27425
28404
|
};
|
|
28405
|
+
'/acs/credentials/unmanaged/list': {
|
|
28406
|
+
route: '/acs/credentials/unmanaged/list';
|
|
28407
|
+
method: 'GET' | 'POST';
|
|
28408
|
+
queryParams: {};
|
|
28409
|
+
jsonBody: {};
|
|
28410
|
+
commonParams: {
|
|
28411
|
+
acs_user_id: string;
|
|
28412
|
+
} | {
|
|
28413
|
+
acs_system_id: string;
|
|
28414
|
+
} | {
|
|
28415
|
+
acs_user_id: string;
|
|
28416
|
+
acs_system_id: string;
|
|
28417
|
+
} | {
|
|
28418
|
+
user_identity_id: string;
|
|
28419
|
+
};
|
|
28420
|
+
formData: {};
|
|
28421
|
+
jsonResponse: {
|
|
28422
|
+
acs_credentials: Array<{
|
|
28423
|
+
acs_credential_id: string;
|
|
28424
|
+
acs_user_id?: string | undefined;
|
|
28425
|
+
acs_credential_pool_id?: string | undefined;
|
|
28426
|
+
acs_system_id: string;
|
|
28427
|
+
parent_acs_credential_id?: string | undefined;
|
|
28428
|
+
display_name: string;
|
|
28429
|
+
code?: (string | undefined) | null;
|
|
28430
|
+
access_method: 'code' | 'card' | 'mobile_key';
|
|
28431
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
28432
|
+
external_type_display_name?: string | undefined;
|
|
28433
|
+
created_at: string;
|
|
28434
|
+
workspace_id: string;
|
|
28435
|
+
starts_at?: string | undefined;
|
|
28436
|
+
ends_at?: string | undefined;
|
|
28437
|
+
errors: Array<{
|
|
28438
|
+
error_code: string;
|
|
28439
|
+
message: string;
|
|
28440
|
+
}>;
|
|
28441
|
+
warnings: Array<{
|
|
28442
|
+
warning_code: string;
|
|
28443
|
+
message: string;
|
|
28444
|
+
}>;
|
|
28445
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28446
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
28447
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
28448
|
+
visionline_metadata?: {
|
|
28449
|
+
card_function_type: 'guest' | 'staff';
|
|
28450
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
28451
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
28452
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
28453
|
+
is_valid?: boolean | undefined;
|
|
28454
|
+
card_id?: string | undefined;
|
|
28455
|
+
credential_id?: string | undefined;
|
|
28456
|
+
} | undefined;
|
|
28457
|
+
is_managed: false;
|
|
28458
|
+
}>;
|
|
28459
|
+
};
|
|
28460
|
+
};
|
|
27426
28461
|
'/acs/credentials/update': {
|
|
27427
28462
|
route: '/acs/credentials/update';
|
|
27428
28463
|
method: 'PATCH' | 'POST';
|
|
@@ -27466,7 +28501,11 @@ interface Routes {
|
|
|
27466
28501
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27467
28502
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27468
28503
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28504
|
+
is_valid?: boolean | undefined;
|
|
28505
|
+
card_id?: string | undefined;
|
|
28506
|
+
credential_id?: string | undefined;
|
|
27469
28507
|
} | undefined;
|
|
28508
|
+
is_managed: true;
|
|
27470
28509
|
};
|
|
27471
28510
|
};
|
|
27472
28511
|
};
|
|
@@ -27597,7 +28636,11 @@ interface Routes {
|
|
|
27597
28636
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
27598
28637
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27599
28638
|
common_acs_entrance_ids?: string[] | undefined;
|
|
28639
|
+
is_valid?: boolean | undefined;
|
|
28640
|
+
card_id?: string | undefined;
|
|
28641
|
+
credential_id?: string | undefined;
|
|
27600
28642
|
} | undefined;
|
|
28643
|
+
is_managed: true;
|
|
27601
28644
|
}>;
|
|
27602
28645
|
};
|
|
27603
28646
|
};
|
|
@@ -27919,6 +28962,7 @@ interface Routes {
|
|
|
27919
28962
|
email?: string | undefined;
|
|
27920
28963
|
email_address?: string | undefined;
|
|
27921
28964
|
phone_number?: string | undefined;
|
|
28965
|
+
is_managed: true;
|
|
27922
28966
|
};
|
|
27923
28967
|
};
|
|
27924
28968
|
};
|
|
@@ -27974,6 +29018,7 @@ interface Routes {
|
|
|
27974
29018
|
email?: string | undefined;
|
|
27975
29019
|
email_address?: string | undefined;
|
|
27976
29020
|
phone_number?: string | undefined;
|
|
29021
|
+
is_managed: true;
|
|
27977
29022
|
};
|
|
27978
29023
|
};
|
|
27979
29024
|
};
|
|
@@ -28023,6 +29068,7 @@ interface Routes {
|
|
|
28023
29068
|
email?: string | undefined;
|
|
28024
29069
|
email_address?: string | undefined;
|
|
28025
29070
|
phone_number?: string | undefined;
|
|
29071
|
+
is_managed: true;
|
|
28026
29072
|
}>;
|
|
28027
29073
|
};
|
|
28028
29074
|
};
|
|
@@ -28137,6 +29183,7 @@ interface Routes {
|
|
|
28137
29183
|
email?: string | undefined;
|
|
28138
29184
|
email_address?: string | undefined;
|
|
28139
29185
|
phone_number?: string | undefined;
|
|
29186
|
+
is_managed: true;
|
|
28140
29187
|
};
|
|
28141
29188
|
};
|
|
28142
29189
|
};
|
|
@@ -28146,7 +29193,11 @@ interface Routes {
|
|
|
28146
29193
|
queryParams: {};
|
|
28147
29194
|
jsonBody: {};
|
|
28148
29195
|
commonParams: {
|
|
28149
|
-
|
|
29196
|
+
user_identity_id?: string | undefined;
|
|
29197
|
+
user_identity_phone_number?: string | undefined;
|
|
29198
|
+
user_identity_email_address?: string | undefined;
|
|
29199
|
+
acs_system_id?: string | undefined;
|
|
29200
|
+
limit?: number;
|
|
28150
29201
|
};
|
|
28151
29202
|
formData: {};
|
|
28152
29203
|
jsonResponse: {
|
|
@@ -28181,6 +29232,7 @@ interface Routes {
|
|
|
28181
29232
|
email?: string | undefined;
|
|
28182
29233
|
email_address?: string | undefined;
|
|
28183
29234
|
phone_number?: string | undefined;
|
|
29235
|
+
is_managed: false;
|
|
28184
29236
|
}>;
|
|
28185
29237
|
};
|
|
28186
29238
|
};
|
|
@@ -29785,6 +30837,10 @@ interface Routes {
|
|
|
29785
30837
|
can_remotely_lock?: boolean | undefined;
|
|
29786
30838
|
can_program_offline_access_codes?: boolean | undefined;
|
|
29787
30839
|
can_program_online_access_codes?: boolean | undefined;
|
|
30840
|
+
can_hvac_heat?: boolean | undefined;
|
|
30841
|
+
can_hvac_cool?: boolean | undefined;
|
|
30842
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
30843
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
29788
30844
|
can_simulate_removal?: boolean | undefined;
|
|
29789
30845
|
can_simulate_connection?: boolean | undefined;
|
|
29790
30846
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -29809,8 +30865,8 @@ interface Routes {
|
|
|
29809
30865
|
created_before?: Date | undefined;
|
|
29810
30866
|
user_identifier_key?: string | undefined;
|
|
29811
30867
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
29812
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
29813
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
30868
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
30869
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
29814
30870
|
};
|
|
29815
30871
|
formData: {};
|
|
29816
30872
|
jsonResponse: {
|
|
@@ -30200,6 +31256,10 @@ interface Routes {
|
|
|
30200
31256
|
can_remotely_lock?: boolean | undefined;
|
|
30201
31257
|
can_program_offline_access_codes?: boolean | undefined;
|
|
30202
31258
|
can_program_online_access_codes?: boolean | undefined;
|
|
31259
|
+
can_hvac_heat?: boolean | undefined;
|
|
31260
|
+
can_hvac_cool?: boolean | undefined;
|
|
31261
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
31262
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
30203
31263
|
can_simulate_removal?: boolean | undefined;
|
|
30204
31264
|
can_simulate_connection?: boolean | undefined;
|
|
30205
31265
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -30225,6 +31285,10 @@ interface Routes {
|
|
|
30225
31285
|
can_remotely_lock?: boolean | undefined;
|
|
30226
31286
|
can_program_offline_access_codes?: boolean | undefined;
|
|
30227
31287
|
can_program_online_access_codes?: boolean | undefined;
|
|
31288
|
+
can_hvac_heat?: boolean | undefined;
|
|
31289
|
+
can_hvac_cool?: boolean | undefined;
|
|
31290
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
31291
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
30228
31292
|
can_simulate_removal?: boolean | undefined;
|
|
30229
31293
|
can_simulate_connection?: boolean | undefined;
|
|
30230
31294
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -30365,6 +31429,10 @@ interface Routes {
|
|
|
30365
31429
|
can_remotely_lock?: boolean | undefined;
|
|
30366
31430
|
can_program_offline_access_codes?: boolean | undefined;
|
|
30367
31431
|
can_program_online_access_codes?: boolean | undefined;
|
|
31432
|
+
can_hvac_heat?: boolean | undefined;
|
|
31433
|
+
can_hvac_cool?: boolean | undefined;
|
|
31434
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
31435
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
30368
31436
|
can_simulate_removal?: boolean | undefined;
|
|
30369
31437
|
can_simulate_connection?: boolean | undefined;
|
|
30370
31438
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -30389,8 +31457,8 @@ interface Routes {
|
|
|
30389
31457
|
created_before?: Date | undefined;
|
|
30390
31458
|
user_identifier_key?: string | undefined;
|
|
30391
31459
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
30392
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
30393
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
31460
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
31461
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
30394
31462
|
};
|
|
30395
31463
|
formData: {};
|
|
30396
31464
|
jsonResponse: {
|
|
@@ -30484,6 +31552,10 @@ interface Routes {
|
|
|
30484
31552
|
can_remotely_lock?: boolean | undefined;
|
|
30485
31553
|
can_program_offline_access_codes?: boolean | undefined;
|
|
30486
31554
|
can_program_online_access_codes?: boolean | undefined;
|
|
31555
|
+
can_hvac_heat?: boolean | undefined;
|
|
31556
|
+
can_hvac_cool?: boolean | undefined;
|
|
31557
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
31558
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
30487
31559
|
can_simulate_removal?: boolean | undefined;
|
|
30488
31560
|
can_simulate_connection?: boolean | undefined;
|
|
30489
31561
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -30983,6 +32055,10 @@ interface Routes {
|
|
|
30983
32055
|
can_remotely_lock?: boolean | undefined;
|
|
30984
32056
|
can_program_offline_access_codes?: boolean | undefined;
|
|
30985
32057
|
can_program_online_access_codes?: boolean | undefined;
|
|
32058
|
+
can_hvac_heat?: boolean | undefined;
|
|
32059
|
+
can_hvac_cool?: boolean | undefined;
|
|
32060
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
32061
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
30986
32062
|
can_simulate_removal?: boolean | undefined;
|
|
30987
32063
|
can_simulate_connection?: boolean | undefined;
|
|
30988
32064
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -31373,6 +32449,10 @@ interface Routes {
|
|
|
31373
32449
|
can_remotely_lock?: boolean | undefined;
|
|
31374
32450
|
can_program_offline_access_codes?: boolean | undefined;
|
|
31375
32451
|
can_program_online_access_codes?: boolean | undefined;
|
|
32452
|
+
can_hvac_heat?: boolean | undefined;
|
|
32453
|
+
can_hvac_cool?: boolean | undefined;
|
|
32454
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
32455
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
31376
32456
|
can_simulate_removal?: boolean | undefined;
|
|
31377
32457
|
can_simulate_connection?: boolean | undefined;
|
|
31378
32458
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -31397,8 +32477,8 @@ interface Routes {
|
|
|
31397
32477
|
created_before?: Date | undefined;
|
|
31398
32478
|
user_identifier_key?: string | undefined;
|
|
31399
32479
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
31400
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
31401
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
32480
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
32481
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
31402
32482
|
};
|
|
31403
32483
|
formData: {};
|
|
31404
32484
|
jsonResponse: {
|
|
@@ -31788,6 +32868,10 @@ interface Routes {
|
|
|
31788
32868
|
can_remotely_lock?: boolean | undefined;
|
|
31789
32869
|
can_program_offline_access_codes?: boolean | undefined;
|
|
31790
32870
|
can_program_online_access_codes?: boolean | undefined;
|
|
32871
|
+
can_hvac_heat?: boolean | undefined;
|
|
32872
|
+
can_hvac_cool?: boolean | undefined;
|
|
32873
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
32874
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
31791
32875
|
can_simulate_removal?: boolean | undefined;
|
|
31792
32876
|
can_simulate_connection?: boolean | undefined;
|
|
31793
32877
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -32178,6 +33262,10 @@ interface Routes {
|
|
|
32178
33262
|
can_remotely_lock?: boolean | undefined;
|
|
32179
33263
|
can_program_offline_access_codes?: boolean | undefined;
|
|
32180
33264
|
can_program_online_access_codes?: boolean | undefined;
|
|
33265
|
+
can_hvac_heat?: boolean | undefined;
|
|
33266
|
+
can_hvac_cool?: boolean | undefined;
|
|
33267
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
33268
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
32181
33269
|
can_simulate_removal?: boolean | undefined;
|
|
32182
33270
|
can_simulate_connection?: boolean | undefined;
|
|
32183
33271
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -32984,8 +34072,8 @@ interface Routes {
|
|
|
32984
34072
|
created_before?: Date | undefined;
|
|
32985
34073
|
user_identifier_key?: string | undefined;
|
|
32986
34074
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
32987
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
32988
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
34075
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
34076
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
32989
34077
|
};
|
|
32990
34078
|
formData: {};
|
|
32991
34079
|
jsonResponse: {
|
|
@@ -33375,6 +34463,10 @@ interface Routes {
|
|
|
33375
34463
|
can_remotely_lock?: boolean | undefined;
|
|
33376
34464
|
can_program_offline_access_codes?: boolean | undefined;
|
|
33377
34465
|
can_program_online_access_codes?: boolean | undefined;
|
|
34466
|
+
can_hvac_heat?: boolean | undefined;
|
|
34467
|
+
can_hvac_cool?: boolean | undefined;
|
|
34468
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
34469
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
33378
34470
|
can_simulate_removal?: boolean | undefined;
|
|
33379
34471
|
can_simulate_connection?: boolean | undefined;
|
|
33380
34472
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -33765,6 +34857,10 @@ interface Routes {
|
|
|
33765
34857
|
can_remotely_lock?: boolean | undefined;
|
|
33766
34858
|
can_program_offline_access_codes?: boolean | undefined;
|
|
33767
34859
|
can_program_online_access_codes?: boolean | undefined;
|
|
34860
|
+
can_hvac_heat?: boolean | undefined;
|
|
34861
|
+
can_hvac_cool?: boolean | undefined;
|
|
34862
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
34863
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
33768
34864
|
can_simulate_removal?: boolean | undefined;
|
|
33769
34865
|
can_simulate_connection?: boolean | undefined;
|
|
33770
34866
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -35042,6 +36138,10 @@ interface Routes {
|
|
|
35042
36138
|
can_remotely_lock?: boolean | undefined;
|
|
35043
36139
|
can_program_offline_access_codes?: boolean | undefined;
|
|
35044
36140
|
can_program_online_access_codes?: boolean | undefined;
|
|
36141
|
+
can_hvac_heat?: boolean | undefined;
|
|
36142
|
+
can_hvac_cool?: boolean | undefined;
|
|
36143
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
36144
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
35045
36145
|
can_simulate_removal?: boolean | undefined;
|
|
35046
36146
|
can_simulate_connection?: boolean | undefined;
|
|
35047
36147
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -35125,6 +36225,10 @@ interface Routes {
|
|
|
35125
36225
|
can_remotely_lock?: boolean | undefined;
|
|
35126
36226
|
can_program_offline_access_codes?: boolean | undefined;
|
|
35127
36227
|
can_program_online_access_codes?: boolean | undefined;
|
|
36228
|
+
can_hvac_heat?: boolean | undefined;
|
|
36229
|
+
can_hvac_cool?: boolean | undefined;
|
|
36230
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
36231
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
35128
36232
|
can_simulate_removal?: boolean | undefined;
|
|
35129
36233
|
can_simulate_connection?: boolean | undefined;
|
|
35130
36234
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -36053,6 +37157,10 @@ interface Routes {
|
|
|
36053
37157
|
can_remotely_lock?: boolean | undefined;
|
|
36054
37158
|
can_program_offline_access_codes?: boolean | undefined;
|
|
36055
37159
|
can_program_online_access_codes?: boolean | undefined;
|
|
37160
|
+
can_hvac_heat?: boolean | undefined;
|
|
37161
|
+
can_hvac_cool?: boolean | undefined;
|
|
37162
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
37163
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
36056
37164
|
can_simulate_removal?: boolean | undefined;
|
|
36057
37165
|
can_simulate_connection?: boolean | undefined;
|
|
36058
37166
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -36831,8 +37939,8 @@ interface Routes {
|
|
|
36831
37939
|
created_before?: Date | undefined;
|
|
36832
37940
|
user_identifier_key?: string | undefined;
|
|
36833
37941
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
36834
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
36835
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
37942
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
37943
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
36836
37944
|
};
|
|
36837
37945
|
formData: {};
|
|
36838
37946
|
jsonResponse: {
|
|
@@ -37222,6 +38330,10 @@ interface Routes {
|
|
|
37222
38330
|
can_remotely_lock?: boolean | undefined;
|
|
37223
38331
|
can_program_offline_access_codes?: boolean | undefined;
|
|
37224
38332
|
can_program_online_access_codes?: boolean | undefined;
|
|
38333
|
+
can_hvac_heat?: boolean | undefined;
|
|
38334
|
+
can_hvac_cool?: boolean | undefined;
|
|
38335
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
38336
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
37225
38337
|
can_simulate_removal?: boolean | undefined;
|
|
37226
38338
|
can_simulate_connection?: boolean | undefined;
|
|
37227
38339
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -38572,6 +39684,10 @@ interface Routes {
|
|
|
38572
39684
|
can_remotely_lock?: boolean | undefined;
|
|
38573
39685
|
can_program_offline_access_codes?: boolean | undefined;
|
|
38574
39686
|
can_program_online_access_codes?: boolean | undefined;
|
|
39687
|
+
can_hvac_heat?: boolean | undefined;
|
|
39688
|
+
can_hvac_cool?: boolean | undefined;
|
|
39689
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
39690
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
38575
39691
|
can_simulate_removal?: boolean | undefined;
|
|
38576
39692
|
can_simulate_connection?: boolean | undefined;
|
|
38577
39693
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -38964,6 +40080,10 @@ interface Routes {
|
|
|
38964
40080
|
can_remotely_lock?: boolean | undefined;
|
|
38965
40081
|
can_program_offline_access_codes?: boolean | undefined;
|
|
38966
40082
|
can_program_online_access_codes?: boolean | undefined;
|
|
40083
|
+
can_hvac_heat?: boolean | undefined;
|
|
40084
|
+
can_hvac_cool?: boolean | undefined;
|
|
40085
|
+
can_hvac_heat_cool?: boolean | undefined;
|
|
40086
|
+
can_turn_off_hvac?: boolean | undefined;
|
|
38967
40087
|
can_simulate_removal?: boolean | undefined;
|
|
38968
40088
|
can_simulate_connection?: boolean | undefined;
|
|
38969
40089
|
can_simulate_disconnection?: boolean | undefined;
|
|
@@ -39094,6 +40214,7 @@ interface Routes {
|
|
|
39094
40214
|
email?: string | undefined;
|
|
39095
40215
|
email_address?: string | undefined;
|
|
39096
40216
|
phone_number?: string | undefined;
|
|
40217
|
+
is_managed: true;
|
|
39097
40218
|
}>;
|
|
39098
40219
|
};
|
|
39099
40220
|
};
|