@seamapi/types 1.238.0 → 1.240.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 +90 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +119 -0
- package/lib/seam/connect/models/acs/acs-system.d.ts +45 -0
- package/lib/seam/connect/models/acs/acs-system.js +9 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +79 -0
- package/lib/seam/connect/models/acs/acs-user.js +5 -0
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.js +74 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +56 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +11 -0
- package/src/lib/seam/connect/models/acs/acs-user.ts +8 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +77 -0
- package/src/lib/seam/connect/route-types.ts +67 -0
package/dist/connect.d.cts
CHANGED
|
@@ -836,6 +836,19 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
836
836
|
message: string;
|
|
837
837
|
error_code: "salto_site_user_limit_reached";
|
|
838
838
|
created_at: string;
|
|
839
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
840
|
+
created_at: z.ZodString;
|
|
841
|
+
message: z.ZodString;
|
|
842
|
+
}, {
|
|
843
|
+
error_code: z.ZodLiteral<"salto_seam_integration_blocked">;
|
|
844
|
+
}>, "strip", z.ZodTypeAny, {
|
|
845
|
+
message: string;
|
|
846
|
+
error_code: "salto_seam_integration_blocked";
|
|
847
|
+
created_at: string;
|
|
848
|
+
}, {
|
|
849
|
+
message: string;
|
|
850
|
+
error_code: "salto_seam_integration_blocked";
|
|
851
|
+
created_at: string;
|
|
839
852
|
}>]>, "many">;
|
|
840
853
|
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
841
854
|
created_at: z.ZodString;
|
|
@@ -870,6 +883,10 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
870
883
|
message: string;
|
|
871
884
|
error_code: "salto_site_user_limit_reached";
|
|
872
885
|
created_at: string;
|
|
886
|
+
} | {
|
|
887
|
+
message: string;
|
|
888
|
+
error_code: "salto_seam_integration_blocked";
|
|
889
|
+
created_at: string;
|
|
873
890
|
})[];
|
|
874
891
|
warnings: {
|
|
875
892
|
message: string;
|
|
@@ -909,6 +926,10 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
909
926
|
message: string;
|
|
910
927
|
error_code: "salto_site_user_limit_reached";
|
|
911
928
|
created_at: string;
|
|
929
|
+
} | {
|
|
930
|
+
message: string;
|
|
931
|
+
error_code: "salto_seam_integration_blocked";
|
|
932
|
+
created_at: string;
|
|
912
933
|
})[];
|
|
913
934
|
warnings: {
|
|
914
935
|
message: string;
|
|
@@ -979,6 +1000,19 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
979
1000
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
980
1001
|
created_at: z.ZodString;
|
|
981
1002
|
message: z.ZodString;
|
|
1003
|
+
}, {
|
|
1004
|
+
warning_code: z.ZodLiteral<"failed_to_update_acs_user_on_acs_system">;
|
|
1005
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1006
|
+
message: string;
|
|
1007
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
1008
|
+
created_at: string;
|
|
1009
|
+
}, {
|
|
1010
|
+
message: string;
|
|
1011
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
1012
|
+
created_at: string;
|
|
1013
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1014
|
+
created_at: z.ZodString;
|
|
1015
|
+
message: z.ZodString;
|
|
982
1016
|
}, {
|
|
983
1017
|
warning_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
984
1018
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1021,6 +1055,10 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1021
1055
|
message: string;
|
|
1022
1056
|
warning_code: "salto_ks_user_not_subscribed";
|
|
1023
1057
|
created_at: string;
|
|
1058
|
+
} | {
|
|
1059
|
+
message: string;
|
|
1060
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
1061
|
+
created_at: string;
|
|
1024
1062
|
} | {
|
|
1025
1063
|
message: string;
|
|
1026
1064
|
warning_code: "salto_site_user_suspended";
|
|
@@ -1060,6 +1098,10 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1060
1098
|
message: string;
|
|
1061
1099
|
warning_code: "salto_ks_user_not_subscribed";
|
|
1062
1100
|
created_at: string;
|
|
1101
|
+
} | {
|
|
1102
|
+
message: string;
|
|
1103
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
1104
|
+
created_at: string;
|
|
1063
1105
|
} | {
|
|
1064
1106
|
message: string;
|
|
1065
1107
|
warning_code: "salto_site_user_suspended";
|
|
@@ -1132,6 +1174,19 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1132
1174
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1133
1175
|
created_at: z.ZodString;
|
|
1134
1176
|
message: z.ZodString;
|
|
1177
|
+
}, {
|
|
1178
|
+
warning_code: z.ZodLiteral<"failed_to_update_acs_user_on_acs_system">;
|
|
1179
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1180
|
+
message: string;
|
|
1181
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
1182
|
+
created_at: string;
|
|
1183
|
+
}, {
|
|
1184
|
+
message: string;
|
|
1185
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
1186
|
+
created_at: string;
|
|
1187
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1188
|
+
created_at: z.ZodString;
|
|
1189
|
+
message: z.ZodString;
|
|
1135
1190
|
}, {
|
|
1136
1191
|
warning_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
1137
1192
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1174,6 +1229,10 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1174
1229
|
message: string;
|
|
1175
1230
|
warning_code: "salto_ks_user_not_subscribed";
|
|
1176
1231
|
created_at: string;
|
|
1232
|
+
} | {
|
|
1233
|
+
message: string;
|
|
1234
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
1235
|
+
created_at: string;
|
|
1177
1236
|
} | {
|
|
1178
1237
|
message: string;
|
|
1179
1238
|
warning_code: "salto_site_user_suspended";
|
|
@@ -1213,6 +1272,10 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1213
1272
|
message: string;
|
|
1214
1273
|
warning_code: "salto_ks_user_not_subscribed";
|
|
1215
1274
|
created_at: string;
|
|
1275
|
+
} | {
|
|
1276
|
+
message: string;
|
|
1277
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
1278
|
+
created_at: string;
|
|
1216
1279
|
} | {
|
|
1217
1280
|
message: string;
|
|
1218
1281
|
warning_code: "salto_site_user_suspended";
|
|
@@ -28479,6 +28542,10 @@ interface Routes {
|
|
|
28479
28542
|
created_at: string;
|
|
28480
28543
|
message: string;
|
|
28481
28544
|
warning_code: 'being_deleted';
|
|
28545
|
+
} | {
|
|
28546
|
+
created_at: string;
|
|
28547
|
+
message: string;
|
|
28548
|
+
warning_code: 'failed_to_update_acs_user_on_acs_system';
|
|
28482
28549
|
} | {
|
|
28483
28550
|
created_at: string;
|
|
28484
28551
|
message: string;
|
|
@@ -29291,6 +29358,13 @@ interface Routes {
|
|
|
29291
29358
|
message: string;
|
|
29292
29359
|
/** Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit. */
|
|
29293
29360
|
error_code: 'salto_site_user_limit_reached';
|
|
29361
|
+
} | {
|
|
29362
|
+
/** Date and time at which Seam created the error. */
|
|
29363
|
+
created_at: string;
|
|
29364
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29365
|
+
message: string;
|
|
29366
|
+
/** Indicates that the Seam Integration user site is blocked. This means that Seam does not have permission to access Salto resources. Go to Salto Dashboard to remove 'Seam Integration' block */
|
|
29367
|
+
error_code: 'salto_seam_integration_blocked';
|
|
29294
29368
|
}>;
|
|
29295
29369
|
/** Warnings associated with the `acs_system`. */
|
|
29296
29370
|
warnings: Array<{
|
|
@@ -29375,6 +29449,13 @@ interface Routes {
|
|
|
29375
29449
|
message: string;
|
|
29376
29450
|
/** Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit. */
|
|
29377
29451
|
error_code: 'salto_site_user_limit_reached';
|
|
29452
|
+
} | {
|
|
29453
|
+
/** Date and time at which Seam created the error. */
|
|
29454
|
+
created_at: string;
|
|
29455
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29456
|
+
message: string;
|
|
29457
|
+
/** Indicates that the Seam Integration user site is blocked. This means that Seam does not have permission to access Salto resources. Go to Salto Dashboard to remove 'Seam Integration' block */
|
|
29458
|
+
error_code: 'salto_seam_integration_blocked';
|
|
29378
29459
|
}>;
|
|
29379
29460
|
/** Warnings associated with the `acs_system`. */
|
|
29380
29461
|
warnings: Array<{
|
|
@@ -29459,6 +29540,13 @@ interface Routes {
|
|
|
29459
29540
|
message: string;
|
|
29460
29541
|
/** Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit. */
|
|
29461
29542
|
error_code: 'salto_site_user_limit_reached';
|
|
29543
|
+
} | {
|
|
29544
|
+
/** Date and time at which Seam created the error. */
|
|
29545
|
+
created_at: string;
|
|
29546
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29547
|
+
message: string;
|
|
29548
|
+
/** Indicates that the Seam Integration user site is blocked. This means that Seam does not have permission to access Salto resources. Go to Salto Dashboard to remove 'Seam Integration' block */
|
|
29549
|
+
error_code: 'salto_seam_integration_blocked';
|
|
29462
29550
|
}>;
|
|
29463
29551
|
/** Warnings associated with the `acs_system`. */
|
|
29464
29552
|
warnings: Array<{
|
|
@@ -29538,6 +29626,10 @@ interface Routes {
|
|
|
29538
29626
|
created_at: string;
|
|
29539
29627
|
message: string;
|
|
29540
29628
|
warning_code: 'being_deleted';
|
|
29629
|
+
} | {
|
|
29630
|
+
created_at: string;
|
|
29631
|
+
message: string;
|
|
29632
|
+
warning_code: 'failed_to_update_acs_user_on_acs_system';
|
|
29541
29633
|
} | {
|
|
29542
29634
|
created_at: string;
|
|
29543
29635
|
message: string;
|
|
@@ -29603,6 +29695,10 @@ interface Routes {
|
|
|
29603
29695
|
created_at: string;
|
|
29604
29696
|
message: string;
|
|
29605
29697
|
warning_code: 'being_deleted';
|
|
29698
|
+
} | {
|
|
29699
|
+
created_at: string;
|
|
29700
|
+
message: string;
|
|
29701
|
+
warning_code: 'failed_to_update_acs_user_on_acs_system';
|
|
29606
29702
|
} | {
|
|
29607
29703
|
created_at: string;
|
|
29608
29704
|
message: string;
|
|
@@ -29662,6 +29758,10 @@ interface Routes {
|
|
|
29662
29758
|
created_at: string;
|
|
29663
29759
|
message: string;
|
|
29664
29760
|
warning_code: 'being_deleted';
|
|
29761
|
+
} | {
|
|
29762
|
+
created_at: string;
|
|
29763
|
+
message: string;
|
|
29764
|
+
warning_code: 'failed_to_update_acs_user_on_acs_system';
|
|
29665
29765
|
} | {
|
|
29666
29766
|
created_at: string;
|
|
29667
29767
|
message: string;
|
|
@@ -29786,6 +29886,10 @@ interface Routes {
|
|
|
29786
29886
|
created_at: string;
|
|
29787
29887
|
message: string;
|
|
29788
29888
|
warning_code: 'being_deleted';
|
|
29889
|
+
} | {
|
|
29890
|
+
created_at: string;
|
|
29891
|
+
message: string;
|
|
29892
|
+
warning_code: 'failed_to_update_acs_user_on_acs_system';
|
|
29789
29893
|
} | {
|
|
29790
29894
|
created_at: string;
|
|
29791
29895
|
message: string;
|
|
@@ -29844,6 +29948,10 @@ interface Routes {
|
|
|
29844
29948
|
created_at: string;
|
|
29845
29949
|
message: string;
|
|
29846
29950
|
warning_code: 'being_deleted';
|
|
29951
|
+
} | {
|
|
29952
|
+
created_at: string;
|
|
29953
|
+
message: string;
|
|
29954
|
+
warning_code: 'failed_to_update_acs_user_on_acs_system';
|
|
29847
29955
|
} | {
|
|
29848
29956
|
created_at: string;
|
|
29849
29957
|
message: string;
|
|
@@ -40780,6 +40888,13 @@ interface Routes {
|
|
|
40780
40888
|
message: string;
|
|
40781
40889
|
/** Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit. */
|
|
40782
40890
|
error_code: 'salto_site_user_limit_reached';
|
|
40891
|
+
} | {
|
|
40892
|
+
/** Date and time at which Seam created the error. */
|
|
40893
|
+
created_at: string;
|
|
40894
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
40895
|
+
message: string;
|
|
40896
|
+
/** Indicates that the Seam Integration user site is blocked. This means that Seam does not have permission to access Salto resources. Go to Salto Dashboard to remove 'Seam Integration' block */
|
|
40897
|
+
error_code: 'salto_seam_integration_blocked';
|
|
40783
40898
|
}>;
|
|
40784
40899
|
/** Warnings associated with the `acs_system`. */
|
|
40785
40900
|
warnings: Array<{
|
|
@@ -40835,6 +40950,10 @@ interface Routes {
|
|
|
40835
40950
|
created_at: string;
|
|
40836
40951
|
message: string;
|
|
40837
40952
|
warning_code: 'being_deleted';
|
|
40953
|
+
} | {
|
|
40954
|
+
created_at: string;
|
|
40955
|
+
message: string;
|
|
40956
|
+
warning_code: 'failed_to_update_acs_user_on_acs_system';
|
|
40838
40957
|
} | {
|
|
40839
40958
|
created_at: string;
|
|
40840
40959
|
message: string;
|
|
@@ -60,6 +60,20 @@ declare const acs_system_error_map: z.ZodObject<{
|
|
|
60
60
|
error_code: "salto_site_user_limit_reached";
|
|
61
61
|
created_at: string;
|
|
62
62
|
}>>>;
|
|
63
|
+
salto_seam_integration_blocked: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
64
|
+
created_at: z.ZodString;
|
|
65
|
+
message: z.ZodString;
|
|
66
|
+
}, {
|
|
67
|
+
error_code: z.ZodLiteral<"salto_seam_integration_blocked">;
|
|
68
|
+
}>, "strip", z.ZodTypeAny, {
|
|
69
|
+
message: string;
|
|
70
|
+
error_code: "salto_seam_integration_blocked";
|
|
71
|
+
created_at: string;
|
|
72
|
+
}, {
|
|
73
|
+
message: string;
|
|
74
|
+
error_code: "salto_seam_integration_blocked";
|
|
75
|
+
created_at: string;
|
|
76
|
+
}>>>;
|
|
63
77
|
}, "strip", z.ZodTypeAny, {
|
|
64
78
|
seam_bridge_disconnected?: {
|
|
65
79
|
message: string;
|
|
@@ -76,6 +90,11 @@ declare const acs_system_error_map: z.ZodObject<{
|
|
|
76
90
|
error_code: "salto_site_user_limit_reached";
|
|
77
91
|
created_at: string;
|
|
78
92
|
} | null | undefined;
|
|
93
|
+
salto_seam_integration_blocked?: {
|
|
94
|
+
message: string;
|
|
95
|
+
error_code: "salto_seam_integration_blocked";
|
|
96
|
+
created_at: string;
|
|
97
|
+
} | null | undefined;
|
|
79
98
|
}, {
|
|
80
99
|
seam_bridge_disconnected?: {
|
|
81
100
|
message: string;
|
|
@@ -92,6 +111,11 @@ declare const acs_system_error_map: z.ZodObject<{
|
|
|
92
111
|
error_code: "salto_site_user_limit_reached";
|
|
93
112
|
created_at: string;
|
|
94
113
|
} | null | undefined;
|
|
114
|
+
salto_seam_integration_blocked?: {
|
|
115
|
+
message: string;
|
|
116
|
+
error_code: "salto_seam_integration_blocked";
|
|
117
|
+
created_at: string;
|
|
118
|
+
} | null | undefined;
|
|
95
119
|
}>;
|
|
96
120
|
export type AcsSystemErrorMap = z.infer<typeof acs_system_error_map>;
|
|
97
121
|
declare const acs_system_warning_map: z.ZodObject<{
|
|
@@ -187,6 +211,19 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
187
211
|
message: string;
|
|
188
212
|
error_code: "salto_site_user_limit_reached";
|
|
189
213
|
created_at: string;
|
|
214
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
215
|
+
created_at: z.ZodString;
|
|
216
|
+
message: z.ZodString;
|
|
217
|
+
}, {
|
|
218
|
+
error_code: z.ZodLiteral<"salto_seam_integration_blocked">;
|
|
219
|
+
}>, "strip", z.ZodTypeAny, {
|
|
220
|
+
message: string;
|
|
221
|
+
error_code: "salto_seam_integration_blocked";
|
|
222
|
+
created_at: string;
|
|
223
|
+
}, {
|
|
224
|
+
message: string;
|
|
225
|
+
error_code: "salto_seam_integration_blocked";
|
|
226
|
+
created_at: string;
|
|
190
227
|
}>]>, "many">;
|
|
191
228
|
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
192
229
|
created_at: z.ZodString;
|
|
@@ -222,6 +259,10 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
222
259
|
message: string;
|
|
223
260
|
error_code: "salto_site_user_limit_reached";
|
|
224
261
|
created_at: string;
|
|
262
|
+
} | {
|
|
263
|
+
message: string;
|
|
264
|
+
error_code: "salto_seam_integration_blocked";
|
|
265
|
+
created_at: string;
|
|
225
266
|
})[];
|
|
226
267
|
warnings: {
|
|
227
268
|
message: string;
|
|
@@ -261,6 +302,10 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
261
302
|
message: string;
|
|
262
303
|
error_code: "salto_site_user_limit_reached";
|
|
263
304
|
created_at: string;
|
|
305
|
+
} | {
|
|
306
|
+
message: string;
|
|
307
|
+
error_code: "salto_seam_integration_blocked";
|
|
308
|
+
created_at: string;
|
|
264
309
|
})[];
|
|
265
310
|
warnings: {
|
|
266
311
|
message: string;
|
|
@@ -59,11 +59,17 @@ const salto_site_user_limit_reached = common_acs_system_error.extend({
|
|
|
59
59
|
.literal('salto_site_user_limit_reached')
|
|
60
60
|
.describe('Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit.'),
|
|
61
61
|
});
|
|
62
|
+
const salto_seam_integration_blocked = common_acs_system_error.extend({
|
|
63
|
+
error_code: z
|
|
64
|
+
.literal('salto_seam_integration_blocked')
|
|
65
|
+
.describe("Indicates that the Seam Integration user site is blocked. This means that Seam does not have permission to access Salto resources. Go to Salto Dashboard to remove 'Seam Integration' block"),
|
|
66
|
+
});
|
|
62
67
|
const acs_system_error = z
|
|
63
68
|
.union([
|
|
64
69
|
seam_bridge_disconnected,
|
|
65
70
|
visionline_instance_unreachable,
|
|
66
71
|
salto_site_user_limit_reached,
|
|
72
|
+
salto_seam_integration_blocked,
|
|
67
73
|
])
|
|
68
74
|
.describe('Error associated with the `acs_system`.');
|
|
69
75
|
const acs_system_error_map = z.object({
|
|
@@ -74,6 +80,9 @@ const acs_system_error_map = z.object({
|
|
|
74
80
|
salto_site_user_limit_reached: salto_site_user_limit_reached
|
|
75
81
|
.optional()
|
|
76
82
|
.nullable(),
|
|
83
|
+
salto_seam_integration_blocked: salto_seam_integration_blocked
|
|
84
|
+
.optional()
|
|
85
|
+
.nullable(),
|
|
77
86
|
});
|
|
78
87
|
const common_acs_system_warning = z.object({
|
|
79
88
|
created_at: z
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-system.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,uBAAuB,EAAE,CAAC;SACvB,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,qUAAqU,CACtU;IACH,4BAA4B,EAAE,CAAC;SAC5B,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,oXAAoX,CACrX;IACH,2CAA2C,EAAE,CAAC;SAC3C,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,uaAAua,CACxa;IACH,sCAAsC,EAAE,CAAC;SACtC,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,8ZAA8Z,CAC/Z;CACJ,CAAC,CAAA;AAEF,oEAAoE;AACpE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,UAAU;IACV,UAAU;IACV,YAAY;IACZ,eAAe;IACf,qCAAqC;IACrC,mBAAmB;IACnB,+BAA+B;IAC/B,gBAAgB;CACjB,CAAC,CAAA;AAIF,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAC1B,oGAAoG,CAAA;AAEtG,MAAM,wBAAwB,GAAG,uBAAuB,CAAC,MAAM,CAAC;IAC9D,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CAAC,sBAAsB,CAAC;CACpC,CAAC;KACC,QAAQ,CAAC;;+NAEmN,CAAC,CAAA;AAChO,MAAM,+BAA+B,GAAG,uBAAuB,CAAC,MAAM,CAAC;IACrE,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,iCAAiC,CAAC;SAC1C,QAAQ,CAAC,sBAAsB,CAAC;CACpC,CAAC;KACC,QAAQ,CAAC;;sOAE0N,CAAC,CAAA;AAEvO,MAAM,6BAA6B,GAAG,uBAAuB,CAAC,MAAM,CAAC;IACnE,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,+BAA+B,CAAC;SACxC,QAAQ,CACP,yLAAyL,CAC1L;CACJ,CAAC,CAAA;AAEF,MAAM,gBAAgB,GAAG,CAAC;KACvB,KAAK,CAAC;IACL,wBAAwB;IACxB,+BAA+B;IAC/B,6BAA6B;
|
|
1
|
+
{"version":3,"file":"acs-system.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-system.ts"],"names":[],"mappings":"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"}
|
|
@@ -16,6 +16,20 @@ export declare const acs_users_warning_map: z.ZodObject<{
|
|
|
16
16
|
warning_code: "being_deleted";
|
|
17
17
|
created_at: string;
|
|
18
18
|
}>>>;
|
|
19
|
+
failed_to_update_acs_user_on_acs_system: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
20
|
+
created_at: z.ZodString;
|
|
21
|
+
message: z.ZodString;
|
|
22
|
+
}, {
|
|
23
|
+
warning_code: z.ZodLiteral<"failed_to_update_acs_user_on_acs_system">;
|
|
24
|
+
}>, "strip", z.ZodTypeAny, {
|
|
25
|
+
message: string;
|
|
26
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
27
|
+
created_at: string;
|
|
28
|
+
}, {
|
|
29
|
+
message: string;
|
|
30
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
31
|
+
created_at: string;
|
|
32
|
+
}>>>;
|
|
19
33
|
salto_ks_user_not_subscribed: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
20
34
|
created_at: z.ZodString;
|
|
21
35
|
message: z.ZodString;
|
|
@@ -55,6 +69,11 @@ export declare const acs_users_warning_map: z.ZodObject<{
|
|
|
55
69
|
warning_code: "salto_ks_user_not_subscribed";
|
|
56
70
|
created_at: string;
|
|
57
71
|
} | null | undefined;
|
|
72
|
+
failed_to_update_acs_user_on_acs_system?: {
|
|
73
|
+
message: string;
|
|
74
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
75
|
+
created_at: string;
|
|
76
|
+
} | null | undefined;
|
|
58
77
|
salto_site_user_suspended?: {
|
|
59
78
|
message: string;
|
|
60
79
|
warning_code: "salto_site_user_suspended";
|
|
@@ -71,6 +90,11 @@ export declare const acs_users_warning_map: z.ZodObject<{
|
|
|
71
90
|
warning_code: "salto_ks_user_not_subscribed";
|
|
72
91
|
created_at: string;
|
|
73
92
|
} | null | undefined;
|
|
93
|
+
failed_to_update_acs_user_on_acs_system?: {
|
|
94
|
+
message: string;
|
|
95
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
96
|
+
created_at: string;
|
|
97
|
+
} | null | undefined;
|
|
74
98
|
salto_site_user_suspended?: {
|
|
75
99
|
message: string;
|
|
76
100
|
warning_code: "salto_site_user_suspended";
|
|
@@ -93,6 +117,19 @@ export declare const acs_users_warning: z.ZodUnion<[z.ZodObject<z.objectUtil.ext
|
|
|
93
117
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
94
118
|
created_at: z.ZodString;
|
|
95
119
|
message: z.ZodString;
|
|
120
|
+
}, {
|
|
121
|
+
warning_code: z.ZodLiteral<"failed_to_update_acs_user_on_acs_system">;
|
|
122
|
+
}>, "strip", z.ZodTypeAny, {
|
|
123
|
+
message: string;
|
|
124
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
125
|
+
created_at: string;
|
|
126
|
+
}, {
|
|
127
|
+
message: string;
|
|
128
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
129
|
+
created_at: string;
|
|
130
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
131
|
+
created_at: z.ZodString;
|
|
132
|
+
message: z.ZodString;
|
|
96
133
|
}, {
|
|
97
134
|
warning_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
98
135
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -160,6 +197,19 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
160
197
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
161
198
|
created_at: z.ZodString;
|
|
162
199
|
message: z.ZodString;
|
|
200
|
+
}, {
|
|
201
|
+
warning_code: z.ZodLiteral<"failed_to_update_acs_user_on_acs_system">;
|
|
202
|
+
}>, "strip", z.ZodTypeAny, {
|
|
203
|
+
message: string;
|
|
204
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
205
|
+
created_at: string;
|
|
206
|
+
}, {
|
|
207
|
+
message: string;
|
|
208
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
209
|
+
created_at: string;
|
|
210
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
211
|
+
created_at: z.ZodString;
|
|
212
|
+
message: z.ZodString;
|
|
163
213
|
}, {
|
|
164
214
|
warning_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
165
215
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -202,6 +252,10 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
202
252
|
message: string;
|
|
203
253
|
warning_code: "salto_ks_user_not_subscribed";
|
|
204
254
|
created_at: string;
|
|
255
|
+
} | {
|
|
256
|
+
message: string;
|
|
257
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
258
|
+
created_at: string;
|
|
205
259
|
} | {
|
|
206
260
|
message: string;
|
|
207
261
|
warning_code: "salto_site_user_suspended";
|
|
@@ -241,6 +295,10 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
241
295
|
message: string;
|
|
242
296
|
warning_code: "salto_ks_user_not_subscribed";
|
|
243
297
|
created_at: string;
|
|
298
|
+
} | {
|
|
299
|
+
message: string;
|
|
300
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
301
|
+
created_at: string;
|
|
244
302
|
} | {
|
|
245
303
|
message: string;
|
|
246
304
|
warning_code: "salto_site_user_suspended";
|
|
@@ -313,6 +371,19 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
313
371
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
314
372
|
created_at: z.ZodString;
|
|
315
373
|
message: z.ZodString;
|
|
374
|
+
}, {
|
|
375
|
+
warning_code: z.ZodLiteral<"failed_to_update_acs_user_on_acs_system">;
|
|
376
|
+
}>, "strip", z.ZodTypeAny, {
|
|
377
|
+
message: string;
|
|
378
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
379
|
+
created_at: string;
|
|
380
|
+
}, {
|
|
381
|
+
message: string;
|
|
382
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
383
|
+
created_at: string;
|
|
384
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
385
|
+
created_at: z.ZodString;
|
|
386
|
+
message: z.ZodString;
|
|
316
387
|
}, {
|
|
317
388
|
warning_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
318
389
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -355,6 +426,10 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
355
426
|
message: string;
|
|
356
427
|
warning_code: "salto_ks_user_not_subscribed";
|
|
357
428
|
created_at: string;
|
|
429
|
+
} | {
|
|
430
|
+
message: string;
|
|
431
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
432
|
+
created_at: string;
|
|
358
433
|
} | {
|
|
359
434
|
message: string;
|
|
360
435
|
warning_code: "salto_site_user_suspended";
|
|
@@ -394,6 +469,10 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
394
469
|
message: string;
|
|
395
470
|
warning_code: "salto_ks_user_not_subscribed";
|
|
396
471
|
created_at: string;
|
|
472
|
+
} | {
|
|
473
|
+
message: string;
|
|
474
|
+
warning_code: "failed_to_update_acs_user_on_acs_system";
|
|
475
|
+
created_at: string;
|
|
397
476
|
} | {
|
|
398
477
|
message: string;
|
|
399
478
|
warning_code: "salto_site_user_suspended";
|
|
@@ -18,12 +18,16 @@ const acs_users_being_deleted = common_acs_users_warning.extend({
|
|
|
18
18
|
const acs_users_salto_ks_user_not_subscribed = common_acs_users_warning.extend({
|
|
19
19
|
warning_code: z.literal('salto_ks_user_not_subscribed'),
|
|
20
20
|
});
|
|
21
|
+
const acs_users_failed_to_update_acs_user_on_acs_system = common_acs_users_warning.extend({
|
|
22
|
+
warning_code: z.literal('failed_to_update_acs_user_on_acs_system'),
|
|
23
|
+
});
|
|
21
24
|
// TODO: Some acs_users already have this warning, so we need to keep it here until we migrate
|
|
22
25
|
const acs_users_salto_site_user_suspended = common_acs_users_warning.extend({
|
|
23
26
|
warning_code: z.literal('salto_site_user_suspended'),
|
|
24
27
|
});
|
|
25
28
|
export const acs_users_warning_map = z.object({
|
|
26
29
|
being_deleted: acs_users_being_deleted.optional().nullable(),
|
|
30
|
+
failed_to_update_acs_user_on_acs_system: acs_users_failed_to_update_acs_user_on_acs_system.optional().nullable(),
|
|
27
31
|
salto_ks_user_not_subscribed: acs_users_salto_ks_user_not_subscribed
|
|
28
32
|
.optional()
|
|
29
33
|
.nullable(),
|
|
@@ -33,6 +37,7 @@ export const acs_users_warning_map = z.object({
|
|
|
33
37
|
});
|
|
34
38
|
export const acs_users_warning = z.union([
|
|
35
39
|
acs_users_being_deleted,
|
|
40
|
+
acs_users_failed_to_update_acs_user_on_acs_system,
|
|
36
41
|
acs_users_salto_ks_user_not_subscribed,
|
|
37
42
|
acs_users_salto_site_user_suspended,
|
|
38
43
|
]);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-user.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAEzC,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3C,UAAU;IACV,YAAY;IACZ,6BAA6B;IAC7B,iBAAiB;IACjB,YAAY;CACb,CAAC,CAAA;AAIF,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;CACpB,CAAC,CAAA;AAEF,MAAM,uBAAuB,GAAG,wBAAwB,CAAC,MAAM,CAAC;IAC9D,YAAY,EAAE,CAAC,CAAC,OAAO,CAAC,eAAe,CAAC;CACzC,CAAC,CAAA;AAEF,MAAM,sCAAsC,GAAG,wBAAwB,CAAC,MAAM,CAAC;IAC7E,YAAY,EAAE,CAAC,CAAC,OAAO,CAAC,8BAA8B,CAAC;CACxD,CAAC,CAAA;AAEF,8FAA8F;AAC9F,MAAM,mCAAmC,GAAG,wBAAwB,CAAC,MAAM,CAAC;IAC1E,YAAY,EAAE,CAAC,CAAC,OAAO,CAAC,2BAA2B,CAAC;CACrD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,aAAa,EAAE,uBAAuB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC5D,4BAA4B,EAAE,sCAAsC;SACjE,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,yBAAyB,EAAE,mCAAmC;SAC3D,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC;IACvC,uBAAuB;IACvB,sCAAsC;IACtC,mCAAmC;CACpC,CAAC,CAAA;AAIF,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;KAI3C,CAAC;IACJ,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC5C,YAAY,EAAE,YAAY,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAA;AAEF,MAAM,eAAe,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,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAC/C,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,CAAC,QAAQ,EAAE;IAChD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE;IACzB,eAAe,EAAE,QAAQ,CAAC,QAAQ,EAAE;IACpC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACzD,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC7D,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC5D,4CAA4C,EAAE,CAAC;SAC5C,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,4CAA4C,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACpE,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC;IACpC,MAAM,EAAE,CAAC,CAAC,GAAG,EAAE;CAChB,CAAC;KACD,KAAK,CAAC,WAAW,CAAC,CAAA;AAErB,MAAM,CAAC,MAAM,QAAQ,GAAG,eAAe,CAAC,KAAK,CAC3C,CAAC,CAAC,MAAM,CAAC;IACP,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CAC5B,CAAC,CACH,CAAA;AAED,MAAM,CAAC,MAAM,kBAAkB,GAAG,eAAe,CAAC,KAAK,CACrD,CAAC,CAAC,MAAM,CAAC;IACP,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;CAC7B,CAAC,CACH,CAAA"}
|
|
1
|
+
{"version":3,"file":"acs-user.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-user.ts"],"names":[],"mappings":"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"}
|
|
@@ -50,7 +50,7 @@ export declare const PROVIDER_CATEGORY_MAP: {
|
|
|
50
50
|
readonly consumer_smartlocks: readonly ["august", "schlage", "yale", "smartthings", "nuki", "ttlock", "kwikset", "igloohome", "wyze", "lockly", "tedee"];
|
|
51
51
|
readonly thermostats: readonly ["ecobee", "nest"];
|
|
52
52
|
readonly noise_sensors: readonly ["minut", "noiseaware"];
|
|
53
|
-
readonly access_control_systems: readonly ["pti", "visionline", "assa_abloy_credential_service", "latch"];
|
|
53
|
+
readonly access_control_systems: readonly ["pti", "visionline", "assa_abloy_credential_service", "latch", "salto"];
|
|
54
54
|
readonly internal_beta: [DeviceProviderName, ...DeviceProviderName[]];
|
|
55
55
|
};
|
|
56
56
|
export declare const PROVIDER_CATEGORIES: [ProviderCategory, ...ProviderCategory[]];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"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"}
|