@seamapi/types 1.360.0 → 1.361.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 +1645 -1159
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5946 -4573
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +192 -126
- package/lib/seam/connect/models/access-codes/managed-access-code.js +2 -4
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +193 -127
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-credential-pool.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -6
- package/lib/seam/connect/models/acs/acs-credential.js +94 -51
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-encoder.js +12 -7
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-entrance.js +37 -14
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-system.js +48 -41
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-user.js +45 -32
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +26 -26
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +18 -18
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +42 -42
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +18 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +18 -18
- package/lib/seam/connect/models/devices/device.d.ts +1760 -389
- package/lib/seam/connect/models/devices/device.js +82 -4
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.d.ts +4 -4
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +236 -58
- package/lib/seam/connect/models/events/access-codes.d.ts +68 -68
- package/lib/seam/connect/models/events/devices.d.ts +152 -152
- package/lib/seam/connect/models/events/phones.d.ts +4 -4
- package/lib/seam/connect/models/events/seam-event.d.ts +112 -112
- package/lib/seam/connect/models/thermostats/climate-preset.js +12 -10
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +8 -8
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +19 -12
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +2 -2
- package/lib/seam/connect/openapi.d.ts +103 -171
- package/lib/seam/connect/openapi.js +1120 -864
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4421 -3576
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +2 -4
- package/src/lib/seam/connect/models/acs/acs-credential.ts +162 -51
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +22 -7
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +65 -18
- package/src/lib/seam/connect/models/acs/acs-system.ts +81 -52
- package/src/lib/seam/connect/models/acs/acs-user.ts +69 -32
- package/src/lib/seam/connect/models/devices/device.ts +103 -4
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +28 -10
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +31 -12
- package/src/lib/seam/connect/openapi.ts +1259 -878
- package/src/lib/seam/connect/route-types.ts +4469 -3648
|
@@ -55,21 +55,29 @@ declare const _default: {
|
|
|
55
55
|
message: {
|
|
56
56
|
type: string;
|
|
57
57
|
};
|
|
58
|
-
is_device_error?: never;
|
|
59
58
|
created_at?: never;
|
|
60
59
|
is_connected_account_error?: never;
|
|
61
|
-
|
|
60
|
+
is_device_error?: never;
|
|
62
61
|
};
|
|
63
62
|
required: string[];
|
|
64
63
|
type: string;
|
|
65
64
|
} | {
|
|
66
65
|
description: string;
|
|
67
66
|
properties: {
|
|
67
|
+
created_at: {
|
|
68
|
+
format: string;
|
|
69
|
+
type: string;
|
|
70
|
+
description?: never;
|
|
71
|
+
};
|
|
68
72
|
error_code: {
|
|
69
73
|
description: string;
|
|
70
74
|
enum: string[];
|
|
71
75
|
type: string;
|
|
72
76
|
};
|
|
77
|
+
is_connected_account_error: {
|
|
78
|
+
enum: boolean[];
|
|
79
|
+
type: string;
|
|
80
|
+
};
|
|
73
81
|
is_device_error: {
|
|
74
82
|
enum: boolean[];
|
|
75
83
|
type: string;
|
|
@@ -78,9 +86,6 @@ declare const _default: {
|
|
|
78
86
|
type: string;
|
|
79
87
|
};
|
|
80
88
|
is_access_code_error?: never;
|
|
81
|
-
created_at?: never;
|
|
82
|
-
is_connected_account_error?: never;
|
|
83
|
-
salto_ks_metadata?: never;
|
|
84
89
|
};
|
|
85
90
|
required: string[];
|
|
86
91
|
type: string;
|
|
@@ -88,16 +93,16 @@ declare const _default: {
|
|
|
88
93
|
description: string;
|
|
89
94
|
properties: {
|
|
90
95
|
created_at: {
|
|
91
|
-
description: string;
|
|
92
96
|
format: string;
|
|
93
97
|
type: string;
|
|
98
|
+
description?: never;
|
|
94
99
|
};
|
|
95
100
|
error_code: {
|
|
96
101
|
description: string;
|
|
97
102
|
enum: string[];
|
|
98
103
|
type: string;
|
|
99
104
|
};
|
|
100
|
-
|
|
105
|
+
is_device_error: {
|
|
101
106
|
enum: boolean[];
|
|
102
107
|
type: string;
|
|
103
108
|
};
|
|
@@ -105,8 +110,7 @@ declare const _default: {
|
|
|
105
110
|
type: string;
|
|
106
111
|
};
|
|
107
112
|
is_access_code_error?: never;
|
|
108
|
-
|
|
109
|
-
salto_ks_metadata?: never;
|
|
113
|
+
is_connected_account_error?: never;
|
|
110
114
|
};
|
|
111
115
|
required: string[];
|
|
112
116
|
type: string;
|
|
@@ -130,35 +134,6 @@ declare const _default: {
|
|
|
130
134
|
message: {
|
|
131
135
|
type: string;
|
|
132
136
|
};
|
|
133
|
-
salto_ks_metadata: {
|
|
134
|
-
properties: {
|
|
135
|
-
sites: {
|
|
136
|
-
items: {
|
|
137
|
-
properties: {
|
|
138
|
-
site_id: {
|
|
139
|
-
type: string;
|
|
140
|
-
};
|
|
141
|
-
site_name: {
|
|
142
|
-
type: string;
|
|
143
|
-
};
|
|
144
|
-
site_user_subscription_limit: {
|
|
145
|
-
minimum: number;
|
|
146
|
-
type: string;
|
|
147
|
-
};
|
|
148
|
-
subscribed_site_user_count: {
|
|
149
|
-
minimum: number;
|
|
150
|
-
type: string;
|
|
151
|
-
};
|
|
152
|
-
};
|
|
153
|
-
required: string[];
|
|
154
|
-
type: string;
|
|
155
|
-
};
|
|
156
|
-
type: string;
|
|
157
|
-
};
|
|
158
|
-
};
|
|
159
|
-
required: string[];
|
|
160
|
-
type: string;
|
|
161
|
-
};
|
|
162
137
|
is_access_code_error?: never;
|
|
163
138
|
is_device_error?: never;
|
|
164
139
|
};
|
|
@@ -396,6 +371,7 @@ declare const _default: {
|
|
|
396
371
|
type: string;
|
|
397
372
|
};
|
|
398
373
|
card_number: {
|
|
374
|
+
description: string;
|
|
399
375
|
nullable: boolean;
|
|
400
376
|
type: string;
|
|
401
377
|
};
|
|
@@ -444,6 +420,7 @@ declare const _default: {
|
|
|
444
420
|
type: string;
|
|
445
421
|
};
|
|
446
422
|
is_issued: {
|
|
423
|
+
description: string;
|
|
447
424
|
type: string;
|
|
448
425
|
};
|
|
449
426
|
is_latest_desired_state_synced_with_provider: {
|
|
@@ -464,6 +441,7 @@ declare const _default: {
|
|
|
464
441
|
type: string;
|
|
465
442
|
};
|
|
466
443
|
issued_at: {
|
|
444
|
+
description: string;
|
|
467
445
|
format: string;
|
|
468
446
|
nullable: boolean;
|
|
469
447
|
type: string;
|
|
@@ -700,6 +678,7 @@ declare const _default: {
|
|
|
700
678
|
type: string;
|
|
701
679
|
};
|
|
702
680
|
assa_abloy_vostio_metadata: {
|
|
681
|
+
description: string;
|
|
703
682
|
properties: {
|
|
704
683
|
door_name: {
|
|
705
684
|
type: string;
|
|
@@ -732,6 +711,7 @@ declare const _default: {
|
|
|
732
711
|
type: string;
|
|
733
712
|
};
|
|
734
713
|
dormakaba_community_metadata: {
|
|
714
|
+
description: string;
|
|
735
715
|
properties: {
|
|
736
716
|
access_point_name: {
|
|
737
717
|
type: string;
|
|
@@ -741,12 +721,15 @@ declare const _default: {
|
|
|
741
721
|
type: string;
|
|
742
722
|
};
|
|
743
723
|
errors: {
|
|
724
|
+
description: string;
|
|
744
725
|
items: {
|
|
745
726
|
properties: {
|
|
746
727
|
error_code: {
|
|
728
|
+
description: string;
|
|
747
729
|
type: string;
|
|
748
730
|
};
|
|
749
731
|
message: {
|
|
732
|
+
description: string;
|
|
750
733
|
type: string;
|
|
751
734
|
};
|
|
752
735
|
};
|
|
@@ -756,6 +739,7 @@ declare const _default: {
|
|
|
756
739
|
type: string;
|
|
757
740
|
};
|
|
758
741
|
latch_metadata: {
|
|
742
|
+
description: string;
|
|
759
743
|
properties: {
|
|
760
744
|
accessibility_type: {
|
|
761
745
|
type: string;
|
|
@@ -774,6 +758,7 @@ declare const _default: {
|
|
|
774
758
|
type: string;
|
|
775
759
|
};
|
|
776
760
|
salto_ks_metadata: {
|
|
761
|
+
description: string;
|
|
777
762
|
properties: {
|
|
778
763
|
battery_level: {
|
|
779
764
|
type: string;
|
|
@@ -804,6 +789,7 @@ declare const _default: {
|
|
|
804
789
|
type: string;
|
|
805
790
|
};
|
|
806
791
|
salto_space_metadata: {
|
|
792
|
+
description: string;
|
|
807
793
|
properties: {
|
|
808
794
|
door_description: {
|
|
809
795
|
type: string;
|
|
@@ -819,6 +805,7 @@ declare const _default: {
|
|
|
819
805
|
type: string;
|
|
820
806
|
};
|
|
821
807
|
visionline_metadata: {
|
|
808
|
+
description: string;
|
|
822
809
|
properties: {
|
|
823
810
|
door_category: {
|
|
824
811
|
enum: string[];
|
|
@@ -901,7 +888,6 @@ declare const _default: {
|
|
|
901
888
|
format: string;
|
|
902
889
|
nullable: boolean;
|
|
903
890
|
type: string;
|
|
904
|
-
'x-draft': string;
|
|
905
891
|
};
|
|
906
892
|
errors: {
|
|
907
893
|
description: string;
|
|
@@ -910,7 +896,7 @@ declare const _default: {
|
|
|
910
896
|
discriminator: {
|
|
911
897
|
propertyName: string;
|
|
912
898
|
};
|
|
913
|
-
oneOf:
|
|
899
|
+
oneOf: {
|
|
914
900
|
description: string;
|
|
915
901
|
properties: {
|
|
916
902
|
created_at: {
|
|
@@ -930,27 +916,7 @@ declare const _default: {
|
|
|
930
916
|
};
|
|
931
917
|
required: string[];
|
|
932
918
|
type: string;
|
|
933
|
-
}
|
|
934
|
-
properties: {
|
|
935
|
-
created_at: {
|
|
936
|
-
description: string;
|
|
937
|
-
format: string;
|
|
938
|
-
type: string;
|
|
939
|
-
};
|
|
940
|
-
error_code: {
|
|
941
|
-
description: string;
|
|
942
|
-
enum: string[];
|
|
943
|
-
type: string;
|
|
944
|
-
};
|
|
945
|
-
message: {
|
|
946
|
-
description: string;
|
|
947
|
-
type: string;
|
|
948
|
-
};
|
|
949
|
-
};
|
|
950
|
-
required: string[];
|
|
951
|
-
type: string;
|
|
952
|
-
description?: never;
|
|
953
|
-
})[];
|
|
919
|
+
}[];
|
|
954
920
|
};
|
|
955
921
|
type: string;
|
|
956
922
|
};
|
|
@@ -1027,6 +993,7 @@ declare const _default: {
|
|
|
1027
993
|
propertyName: string;
|
|
1028
994
|
};
|
|
1029
995
|
oneOf: ({
|
|
996
|
+
description: string;
|
|
1030
997
|
properties: {
|
|
1031
998
|
created_at: {
|
|
1032
999
|
description: string;
|
|
@@ -1047,6 +1014,7 @@ declare const _default: {
|
|
|
1047
1014
|
required: string[];
|
|
1048
1015
|
type: string;
|
|
1049
1016
|
} | {
|
|
1017
|
+
description: string;
|
|
1050
1018
|
properties: {
|
|
1051
1019
|
created_at: {
|
|
1052
1020
|
description: string;
|
|
@@ -1237,10 +1205,12 @@ declare const _default: {
|
|
|
1237
1205
|
description: string;
|
|
1238
1206
|
properties: {
|
|
1239
1207
|
created_at: {
|
|
1208
|
+
description: string;
|
|
1240
1209
|
format: string;
|
|
1241
1210
|
type: string;
|
|
1242
1211
|
};
|
|
1243
1212
|
message: {
|
|
1213
|
+
description: string;
|
|
1244
1214
|
type: string;
|
|
1245
1215
|
};
|
|
1246
1216
|
warning_code: {
|
|
@@ -1443,19 +1413,24 @@ declare const _default: {
|
|
|
1443
1413
|
description: string;
|
|
1444
1414
|
properties: {
|
|
1445
1415
|
cancelled: {
|
|
1416
|
+
description: string;
|
|
1446
1417
|
type: string;
|
|
1447
1418
|
};
|
|
1448
1419
|
card_format: {
|
|
1420
|
+
description: string;
|
|
1449
1421
|
enum: string[];
|
|
1450
1422
|
type: string;
|
|
1451
1423
|
};
|
|
1452
1424
|
card_holder: {
|
|
1425
|
+
description: string;
|
|
1453
1426
|
type: string;
|
|
1454
1427
|
};
|
|
1455
1428
|
card_id: {
|
|
1429
|
+
description: string;
|
|
1456
1430
|
type: string;
|
|
1457
1431
|
};
|
|
1458
1432
|
common_acs_entrance_ids: {
|
|
1433
|
+
description: string;
|
|
1459
1434
|
items: {
|
|
1460
1435
|
format: string;
|
|
1461
1436
|
type: string;
|
|
@@ -1463,12 +1438,15 @@ declare const _default: {
|
|
|
1463
1438
|
type: string;
|
|
1464
1439
|
};
|
|
1465
1440
|
discarded: {
|
|
1441
|
+
description: string;
|
|
1466
1442
|
type: string;
|
|
1467
1443
|
};
|
|
1468
1444
|
expired: {
|
|
1445
|
+
description: string;
|
|
1469
1446
|
type: string;
|
|
1470
1447
|
};
|
|
1471
1448
|
guest_acs_entrance_ids: {
|
|
1449
|
+
description: string;
|
|
1472
1450
|
items: {
|
|
1473
1451
|
format: string;
|
|
1474
1452
|
type: string;
|
|
@@ -1476,16 +1454,20 @@ declare const _default: {
|
|
|
1476
1454
|
type: string;
|
|
1477
1455
|
};
|
|
1478
1456
|
number_of_issued_cards: {
|
|
1457
|
+
description: string;
|
|
1479
1458
|
format: string;
|
|
1480
1459
|
type: string;
|
|
1481
1460
|
};
|
|
1482
1461
|
overridden: {
|
|
1462
|
+
description: string;
|
|
1483
1463
|
type: string;
|
|
1484
1464
|
};
|
|
1485
1465
|
overwritten: {
|
|
1466
|
+
description: string;
|
|
1486
1467
|
type: string;
|
|
1487
1468
|
};
|
|
1488
1469
|
pending_auto_update: {
|
|
1470
|
+
description: string;
|
|
1489
1471
|
type: string;
|
|
1490
1472
|
};
|
|
1491
1473
|
};
|
|
@@ -1554,6 +1536,7 @@ declare const _default: {
|
|
|
1554
1536
|
type: string;
|
|
1555
1537
|
};
|
|
1556
1538
|
card_number: {
|
|
1539
|
+
description: string;
|
|
1557
1540
|
nullable: boolean;
|
|
1558
1541
|
type: string;
|
|
1559
1542
|
};
|
|
@@ -1602,6 +1585,7 @@ declare const _default: {
|
|
|
1602
1585
|
type: string;
|
|
1603
1586
|
};
|
|
1604
1587
|
is_issued: {
|
|
1588
|
+
description: string;
|
|
1605
1589
|
type: string;
|
|
1606
1590
|
};
|
|
1607
1591
|
is_latest_desired_state_synced_with_provider: {
|
|
@@ -1622,6 +1606,7 @@ declare const _default: {
|
|
|
1622
1606
|
type: string;
|
|
1623
1607
|
};
|
|
1624
1608
|
issued_at: {
|
|
1609
|
+
description: string;
|
|
1625
1610
|
format: string;
|
|
1626
1611
|
nullable: boolean;
|
|
1627
1612
|
type: string;
|
|
@@ -1886,6 +1871,7 @@ declare const _default: {
|
|
|
1886
1871
|
type: string;
|
|
1887
1872
|
};
|
|
1888
1873
|
card_number: {
|
|
1874
|
+
description: string;
|
|
1889
1875
|
nullable: boolean;
|
|
1890
1876
|
type: string;
|
|
1891
1877
|
};
|
|
@@ -1934,6 +1920,7 @@ declare const _default: {
|
|
|
1934
1920
|
type: string;
|
|
1935
1921
|
};
|
|
1936
1922
|
is_issued: {
|
|
1923
|
+
description: string;
|
|
1937
1924
|
type: string;
|
|
1938
1925
|
};
|
|
1939
1926
|
is_latest_desired_state_synced_with_provider: {
|
|
@@ -1954,6 +1941,7 @@ declare const _default: {
|
|
|
1954
1941
|
type: string;
|
|
1955
1942
|
};
|
|
1956
1943
|
issued_at: {
|
|
1944
|
+
description: string;
|
|
1957
1945
|
format: string;
|
|
1958
1946
|
nullable: boolean;
|
|
1959
1947
|
type: string;
|
|
@@ -2734,11 +2722,20 @@ declare const _default: {
|
|
|
2734
2722
|
oneOf: ({
|
|
2735
2723
|
description: string;
|
|
2736
2724
|
properties: {
|
|
2725
|
+
created_at: {
|
|
2726
|
+
format: string;
|
|
2727
|
+
type: string;
|
|
2728
|
+
description?: never;
|
|
2729
|
+
};
|
|
2737
2730
|
error_code: {
|
|
2738
2731
|
description: string;
|
|
2739
2732
|
enum: string[];
|
|
2740
2733
|
type: string;
|
|
2741
2734
|
};
|
|
2735
|
+
is_connected_account_error: {
|
|
2736
|
+
enum: boolean[];
|
|
2737
|
+
type: string;
|
|
2738
|
+
};
|
|
2742
2739
|
is_device_error: {
|
|
2743
2740
|
enum: boolean[];
|
|
2744
2741
|
type: string;
|
|
@@ -2746,9 +2743,6 @@ declare const _default: {
|
|
|
2746
2743
|
message: {
|
|
2747
2744
|
type: string;
|
|
2748
2745
|
};
|
|
2749
|
-
created_at?: never;
|
|
2750
|
-
is_connected_account_error?: never;
|
|
2751
|
-
salto_ks_metadata?: never;
|
|
2752
2746
|
};
|
|
2753
2747
|
required: string[];
|
|
2754
2748
|
type: string;
|
|
@@ -2756,24 +2750,23 @@ declare const _default: {
|
|
|
2756
2750
|
description: string;
|
|
2757
2751
|
properties: {
|
|
2758
2752
|
created_at: {
|
|
2759
|
-
description: string;
|
|
2760
2753
|
format: string;
|
|
2761
2754
|
type: string;
|
|
2755
|
+
description?: never;
|
|
2762
2756
|
};
|
|
2763
2757
|
error_code: {
|
|
2764
2758
|
description: string;
|
|
2765
2759
|
enum: string[];
|
|
2766
2760
|
type: string;
|
|
2767
2761
|
};
|
|
2768
|
-
|
|
2762
|
+
is_device_error: {
|
|
2769
2763
|
enum: boolean[];
|
|
2770
2764
|
type: string;
|
|
2771
2765
|
};
|
|
2772
2766
|
message: {
|
|
2773
2767
|
type: string;
|
|
2774
2768
|
};
|
|
2775
|
-
|
|
2776
|
-
salto_ks_metadata?: never;
|
|
2769
|
+
is_connected_account_error?: never;
|
|
2777
2770
|
};
|
|
2778
2771
|
required: string[];
|
|
2779
2772
|
type: string;
|
|
@@ -2797,35 +2790,6 @@ declare const _default: {
|
|
|
2797
2790
|
message: {
|
|
2798
2791
|
type: string;
|
|
2799
2792
|
};
|
|
2800
|
-
salto_ks_metadata: {
|
|
2801
|
-
properties: {
|
|
2802
|
-
sites: {
|
|
2803
|
-
items: {
|
|
2804
|
-
properties: {
|
|
2805
|
-
site_id: {
|
|
2806
|
-
type: string;
|
|
2807
|
-
};
|
|
2808
|
-
site_name: {
|
|
2809
|
-
type: string;
|
|
2810
|
-
};
|
|
2811
|
-
site_user_subscription_limit: {
|
|
2812
|
-
minimum: number;
|
|
2813
|
-
type: string;
|
|
2814
|
-
};
|
|
2815
|
-
subscribed_site_user_count: {
|
|
2816
|
-
minimum: number;
|
|
2817
|
-
type: string;
|
|
2818
|
-
};
|
|
2819
|
-
};
|
|
2820
|
-
required: string[];
|
|
2821
|
-
type: string;
|
|
2822
|
-
};
|
|
2823
|
-
type: string;
|
|
2824
|
-
};
|
|
2825
|
-
};
|
|
2826
|
-
required: string[];
|
|
2827
|
-
type: string;
|
|
2828
|
-
};
|
|
2829
2793
|
is_device_error?: never;
|
|
2830
2794
|
};
|
|
2831
2795
|
required: string[];
|
|
@@ -3955,9 +3919,11 @@ declare const _default: {
|
|
|
3955
3919
|
items: {
|
|
3956
3920
|
properties: {
|
|
3957
3921
|
error_code: {
|
|
3922
|
+
description: string;
|
|
3958
3923
|
type: string;
|
|
3959
3924
|
};
|
|
3960
3925
|
message: {
|
|
3926
|
+
description: string;
|
|
3961
3927
|
type: string;
|
|
3962
3928
|
};
|
|
3963
3929
|
};
|
|
@@ -4332,6 +4298,10 @@ declare const _default: {
|
|
|
4332
4298
|
oneOf: {
|
|
4333
4299
|
description: string;
|
|
4334
4300
|
properties: {
|
|
4301
|
+
created_at: {
|
|
4302
|
+
format: string;
|
|
4303
|
+
type: string;
|
|
4304
|
+
};
|
|
4335
4305
|
message: {
|
|
4336
4306
|
type: string;
|
|
4337
4307
|
};
|
|
@@ -7315,9 +7285,11 @@ declare const _default: {
|
|
|
7315
7285
|
items: {
|
|
7316
7286
|
properties: {
|
|
7317
7287
|
error_code: {
|
|
7288
|
+
description: string;
|
|
7318
7289
|
type: string;
|
|
7319
7290
|
};
|
|
7320
7291
|
message: {
|
|
7292
|
+
description: string;
|
|
7321
7293
|
type: string;
|
|
7322
7294
|
};
|
|
7323
7295
|
};
|
|
@@ -7404,21 +7376,29 @@ declare const _default: {
|
|
|
7404
7376
|
message: {
|
|
7405
7377
|
type: string;
|
|
7406
7378
|
};
|
|
7407
|
-
is_device_error?: never;
|
|
7408
7379
|
created_at?: never;
|
|
7409
7380
|
is_connected_account_error?: never;
|
|
7410
|
-
|
|
7381
|
+
is_device_error?: never;
|
|
7411
7382
|
};
|
|
7412
7383
|
required: string[];
|
|
7413
7384
|
type: string;
|
|
7414
7385
|
} | {
|
|
7415
7386
|
description: string;
|
|
7416
7387
|
properties: {
|
|
7388
|
+
created_at: {
|
|
7389
|
+
format: string;
|
|
7390
|
+
type: string;
|
|
7391
|
+
description?: never;
|
|
7392
|
+
};
|
|
7417
7393
|
error_code: {
|
|
7418
7394
|
description: string;
|
|
7419
7395
|
enum: string[];
|
|
7420
7396
|
type: string;
|
|
7421
7397
|
};
|
|
7398
|
+
is_connected_account_error: {
|
|
7399
|
+
enum: boolean[];
|
|
7400
|
+
type: string;
|
|
7401
|
+
};
|
|
7422
7402
|
is_device_error: {
|
|
7423
7403
|
enum: boolean[];
|
|
7424
7404
|
type: string;
|
|
@@ -7427,9 +7407,6 @@ declare const _default: {
|
|
|
7427
7407
|
type: string;
|
|
7428
7408
|
};
|
|
7429
7409
|
is_access_code_error?: never;
|
|
7430
|
-
created_at?: never;
|
|
7431
|
-
is_connected_account_error?: never;
|
|
7432
|
-
salto_ks_metadata?: never;
|
|
7433
7410
|
};
|
|
7434
7411
|
required: string[];
|
|
7435
7412
|
type: string;
|
|
@@ -7437,16 +7414,16 @@ declare const _default: {
|
|
|
7437
7414
|
description: string;
|
|
7438
7415
|
properties: {
|
|
7439
7416
|
created_at: {
|
|
7440
|
-
description: string;
|
|
7441
7417
|
format: string;
|
|
7442
7418
|
type: string;
|
|
7419
|
+
description?: never;
|
|
7443
7420
|
};
|
|
7444
7421
|
error_code: {
|
|
7445
7422
|
description: string;
|
|
7446
7423
|
enum: string[];
|
|
7447
7424
|
type: string;
|
|
7448
7425
|
};
|
|
7449
|
-
|
|
7426
|
+
is_device_error: {
|
|
7450
7427
|
enum: boolean[];
|
|
7451
7428
|
type: string;
|
|
7452
7429
|
};
|
|
@@ -7454,8 +7431,7 @@ declare const _default: {
|
|
|
7454
7431
|
type: string;
|
|
7455
7432
|
};
|
|
7456
7433
|
is_access_code_error?: never;
|
|
7457
|
-
|
|
7458
|
-
salto_ks_metadata?: never;
|
|
7434
|
+
is_connected_account_error?: never;
|
|
7459
7435
|
};
|
|
7460
7436
|
required: string[];
|
|
7461
7437
|
type: string;
|
|
@@ -7479,35 +7455,6 @@ declare const _default: {
|
|
|
7479
7455
|
message: {
|
|
7480
7456
|
type: string;
|
|
7481
7457
|
};
|
|
7482
|
-
salto_ks_metadata: {
|
|
7483
|
-
properties: {
|
|
7484
|
-
sites: {
|
|
7485
|
-
items: {
|
|
7486
|
-
properties: {
|
|
7487
|
-
site_id: {
|
|
7488
|
-
type: string;
|
|
7489
|
-
};
|
|
7490
|
-
site_name: {
|
|
7491
|
-
type: string;
|
|
7492
|
-
};
|
|
7493
|
-
site_user_subscription_limit: {
|
|
7494
|
-
minimum: number;
|
|
7495
|
-
type: string;
|
|
7496
|
-
};
|
|
7497
|
-
subscribed_site_user_count: {
|
|
7498
|
-
minimum: number;
|
|
7499
|
-
type: string;
|
|
7500
|
-
};
|
|
7501
|
-
};
|
|
7502
|
-
required: string[];
|
|
7503
|
-
type: string;
|
|
7504
|
-
};
|
|
7505
|
-
type: string;
|
|
7506
|
-
};
|
|
7507
|
-
};
|
|
7508
|
-
required: string[];
|
|
7509
|
-
type: string;
|
|
7510
|
-
};
|
|
7511
7458
|
is_access_code_error?: never;
|
|
7512
7459
|
is_device_error?: never;
|
|
7513
7460
|
};
|
|
@@ -7708,6 +7655,7 @@ declare const _default: {
|
|
|
7708
7655
|
type: string;
|
|
7709
7656
|
};
|
|
7710
7657
|
card_number: {
|
|
7658
|
+
description: string;
|
|
7711
7659
|
nullable: boolean;
|
|
7712
7660
|
type: string;
|
|
7713
7661
|
};
|
|
@@ -7756,6 +7704,7 @@ declare const _default: {
|
|
|
7756
7704
|
type: string;
|
|
7757
7705
|
};
|
|
7758
7706
|
is_issued: {
|
|
7707
|
+
description: string;
|
|
7759
7708
|
type: string;
|
|
7760
7709
|
};
|
|
7761
7710
|
is_latest_desired_state_synced_with_provider: {
|
|
@@ -7776,6 +7725,7 @@ declare const _default: {
|
|
|
7776
7725
|
type: string;
|
|
7777
7726
|
};
|
|
7778
7727
|
issued_at: {
|
|
7728
|
+
description: string;
|
|
7779
7729
|
format: string;
|
|
7780
7730
|
nullable: boolean;
|
|
7781
7731
|
type: string;
|
|
@@ -8031,10 +7981,12 @@ declare const _default: {
|
|
|
8031
7981
|
description: string;
|
|
8032
7982
|
properties: {
|
|
8033
7983
|
created_at: {
|
|
7984
|
+
description: string;
|
|
8034
7985
|
format: string;
|
|
8035
7986
|
type: string;
|
|
8036
7987
|
};
|
|
8037
7988
|
message: {
|
|
7989
|
+
description: string;
|
|
8038
7990
|
type: string;
|
|
8039
7991
|
};
|
|
8040
7992
|
warning_code: {
|
|
@@ -8137,11 +8089,20 @@ declare const _default: {
|
|
|
8137
8089
|
oneOf: ({
|
|
8138
8090
|
description: string;
|
|
8139
8091
|
properties: {
|
|
8092
|
+
created_at: {
|
|
8093
|
+
format: string;
|
|
8094
|
+
type: string;
|
|
8095
|
+
description?: never;
|
|
8096
|
+
};
|
|
8140
8097
|
error_code: {
|
|
8141
8098
|
description: string;
|
|
8142
8099
|
enum: string[];
|
|
8143
8100
|
type: string;
|
|
8144
8101
|
};
|
|
8102
|
+
is_connected_account_error: {
|
|
8103
|
+
enum: boolean[];
|
|
8104
|
+
type: string;
|
|
8105
|
+
};
|
|
8145
8106
|
is_device_error: {
|
|
8146
8107
|
enum: boolean[];
|
|
8147
8108
|
type: string;
|
|
@@ -8149,9 +8110,6 @@ declare const _default: {
|
|
|
8149
8110
|
message: {
|
|
8150
8111
|
type: string;
|
|
8151
8112
|
};
|
|
8152
|
-
created_at?: never;
|
|
8153
|
-
is_connected_account_error?: never;
|
|
8154
|
-
salto_ks_metadata?: never;
|
|
8155
8113
|
};
|
|
8156
8114
|
required: string[];
|
|
8157
8115
|
type: string;
|
|
@@ -8159,24 +8117,23 @@ declare const _default: {
|
|
|
8159
8117
|
description: string;
|
|
8160
8118
|
properties: {
|
|
8161
8119
|
created_at: {
|
|
8162
|
-
description: string;
|
|
8163
8120
|
format: string;
|
|
8164
8121
|
type: string;
|
|
8122
|
+
description?: never;
|
|
8165
8123
|
};
|
|
8166
8124
|
error_code: {
|
|
8167
8125
|
description: string;
|
|
8168
8126
|
enum: string[];
|
|
8169
8127
|
type: string;
|
|
8170
8128
|
};
|
|
8171
|
-
|
|
8129
|
+
is_device_error: {
|
|
8172
8130
|
enum: boolean[];
|
|
8173
8131
|
type: string;
|
|
8174
8132
|
};
|
|
8175
8133
|
message: {
|
|
8176
8134
|
type: string;
|
|
8177
8135
|
};
|
|
8178
|
-
|
|
8179
|
-
salto_ks_metadata?: never;
|
|
8136
|
+
is_connected_account_error?: never;
|
|
8180
8137
|
};
|
|
8181
8138
|
required: string[];
|
|
8182
8139
|
type: string;
|
|
@@ -8200,35 +8157,6 @@ declare const _default: {
|
|
|
8200
8157
|
message: {
|
|
8201
8158
|
type: string;
|
|
8202
8159
|
};
|
|
8203
|
-
salto_ks_metadata: {
|
|
8204
|
-
properties: {
|
|
8205
|
-
sites: {
|
|
8206
|
-
items: {
|
|
8207
|
-
properties: {
|
|
8208
|
-
site_id: {
|
|
8209
|
-
type: string;
|
|
8210
|
-
};
|
|
8211
|
-
site_name: {
|
|
8212
|
-
type: string;
|
|
8213
|
-
};
|
|
8214
|
-
site_user_subscription_limit: {
|
|
8215
|
-
minimum: number;
|
|
8216
|
-
type: string;
|
|
8217
|
-
};
|
|
8218
|
-
subscribed_site_user_count: {
|
|
8219
|
-
minimum: number;
|
|
8220
|
-
type: string;
|
|
8221
|
-
};
|
|
8222
|
-
};
|
|
8223
|
-
required: string[];
|
|
8224
|
-
type: string;
|
|
8225
|
-
};
|
|
8226
|
-
type: string;
|
|
8227
|
-
};
|
|
8228
|
-
};
|
|
8229
|
-
required: string[];
|
|
8230
|
-
type: string;
|
|
8231
|
-
};
|
|
8232
8160
|
is_device_error?: never;
|
|
8233
8161
|
};
|
|
8234
8162
|
required: string[];
|
|
@@ -8385,6 +8313,10 @@ declare const _default: {
|
|
|
8385
8313
|
oneOf: {
|
|
8386
8314
|
description: string;
|
|
8387
8315
|
properties: {
|
|
8316
|
+
created_at: {
|
|
8317
|
+
format: string;
|
|
8318
|
+
type: string;
|
|
8319
|
+
};
|
|
8388
8320
|
message: {
|
|
8389
8321
|
type: string;
|
|
8390
8322
|
};
|