@seamapi/types 1.42.1 → 1.44.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 +263 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +522 -18
- package/lib/seam/connect/openapi.d.ts +350 -0
- package/lib/seam/connect/openapi.js +243 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +143 -15
- package/lib/seam/connect/stable/model-types.d.ts +1 -1
- package/lib/seam/connect/stable/models/connect-webview.d.ts +21 -0
- package/lib/seam/connect/stable/models/connect-webview.js +8 -0
- package/lib/seam/connect/stable/models/connect-webview.js.map +1 -1
- package/lib/seam/connect/stable/models/custom-metadata.d.ts +3 -0
- package/lib/seam/connect/stable/models/custom-metadata.js +7 -0
- package/lib/seam/connect/stable/models/custom-metadata.js.map +1 -0
- package/lib/seam/connect/stable/models/index.d.ts +1 -0
- package/lib/seam/connect/stable/models/index.js +1 -0
- package/lib/seam/connect/stable/models/index.js.map +1 -1
- package/lib/seam/connect/stable/schemas.d.ts +1 -1
- package/lib/seam/connect/stable/schemas.js +1 -1
- package/lib/seam/connect/stable/schemas.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +7 -7
- package/lib/seam/connect/unstable/models/acs/credential.js +5 -2
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/user.d.ts +4 -4
- package/lib/seam/connect/unstable/models/acs/user.js +1 -1
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +62 -0
- package/lib/seam/connect/unstable/models/devices/managed-device.js +20 -2
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +247 -10
- package/src/lib/seam/connect/route-types.ts +143 -15
- package/src/lib/seam/connect/stable/model-types.ts +1 -1
- package/src/lib/seam/connect/stable/models/connect-webview.ts +9 -0
- package/src/lib/seam/connect/stable/models/custom-metadata.ts +12 -0
- package/src/lib/seam/connect/stable/models/index.ts +1 -0
- package/src/lib/seam/connect/stable/schemas.ts +1 -1
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +5 -2
- package/src/lib/seam/connect/unstable/models/acs/user.ts +1 -1
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +23 -2
|
@@ -596,7 +596,7 @@ export interface Routes {
|
|
|
596
596
|
workspace_id: string;
|
|
597
597
|
created_at: string;
|
|
598
598
|
display_name: string;
|
|
599
|
-
external_type: 'pti_user';
|
|
599
|
+
external_type: 'pti_user' | 'brivo_user';
|
|
600
600
|
external_type_display_name: string;
|
|
601
601
|
is_suspended: boolean;
|
|
602
602
|
full_name?: string | undefined;
|
|
@@ -631,6 +631,18 @@ export interface Routes {
|
|
|
631
631
|
formData: {};
|
|
632
632
|
jsonResponse: {};
|
|
633
633
|
};
|
|
634
|
+
'/acs/credentials/assign': {
|
|
635
|
+
route: '/acs/credentials/assign';
|
|
636
|
+
method: 'PATCH' | 'POST';
|
|
637
|
+
queryParams: {};
|
|
638
|
+
jsonBody: {
|
|
639
|
+
acs_user_id: string;
|
|
640
|
+
acs_credential_id: string;
|
|
641
|
+
};
|
|
642
|
+
commonParams: {};
|
|
643
|
+
formData: {};
|
|
644
|
+
jsonResponse: {};
|
|
645
|
+
};
|
|
634
646
|
'/acs/credentials/create': {
|
|
635
647
|
route: '/acs/credentials/create';
|
|
636
648
|
method: 'POST';
|
|
@@ -644,10 +656,10 @@ export interface Routes {
|
|
|
644
656
|
jsonResponse: {
|
|
645
657
|
acs_credential: {
|
|
646
658
|
acs_credential_id: string;
|
|
647
|
-
acs_user_id
|
|
659
|
+
acs_user_id?: string | undefined;
|
|
648
660
|
acs_system_id: string;
|
|
649
661
|
code: string | null;
|
|
650
|
-
external_type: 'pti_card';
|
|
662
|
+
external_type: 'pti_card' | 'brivo_credential';
|
|
651
663
|
external_type_display_name: string;
|
|
652
664
|
created_at: string;
|
|
653
665
|
workspace_id: string;
|
|
@@ -677,10 +689,10 @@ export interface Routes {
|
|
|
677
689
|
jsonResponse: {
|
|
678
690
|
acs_credential: {
|
|
679
691
|
acs_credential_id: string;
|
|
680
|
-
acs_user_id
|
|
692
|
+
acs_user_id?: string | undefined;
|
|
681
693
|
acs_system_id: string;
|
|
682
694
|
code: string | null;
|
|
683
|
-
external_type: 'pti_card';
|
|
695
|
+
external_type: 'pti_card' | 'brivo_credential';
|
|
684
696
|
external_type_display_name: string;
|
|
685
697
|
created_at: string;
|
|
686
698
|
workspace_id: string;
|
|
@@ -704,16 +716,28 @@ export interface Routes {
|
|
|
704
716
|
jsonResponse: {
|
|
705
717
|
acs_credentials: Array<{
|
|
706
718
|
acs_credential_id: string;
|
|
707
|
-
acs_user_id
|
|
719
|
+
acs_user_id?: string | undefined;
|
|
708
720
|
acs_system_id: string;
|
|
709
721
|
code: string | null;
|
|
710
|
-
external_type: 'pti_card';
|
|
722
|
+
external_type: 'pti_card' | 'brivo_credential';
|
|
711
723
|
external_type_display_name: string;
|
|
712
724
|
created_at: string;
|
|
713
725
|
workspace_id: string;
|
|
714
726
|
}>;
|
|
715
727
|
};
|
|
716
728
|
};
|
|
729
|
+
'/acs/credentials/unassign': {
|
|
730
|
+
route: '/acs/credentials/unassign';
|
|
731
|
+
method: 'PATCH' | 'POST';
|
|
732
|
+
queryParams: {};
|
|
733
|
+
jsonBody: {
|
|
734
|
+
acs_user_id: string;
|
|
735
|
+
acs_credential_id: string;
|
|
736
|
+
};
|
|
737
|
+
commonParams: {};
|
|
738
|
+
formData: {};
|
|
739
|
+
jsonResponse: {};
|
|
740
|
+
};
|
|
717
741
|
'/acs/systems/get': {
|
|
718
742
|
route: '/acs/systems/get';
|
|
719
743
|
method: 'GET' | 'POST';
|
|
@@ -778,15 +802,16 @@ export interface Routes {
|
|
|
778
802
|
route: '/acs/users/create';
|
|
779
803
|
method: 'POST';
|
|
780
804
|
queryParams: {};
|
|
781
|
-
jsonBody: {
|
|
782
|
-
commonParams: {
|
|
805
|
+
jsonBody: {
|
|
783
806
|
acs_system_id: string;
|
|
784
807
|
acs_access_group_ids?: string[];
|
|
785
808
|
full_name?: string | undefined;
|
|
786
809
|
/** Deprecated: use email_address. */
|
|
787
810
|
email?: string | undefined;
|
|
788
811
|
phone_number?: string | undefined;
|
|
812
|
+
email_address?: string | undefined;
|
|
789
813
|
};
|
|
814
|
+
commonParams: {};
|
|
790
815
|
formData: {};
|
|
791
816
|
jsonResponse: {
|
|
792
817
|
acs_user: {
|
|
@@ -795,7 +820,7 @@ export interface Routes {
|
|
|
795
820
|
workspace_id: string;
|
|
796
821
|
created_at: string;
|
|
797
822
|
display_name: string;
|
|
798
|
-
external_type: 'pti_user';
|
|
823
|
+
external_type: 'pti_user' | 'brivo_user';
|
|
799
824
|
external_type_display_name: string;
|
|
800
825
|
is_suspended: boolean;
|
|
801
826
|
full_name?: string | undefined;
|
|
@@ -833,7 +858,7 @@ export interface Routes {
|
|
|
833
858
|
workspace_id: string;
|
|
834
859
|
created_at: string;
|
|
835
860
|
display_name: string;
|
|
836
|
-
external_type: 'pti_user';
|
|
861
|
+
external_type: 'pti_user' | 'brivo_user';
|
|
837
862
|
external_type_display_name: string;
|
|
838
863
|
is_suspended: boolean;
|
|
839
864
|
full_name?: string | undefined;
|
|
@@ -860,7 +885,7 @@ export interface Routes {
|
|
|
860
885
|
workspace_id: string;
|
|
861
886
|
created_at: string;
|
|
862
887
|
display_name: string;
|
|
863
|
-
external_type: 'pti_user';
|
|
888
|
+
external_type: 'pti_user' | 'brivo_user';
|
|
864
889
|
external_type_display_name: string;
|
|
865
890
|
is_suspended: boolean;
|
|
866
891
|
full_name?: string | undefined;
|
|
@@ -909,14 +934,15 @@ export interface Routes {
|
|
|
909
934
|
route: '/acs/users/update';
|
|
910
935
|
method: 'PATCH' | 'POST';
|
|
911
936
|
queryParams: {};
|
|
912
|
-
jsonBody: {
|
|
913
|
-
commonParams: {
|
|
937
|
+
jsonBody: {
|
|
914
938
|
acs_user_id: string;
|
|
915
939
|
full_name?: string | undefined;
|
|
916
940
|
/** Deprecated: use email_address. */
|
|
917
941
|
email?: string | undefined;
|
|
918
942
|
phone_number?: string | undefined;
|
|
943
|
+
email_address?: string | undefined;
|
|
919
944
|
};
|
|
945
|
+
commonParams: {};
|
|
920
946
|
formData: {};
|
|
921
947
|
jsonResponse: {};
|
|
922
948
|
};
|
|
@@ -1162,6 +1188,13 @@ export interface Routes {
|
|
|
1162
1188
|
created_at: string;
|
|
1163
1189
|
login_successful: boolean;
|
|
1164
1190
|
status: 'pending' | 'failed' | 'authorized';
|
|
1191
|
+
custom_redirect_url: string | null;
|
|
1192
|
+
custom_redirect_failure_url: string | null;
|
|
1193
|
+
custom_metadata: Record<string, string | number | null | boolean>;
|
|
1194
|
+
automatically_manage_new_devices: boolean;
|
|
1195
|
+
wait_for_device_creation: boolean;
|
|
1196
|
+
authorized_at: string | null;
|
|
1197
|
+
selected_provider: string | null;
|
|
1165
1198
|
};
|
|
1166
1199
|
};
|
|
1167
1200
|
};
|
|
@@ -1199,6 +1232,13 @@ export interface Routes {
|
|
|
1199
1232
|
created_at: string;
|
|
1200
1233
|
login_successful: boolean;
|
|
1201
1234
|
status: 'pending' | 'failed' | 'authorized';
|
|
1235
|
+
custom_redirect_url: string | null;
|
|
1236
|
+
custom_redirect_failure_url: string | null;
|
|
1237
|
+
custom_metadata: Record<string, string | number | null | boolean>;
|
|
1238
|
+
automatically_manage_new_devices: boolean;
|
|
1239
|
+
wait_for_device_creation: boolean;
|
|
1240
|
+
authorized_at: string | null;
|
|
1241
|
+
selected_provider: string | null;
|
|
1202
1242
|
};
|
|
1203
1243
|
};
|
|
1204
1244
|
};
|
|
@@ -1225,6 +1265,13 @@ export interface Routes {
|
|
|
1225
1265
|
created_at: string;
|
|
1226
1266
|
login_successful: boolean;
|
|
1227
1267
|
status: 'pending' | 'failed' | 'authorized';
|
|
1268
|
+
custom_redirect_url: string | null;
|
|
1269
|
+
custom_redirect_failure_url: string | null;
|
|
1270
|
+
custom_metadata: Record<string, string | number | null | boolean>;
|
|
1271
|
+
automatically_manage_new_devices: boolean;
|
|
1272
|
+
wait_for_device_creation: boolean;
|
|
1273
|
+
authorized_at: string | null;
|
|
1274
|
+
selected_provider: string | null;
|
|
1228
1275
|
}>;
|
|
1229
1276
|
};
|
|
1230
1277
|
};
|
|
@@ -1340,6 +1387,9 @@ export interface Routes {
|
|
|
1340
1387
|
model: {
|
|
1341
1388
|
display_name: string;
|
|
1342
1389
|
manufacturer_display_name: string;
|
|
1390
|
+
offline_access_codes_supported?: boolean | undefined;
|
|
1391
|
+
access_codes_supported?: boolean | undefined;
|
|
1392
|
+
accessory_keypad_supported?: boolean | undefined;
|
|
1343
1393
|
};
|
|
1344
1394
|
has_direct_power?: boolean | undefined;
|
|
1345
1395
|
battery_level?: number | undefined;
|
|
@@ -1351,7 +1401,13 @@ export interface Routes {
|
|
|
1351
1401
|
image_url?: string | undefined;
|
|
1352
1402
|
image_alt_text?: string | undefined;
|
|
1353
1403
|
serial_number?: string | undefined;
|
|
1404
|
+
/** Currently possible to use online access codes */
|
|
1405
|
+
online_access_codes_enabled?: boolean | undefined;
|
|
1406
|
+
/** Currently possible to use offline access codes */
|
|
1407
|
+
offline_access_codes_enabled?: boolean | undefined;
|
|
1408
|
+
/** Deprecated: use model.offline_access_codes_enabled. */
|
|
1354
1409
|
supports_accessory_keypad?: boolean | undefined;
|
|
1410
|
+
/** Deprecated: use model.accessory_keypad_supported. */
|
|
1355
1411
|
supports_offline_access_codes?: boolean | undefined;
|
|
1356
1412
|
} & {
|
|
1357
1413
|
august_metadata?: {
|
|
@@ -1750,6 +1806,9 @@ export interface Routes {
|
|
|
1750
1806
|
model: {
|
|
1751
1807
|
display_name: string;
|
|
1752
1808
|
manufacturer_display_name: string;
|
|
1809
|
+
offline_access_codes_supported?: boolean | undefined;
|
|
1810
|
+
access_codes_supported?: boolean | undefined;
|
|
1811
|
+
accessory_keypad_supported?: boolean | undefined;
|
|
1753
1812
|
};
|
|
1754
1813
|
has_direct_power?: boolean | undefined;
|
|
1755
1814
|
battery_level?: number | undefined;
|
|
@@ -1761,7 +1820,13 @@ export interface Routes {
|
|
|
1761
1820
|
image_url?: string | undefined;
|
|
1762
1821
|
image_alt_text?: string | undefined;
|
|
1763
1822
|
serial_number?: string | undefined;
|
|
1823
|
+
/** Currently possible to use online access codes */
|
|
1824
|
+
online_access_codes_enabled?: boolean | undefined;
|
|
1825
|
+
/** Currently possible to use offline access codes */
|
|
1826
|
+
offline_access_codes_enabled?: boolean | undefined;
|
|
1827
|
+
/** Deprecated: use model.offline_access_codes_enabled. */
|
|
1764
1828
|
supports_accessory_keypad?: boolean | undefined;
|
|
1829
|
+
/** Deprecated: use model.accessory_keypad_supported. */
|
|
1765
1830
|
supports_offline_access_codes?: boolean | undefined;
|
|
1766
1831
|
} & {
|
|
1767
1832
|
august_metadata?: {
|
|
@@ -2415,6 +2480,9 @@ export interface Routes {
|
|
|
2415
2480
|
model: {
|
|
2416
2481
|
display_name: string;
|
|
2417
2482
|
manufacturer_display_name: string;
|
|
2483
|
+
offline_access_codes_supported?: boolean | undefined;
|
|
2484
|
+
access_codes_supported?: boolean | undefined;
|
|
2485
|
+
accessory_keypad_supported?: boolean | undefined;
|
|
2418
2486
|
};
|
|
2419
2487
|
has_direct_power?: boolean | undefined;
|
|
2420
2488
|
battery_level?: number | undefined;
|
|
@@ -2426,7 +2494,13 @@ export interface Routes {
|
|
|
2426
2494
|
image_url?: string | undefined;
|
|
2427
2495
|
image_alt_text?: string | undefined;
|
|
2428
2496
|
serial_number?: string | undefined;
|
|
2497
|
+
/** Currently possible to use online access codes */
|
|
2498
|
+
online_access_codes_enabled?: boolean | undefined;
|
|
2499
|
+
/** Currently possible to use offline access codes */
|
|
2500
|
+
offline_access_codes_enabled?: boolean | undefined;
|
|
2501
|
+
/** Deprecated: use model.offline_access_codes_enabled. */
|
|
2429
2502
|
supports_accessory_keypad?: boolean | undefined;
|
|
2503
|
+
/** Deprecated: use model.accessory_keypad_supported. */
|
|
2430
2504
|
supports_offline_access_codes?: boolean | undefined;
|
|
2431
2505
|
} & {
|
|
2432
2506
|
august_metadata?: {
|
|
@@ -2803,6 +2877,9 @@ export interface Routes {
|
|
|
2803
2877
|
model: {
|
|
2804
2878
|
display_name: string;
|
|
2805
2879
|
manufacturer_display_name: string;
|
|
2880
|
+
offline_access_codes_supported?: boolean | undefined;
|
|
2881
|
+
access_codes_supported?: boolean | undefined;
|
|
2882
|
+
accessory_keypad_supported?: boolean | undefined;
|
|
2806
2883
|
};
|
|
2807
2884
|
has_direct_power?: boolean | undefined;
|
|
2808
2885
|
battery_level?: number | undefined;
|
|
@@ -2814,7 +2891,13 @@ export interface Routes {
|
|
|
2814
2891
|
image_url?: string | undefined;
|
|
2815
2892
|
image_alt_text?: string | undefined;
|
|
2816
2893
|
serial_number?: string | undefined;
|
|
2894
|
+
/** Currently possible to use online access codes */
|
|
2895
|
+
online_access_codes_enabled?: boolean | undefined;
|
|
2896
|
+
/** Currently possible to use offline access codes */
|
|
2897
|
+
offline_access_codes_enabled?: boolean | undefined;
|
|
2898
|
+
/** Deprecated: use model.offline_access_codes_enabled. */
|
|
2817
2899
|
supports_accessory_keypad?: boolean | undefined;
|
|
2900
|
+
/** Deprecated: use model.accessory_keypad_supported. */
|
|
2818
2901
|
supports_offline_access_codes?: boolean | undefined;
|
|
2819
2902
|
} & {
|
|
2820
2903
|
august_metadata?: {
|
|
@@ -3213,6 +3296,9 @@ export interface Routes {
|
|
|
3213
3296
|
model: {
|
|
3214
3297
|
display_name: string;
|
|
3215
3298
|
manufacturer_display_name: string;
|
|
3299
|
+
offline_access_codes_supported?: boolean | undefined;
|
|
3300
|
+
access_codes_supported?: boolean | undefined;
|
|
3301
|
+
accessory_keypad_supported?: boolean | undefined;
|
|
3216
3302
|
};
|
|
3217
3303
|
has_direct_power?: boolean | undefined;
|
|
3218
3304
|
battery_level?: number | undefined;
|
|
@@ -3224,7 +3310,13 @@ export interface Routes {
|
|
|
3224
3310
|
image_url?: string | undefined;
|
|
3225
3311
|
image_alt_text?: string | undefined;
|
|
3226
3312
|
serial_number?: string | undefined;
|
|
3313
|
+
/** Currently possible to use online access codes */
|
|
3314
|
+
online_access_codes_enabled?: boolean | undefined;
|
|
3315
|
+
/** Currently possible to use offline access codes */
|
|
3316
|
+
offline_access_codes_enabled?: boolean | undefined;
|
|
3317
|
+
/** Deprecated: use model.offline_access_codes_enabled. */
|
|
3227
3318
|
supports_accessory_keypad?: boolean | undefined;
|
|
3319
|
+
/** Deprecated: use model.accessory_keypad_supported. */
|
|
3228
3320
|
supports_offline_access_codes?: boolean | undefined;
|
|
3229
3321
|
} & {
|
|
3230
3322
|
august_metadata?: {
|
|
@@ -3601,6 +3693,9 @@ export interface Routes {
|
|
|
3601
3693
|
model: {
|
|
3602
3694
|
display_name: string;
|
|
3603
3695
|
manufacturer_display_name: string;
|
|
3696
|
+
offline_access_codes_supported?: boolean | undefined;
|
|
3697
|
+
access_codes_supported?: boolean | undefined;
|
|
3698
|
+
accessory_keypad_supported?: boolean | undefined;
|
|
3604
3699
|
};
|
|
3605
3700
|
has_direct_power?: boolean | undefined;
|
|
3606
3701
|
battery_level?: number | undefined;
|
|
@@ -3612,7 +3707,13 @@ export interface Routes {
|
|
|
3612
3707
|
image_url?: string | undefined;
|
|
3613
3708
|
image_alt_text?: string | undefined;
|
|
3614
3709
|
serial_number?: string | undefined;
|
|
3710
|
+
/** Currently possible to use online access codes */
|
|
3711
|
+
online_access_codes_enabled?: boolean | undefined;
|
|
3712
|
+
/** Currently possible to use offline access codes */
|
|
3713
|
+
offline_access_codes_enabled?: boolean | undefined;
|
|
3714
|
+
/** Deprecated: use model.offline_access_codes_enabled. */
|
|
3615
3715
|
supports_accessory_keypad?: boolean | undefined;
|
|
3716
|
+
/** Deprecated: use model.accessory_keypad_supported. */
|
|
3616
3717
|
supports_offline_access_codes?: boolean | undefined;
|
|
3617
3718
|
} & {
|
|
3618
3719
|
august_metadata?: {
|
|
@@ -4409,6 +4510,9 @@ export interface Routes {
|
|
|
4409
4510
|
model: {
|
|
4410
4511
|
display_name: string;
|
|
4411
4512
|
manufacturer_display_name: string;
|
|
4513
|
+
offline_access_codes_supported?: boolean | undefined;
|
|
4514
|
+
access_codes_supported?: boolean | undefined;
|
|
4515
|
+
accessory_keypad_supported?: boolean | undefined;
|
|
4412
4516
|
};
|
|
4413
4517
|
has_direct_power?: boolean | undefined;
|
|
4414
4518
|
battery_level?: number | undefined;
|
|
@@ -4420,7 +4524,13 @@ export interface Routes {
|
|
|
4420
4524
|
image_url?: string | undefined;
|
|
4421
4525
|
image_alt_text?: string | undefined;
|
|
4422
4526
|
serial_number?: string | undefined;
|
|
4527
|
+
/** Currently possible to use online access codes */
|
|
4528
|
+
online_access_codes_enabled?: boolean | undefined;
|
|
4529
|
+
/** Currently possible to use offline access codes */
|
|
4530
|
+
offline_access_codes_enabled?: boolean | undefined;
|
|
4531
|
+
/** Deprecated: use model.offline_access_codes_enabled. */
|
|
4423
4532
|
supports_accessory_keypad?: boolean | undefined;
|
|
4533
|
+
/** Deprecated: use model.accessory_keypad_supported. */
|
|
4424
4534
|
supports_offline_access_codes?: boolean | undefined;
|
|
4425
4535
|
} & {
|
|
4426
4536
|
august_metadata?: {
|
|
@@ -4849,6 +4959,9 @@ export interface Routes {
|
|
|
4849
4959
|
model: {
|
|
4850
4960
|
display_name: string;
|
|
4851
4961
|
manufacturer_display_name: string;
|
|
4962
|
+
offline_access_codes_supported?: boolean | undefined;
|
|
4963
|
+
access_codes_supported?: boolean | undefined;
|
|
4964
|
+
accessory_keypad_supported?: boolean | undefined;
|
|
4852
4965
|
};
|
|
4853
4966
|
has_direct_power?: boolean | undefined;
|
|
4854
4967
|
battery_level?: number | undefined;
|
|
@@ -4860,7 +4973,13 @@ export interface Routes {
|
|
|
4860
4973
|
image_url?: string | undefined;
|
|
4861
4974
|
image_alt_text?: string | undefined;
|
|
4862
4975
|
serial_number?: string | undefined;
|
|
4976
|
+
/** Currently possible to use online access codes */
|
|
4977
|
+
online_access_codes_enabled?: boolean | undefined;
|
|
4978
|
+
/** Currently possible to use offline access codes */
|
|
4979
|
+
offline_access_codes_enabled?: boolean | undefined;
|
|
4980
|
+
/** Deprecated: use model.offline_access_codes_enabled. */
|
|
4863
4981
|
supports_accessory_keypad?: boolean | undefined;
|
|
4982
|
+
/** Deprecated: use model.accessory_keypad_supported. */
|
|
4864
4983
|
supports_offline_access_codes?: boolean | undefined;
|
|
4865
4984
|
} & {
|
|
4866
4985
|
august_metadata?: {
|
|
@@ -5361,6 +5480,9 @@ export interface Routes {
|
|
|
5361
5480
|
model: {
|
|
5362
5481
|
display_name: string;
|
|
5363
5482
|
manufacturer_display_name: string;
|
|
5483
|
+
offline_access_codes_supported?: boolean | undefined;
|
|
5484
|
+
access_codes_supported?: boolean | undefined;
|
|
5485
|
+
accessory_keypad_supported?: boolean | undefined;
|
|
5364
5486
|
};
|
|
5365
5487
|
has_direct_power?: boolean | undefined;
|
|
5366
5488
|
battery_level?: number | undefined;
|
|
@@ -5372,7 +5494,13 @@ export interface Routes {
|
|
|
5372
5494
|
image_url?: string | undefined;
|
|
5373
5495
|
image_alt_text?: string | undefined;
|
|
5374
5496
|
serial_number?: string | undefined;
|
|
5497
|
+
/** Currently possible to use online access codes */
|
|
5498
|
+
online_access_codes_enabled?: boolean | undefined;
|
|
5499
|
+
/** Currently possible to use offline access codes */
|
|
5500
|
+
offline_access_codes_enabled?: boolean | undefined;
|
|
5501
|
+
/** Deprecated: use model.offline_access_codes_enabled. */
|
|
5375
5502
|
supports_accessory_keypad?: boolean | undefined;
|
|
5503
|
+
/** Deprecated: use model.accessory_keypad_supported. */
|
|
5376
5504
|
supports_offline_access_codes?: boolean | undefined;
|
|
5377
5505
|
} & {
|
|
5378
5506
|
august_metadata?: {
|
|
@@ -5757,7 +5885,7 @@ export interface Routes {
|
|
|
5757
5885
|
workspace_id: string;
|
|
5758
5886
|
created_at: string;
|
|
5759
5887
|
display_name: string;
|
|
5760
|
-
external_type: 'pti_user';
|
|
5888
|
+
external_type: 'pti_user' | 'brivo_user';
|
|
5761
5889
|
external_type_display_name: string;
|
|
5762
5890
|
is_suspended: boolean;
|
|
5763
5891
|
full_name?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type { ConnectWebview } from './models/index.js';
|
|
1
|
+
export type { ConnectWebview, CustomMetadata } from './models/index.js';
|
|
@@ -12,6 +12,13 @@ export declare const connect_webview: z.ZodObject<{
|
|
|
12
12
|
created_at: z.ZodString;
|
|
13
13
|
login_successful: z.ZodBoolean;
|
|
14
14
|
status: z.ZodEnum<["pending", "failed", "authorized"]>;
|
|
15
|
+
custom_redirect_url: z.ZodNullable<z.ZodString>;
|
|
16
|
+
custom_redirect_failure_url: z.ZodNullable<z.ZodString>;
|
|
17
|
+
custom_metadata: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull, z.ZodBoolean]>>, Record<string, string | number | boolean | null>, Record<string, string | number | boolean | null>>;
|
|
18
|
+
automatically_manage_new_devices: z.ZodBoolean;
|
|
19
|
+
wait_for_device_creation: z.ZodBoolean;
|
|
20
|
+
authorized_at: z.ZodNullable<z.ZodString>;
|
|
21
|
+
selected_provider: z.ZodNullable<z.ZodString>;
|
|
15
22
|
}, "strip", z.ZodTypeAny, {
|
|
16
23
|
url: string;
|
|
17
24
|
status: "failed" | "pending" | "authorized";
|
|
@@ -24,6 +31,13 @@ export declare const connect_webview: z.ZodObject<{
|
|
|
24
31
|
any_device_allowed: boolean;
|
|
25
32
|
created_at: string;
|
|
26
33
|
login_successful: boolean;
|
|
34
|
+
custom_redirect_url: string | null;
|
|
35
|
+
custom_redirect_failure_url: string | null;
|
|
36
|
+
custom_metadata: Record<string, string | number | boolean | null>;
|
|
37
|
+
automatically_manage_new_devices: boolean;
|
|
38
|
+
wait_for_device_creation: boolean;
|
|
39
|
+
authorized_at: string | null;
|
|
40
|
+
selected_provider: string | null;
|
|
27
41
|
connected_account_id?: string | undefined;
|
|
28
42
|
}, {
|
|
29
43
|
url: string;
|
|
@@ -37,6 +51,13 @@ export declare const connect_webview: z.ZodObject<{
|
|
|
37
51
|
any_device_allowed: boolean;
|
|
38
52
|
created_at: string;
|
|
39
53
|
login_successful: boolean;
|
|
54
|
+
custom_redirect_url: string | null;
|
|
55
|
+
custom_redirect_failure_url: string | null;
|
|
56
|
+
custom_metadata: Record<string, string | number | boolean | null>;
|
|
57
|
+
automatically_manage_new_devices: boolean;
|
|
58
|
+
wait_for_device_creation: boolean;
|
|
59
|
+
authorized_at: string | null;
|
|
60
|
+
selected_provider: string | null;
|
|
40
61
|
connected_account_id?: string | undefined;
|
|
41
62
|
}>;
|
|
42
63
|
export type ConnectWebview = z.infer<typeof connect_webview>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
import { custom_metadata } from './custom-metadata.js';
|
|
2
3
|
export const connect_webview = z.object({
|
|
3
4
|
connect_webview_id: z.string().uuid(),
|
|
4
5
|
connected_account_id: z.string().uuid().optional(),
|
|
@@ -12,5 +13,12 @@ export const connect_webview = z.object({
|
|
|
12
13
|
created_at: z.string().datetime(),
|
|
13
14
|
login_successful: z.boolean(),
|
|
14
15
|
status: z.enum(['pending', 'failed', 'authorized']),
|
|
16
|
+
custom_redirect_url: z.string().url().nullable(),
|
|
17
|
+
custom_redirect_failure_url: z.string().url().nullable(),
|
|
18
|
+
custom_metadata,
|
|
19
|
+
automatically_manage_new_devices: z.boolean(),
|
|
20
|
+
wait_for_device_creation: z.boolean(),
|
|
21
|
+
authorized_at: z.string().datetime().nullable(),
|
|
22
|
+
selected_provider: z.string().nullable(),
|
|
15
23
|
});
|
|
16
24
|
//# sourceMappingURL=connect-webview.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connect-webview.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/stable/models/connect-webview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACrC,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAClD,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACrB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,qBAAqB,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,QAAQ,EAAE,UAAU,CAAC,CAAC;IAC7D,kBAAkB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACvC,gBAAgB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACrC,oBAAoB,EAAE,CAAC,CAAC,OAAO,EAAE;IACjC,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC7B,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"connect-webview.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/stable/models/connect-webview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAEtD,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACrC,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAClD,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACrB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,qBAAqB,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,QAAQ,EAAE,UAAU,CAAC,CAAC;IAC7D,kBAAkB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACvC,gBAAgB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACrC,oBAAoB,EAAE,CAAC,CAAC,OAAO,EAAE;IACjC,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;IAC7B,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC;IACnD,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IAChD,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACxD,eAAe;IACf,gCAAgC,EAAE,CAAC,CAAC,OAAO,EAAE;IAC7C,wBAAwB,EAAE,CAAC,CAAC,OAAO,EAAE;IACrC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC/C,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACzC,CAAC,CAAA"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const custom_metadata: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull, z.ZodBoolean]>>, Record<string, string | number | boolean | null>, Record<string, string | number | boolean | null>>;
|
|
3
|
+
export type CustomMetadata = z.infer<typeof custom_metadata>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export const custom_metadata = z
|
|
3
|
+
.record(z.string().max(40), z.union([z.string().max(500), z.number(), z.null(), z.boolean()]))
|
|
4
|
+
.refine((val) => Object.keys(val).length <= 50, {
|
|
5
|
+
message: 'Custom metadata is limited to a maximum of 50 keys',
|
|
6
|
+
});
|
|
7
|
+
//# sourceMappingURL=custom-metadata.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"custom-metadata.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/stable/models/custom-metadata.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC;KAC7B,MAAM,CACL,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAClB,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CAClE;KACA,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,IAAI,EAAE,EAAE;IAC9C,OAAO,EAAE,oDAAoD;CAC9D,CAAC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/stable/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/stable/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { connect_webview } from './models/index.js';
|
|
1
|
+
export { connect_webview, custom_metadata } from './models/index.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { connect_webview } from './models/index.js';
|
|
1
|
+
export { connect_webview, custom_metadata } from './models/index.js';
|
|
2
2
|
//# sourceMappingURL=schemas.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/stable/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA"}
|
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/stable/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const acs_credential_external_type: z.ZodEnum<["pti_card"]>;
|
|
2
|
+
export declare const acs_credential_external_type: z.ZodEnum<["pti_card", "brivo_credential"]>;
|
|
3
3
|
export type AcsCredentialExternalType = z.infer<typeof acs_credential_external_type>;
|
|
4
4
|
export declare const acs_credential: z.ZodObject<{
|
|
5
5
|
acs_credential_id: z.ZodString;
|
|
6
|
-
acs_user_id: z.ZodString
|
|
6
|
+
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
7
7
|
acs_system_id: z.ZodString;
|
|
8
8
|
code: z.ZodNullable<z.ZodString>;
|
|
9
|
-
external_type: z.ZodEnum<["pti_card"]>;
|
|
9
|
+
external_type: z.ZodEnum<["pti_card", "brivo_credential"]>;
|
|
10
10
|
external_type_display_name: z.ZodString;
|
|
11
11
|
created_at: z.ZodString;
|
|
12
12
|
workspace_id: z.ZodString;
|
|
@@ -15,18 +15,18 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
15
15
|
workspace_id: string;
|
|
16
16
|
created_at: string;
|
|
17
17
|
acs_system_id: string;
|
|
18
|
-
external_type: "pti_card";
|
|
18
|
+
external_type: "pti_card" | "brivo_credential";
|
|
19
19
|
external_type_display_name: string;
|
|
20
|
-
acs_user_id: string;
|
|
21
20
|
acs_credential_id: string;
|
|
21
|
+
acs_user_id?: string | undefined;
|
|
22
22
|
}, {
|
|
23
23
|
code: string | null;
|
|
24
24
|
workspace_id: string;
|
|
25
25
|
created_at: string;
|
|
26
26
|
acs_system_id: string;
|
|
27
|
-
external_type: "pti_card";
|
|
27
|
+
external_type: "pti_card" | "brivo_credential";
|
|
28
28
|
external_type_display_name: string;
|
|
29
|
-
acs_user_id: string;
|
|
30
29
|
acs_credential_id: string;
|
|
30
|
+
acs_user_id?: string | undefined;
|
|
31
31
|
}>;
|
|
32
32
|
export type AcsCredential = z.output<typeof acs_credential>;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export const acs_credential_external_type = z.enum([
|
|
2
|
+
export const acs_credential_external_type = z.enum([
|
|
3
|
+
'pti_card',
|
|
4
|
+
'brivo_credential',
|
|
5
|
+
]);
|
|
3
6
|
export const acs_credential = z.object({
|
|
4
7
|
acs_credential_id: z.string().uuid(),
|
|
5
|
-
acs_user_id: z.string().uuid(),
|
|
8
|
+
acs_user_id: z.string().uuid().optional(),
|
|
6
9
|
acs_system_id: z.string().uuid(),
|
|
7
10
|
code: z.string().nullable(),
|
|
8
11
|
external_type: acs_credential_external_type,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"credential.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"credential.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;CACnB,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACzC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,aAAa,EAAE,4BAA4B;IAC3C,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;IACtC,iFAAiF;IACjF,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;CAChC,CAAC,CAAA"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const acs_user_external_type: z.ZodEnum<["pti_user"]>;
|
|
2
|
+
export declare const acs_user_external_type: z.ZodEnum<["pti_user", "brivo_user"]>;
|
|
3
3
|
export type AcsUserExternalType = z.infer<typeof acs_user_external_type>;
|
|
4
4
|
export declare const acs_user: z.ZodObject<{
|
|
5
5
|
workspace_id: z.ZodString;
|
|
6
6
|
created_at: z.ZodString;
|
|
7
7
|
acs_system_id: z.ZodString;
|
|
8
|
-
external_type: z.ZodEnum<["pti_user"]>;
|
|
8
|
+
external_type: z.ZodEnum<["pti_user", "brivo_user"]>;
|
|
9
9
|
external_type_display_name: z.ZodString;
|
|
10
10
|
acs_user_id: z.ZodString;
|
|
11
11
|
display_name: z.ZodString;
|
|
@@ -18,7 +18,7 @@ export declare const acs_user: z.ZodObject<{
|
|
|
18
18
|
workspace_id: string;
|
|
19
19
|
created_at: string;
|
|
20
20
|
acs_system_id: string;
|
|
21
|
-
external_type: "pti_user";
|
|
21
|
+
external_type: "pti_user" | "brivo_user";
|
|
22
22
|
external_type_display_name: string;
|
|
23
23
|
acs_user_id: string;
|
|
24
24
|
display_name: string;
|
|
@@ -31,7 +31,7 @@ export declare const acs_user: z.ZodObject<{
|
|
|
31
31
|
workspace_id: string;
|
|
32
32
|
created_at: string;
|
|
33
33
|
acs_system_id: string;
|
|
34
|
-
external_type: "pti_user";
|
|
34
|
+
external_type: "pti_user" | "brivo_user";
|
|
35
35
|
external_type_display_name: string;
|
|
36
36
|
acs_user_id: string;
|
|
37
37
|
display_name: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,UAAU,CAAC,CAAC,CAAA;
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,YAAY,CAAC,CAAC,CAAA;AAIxE,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM;KAC1B,MAAM,EAAE;KACR,IAAI,EAAE;KACN,MAAM,CACL,CAAC,GAAG,EAAE,EAAE;IACN,iDAAiD;IACjD,OAAO,mBAAmB,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AACtC,CAAC,EACD;IACE,OAAO,EAAE,oDAAoD;CAC9D,CACF,CAAA;AAEH,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,KAAK,EAAE;SACP,QAAQ,EAAE;SACV,QAAQ,CAAC,gCAAgC,CAAC;IAC7C,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC5C,YAAY,EAAE,YAAY,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC;KACtB,MAAM,CAAC;IACN,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC9B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,sBAAsB;IACrC,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;IACtC,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE;CAC1B,CAAC;KACD,KAAK,CAAC,WAAW,CAAC,CAAA"}
|