@seamapi/types 1.294.1 → 1.296.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 +760 -50
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3342 -298
- package/lib/seam/connect/models/acs/acs-credential.d.ts +264 -24
- package/lib/seam/connect/models/acs/acs-credential.js +59 -6
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +2 -1
- package/lib/seam/connect/models/acs/acs-encoder.js +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +516 -84
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +226 -36
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +290 -48
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +115 -45
- package/lib/seam/connect/openapi.js +721 -42
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2496 -93
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +80 -12
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +851 -42
- package/src/lib/seam/connect/route-types.ts +3338 -488
|
@@ -146,13 +146,40 @@ export interface Routes {
|
|
|
146
146
|
starts_at?: string | undefined;
|
|
147
147
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
148
148
|
ends_at?: string | undefined;
|
|
149
|
+
/** Errors associated with the `acs_credential`. */
|
|
149
150
|
errors: Array<{
|
|
150
151
|
error_code: string;
|
|
151
152
|
message: string;
|
|
152
153
|
}>;
|
|
154
|
+
/** Warnings associated with the `acs_credential`. */
|
|
153
155
|
warnings: Array<{
|
|
154
|
-
|
|
156
|
+
/** Date and time at which Seam created the warning. */
|
|
157
|
+
created_at: string;
|
|
158
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
155
159
|
message: string;
|
|
160
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
161
|
+
warning_code: 'waiting_to_be_issued';
|
|
162
|
+
} | {
|
|
163
|
+
/** Date and time at which Seam created the warning. */
|
|
164
|
+
created_at: string;
|
|
165
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
166
|
+
message: string;
|
|
167
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
168
|
+
warning_code: 'schedule_externally_modified';
|
|
169
|
+
} | {
|
|
170
|
+
/** Date and time at which Seam created the warning. */
|
|
171
|
+
created_at: string;
|
|
172
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
173
|
+
message: string;
|
|
174
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
175
|
+
warning_code: 'schedule_modified';
|
|
176
|
+
} | {
|
|
177
|
+
/** Date and time at which Seam created the warning. */
|
|
178
|
+
created_at: string;
|
|
179
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
180
|
+
message: string;
|
|
181
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
182
|
+
warning_code: 'being_deleted';
|
|
156
183
|
}>;
|
|
157
184
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
158
185
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -203,13 +230,40 @@ export interface Routes {
|
|
|
203
230
|
starts_at?: string | undefined;
|
|
204
231
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
205
232
|
ends_at?: string | undefined;
|
|
233
|
+
/** Errors associated with the `acs_credential`. */
|
|
206
234
|
errors: Array<{
|
|
207
235
|
error_code: string;
|
|
208
236
|
message: string;
|
|
209
237
|
}>;
|
|
238
|
+
/** Warnings associated with the `acs_credential`. */
|
|
210
239
|
warnings: Array<{
|
|
211
|
-
|
|
240
|
+
/** Date and time at which Seam created the warning. */
|
|
241
|
+
created_at: string;
|
|
242
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
243
|
+
message: string;
|
|
244
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
245
|
+
warning_code: 'waiting_to_be_issued';
|
|
246
|
+
} | {
|
|
247
|
+
/** Date and time at which Seam created the warning. */
|
|
248
|
+
created_at: string;
|
|
249
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
212
250
|
message: string;
|
|
251
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
252
|
+
warning_code: 'schedule_externally_modified';
|
|
253
|
+
} | {
|
|
254
|
+
/** Date and time at which Seam created the warning. */
|
|
255
|
+
created_at: string;
|
|
256
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
257
|
+
message: string;
|
|
258
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
259
|
+
warning_code: 'schedule_modified';
|
|
260
|
+
} | {
|
|
261
|
+
/** Date and time at which Seam created the warning. */
|
|
262
|
+
created_at: string;
|
|
263
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
264
|
+
message: string;
|
|
265
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
266
|
+
warning_code: 'being_deleted';
|
|
213
267
|
}>;
|
|
214
268
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
215
269
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -297,13 +351,40 @@ export interface Routes {
|
|
|
297
351
|
starts_at?: string | undefined;
|
|
298
352
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
299
353
|
ends_at?: string | undefined;
|
|
354
|
+
/** Errors associated with the `acs_credential`. */
|
|
300
355
|
errors: Array<{
|
|
301
356
|
error_code: string;
|
|
302
357
|
message: string;
|
|
303
358
|
}>;
|
|
359
|
+
/** Warnings associated with the `acs_credential`. */
|
|
304
360
|
warnings: Array<{
|
|
305
|
-
|
|
361
|
+
/** Date and time at which Seam created the warning. */
|
|
362
|
+
created_at: string;
|
|
363
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
364
|
+
message: string;
|
|
365
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
366
|
+
warning_code: 'waiting_to_be_issued';
|
|
367
|
+
} | {
|
|
368
|
+
/** Date and time at which Seam created the warning. */
|
|
369
|
+
created_at: string;
|
|
370
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
371
|
+
message: string;
|
|
372
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
373
|
+
warning_code: 'schedule_externally_modified';
|
|
374
|
+
} | {
|
|
375
|
+
/** Date and time at which Seam created the warning. */
|
|
376
|
+
created_at: string;
|
|
377
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
378
|
+
message: string;
|
|
379
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
380
|
+
warning_code: 'schedule_modified';
|
|
381
|
+
} | {
|
|
382
|
+
/** Date and time at which Seam created the warning. */
|
|
383
|
+
created_at: string;
|
|
384
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
306
385
|
message: string;
|
|
386
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
387
|
+
warning_code: 'being_deleted';
|
|
307
388
|
}>;
|
|
308
389
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
309
390
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -354,13 +435,40 @@ export interface Routes {
|
|
|
354
435
|
starts_at?: string | undefined;
|
|
355
436
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
356
437
|
ends_at?: string | undefined;
|
|
438
|
+
/** Errors associated with the `acs_credential`. */
|
|
357
439
|
errors: Array<{
|
|
358
440
|
error_code: string;
|
|
359
441
|
message: string;
|
|
360
442
|
}>;
|
|
443
|
+
/** Warnings associated with the `acs_credential`. */
|
|
361
444
|
warnings: Array<{
|
|
362
|
-
|
|
445
|
+
/** Date and time at which Seam created the warning. */
|
|
446
|
+
created_at: string;
|
|
447
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
448
|
+
message: string;
|
|
449
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
450
|
+
warning_code: 'waiting_to_be_issued';
|
|
451
|
+
} | {
|
|
452
|
+
/** Date and time at which Seam created the warning. */
|
|
453
|
+
created_at: string;
|
|
454
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
455
|
+
message: string;
|
|
456
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
457
|
+
warning_code: 'schedule_externally_modified';
|
|
458
|
+
} | {
|
|
459
|
+
/** Date and time at which Seam created the warning. */
|
|
460
|
+
created_at: string;
|
|
461
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
363
462
|
message: string;
|
|
463
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
464
|
+
warning_code: 'schedule_modified';
|
|
465
|
+
} | {
|
|
466
|
+
/** Date and time at which Seam created the warning. */
|
|
467
|
+
created_at: string;
|
|
468
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
469
|
+
message: string;
|
|
470
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
471
|
+
warning_code: 'being_deleted';
|
|
364
472
|
}>;
|
|
365
473
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
366
474
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -1029,13 +1137,40 @@ export interface Routes {
|
|
|
1029
1137
|
starts_at?: string | undefined;
|
|
1030
1138
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
1031
1139
|
ends_at?: string | undefined;
|
|
1140
|
+
/** Errors associated with the `acs_credential`. */
|
|
1032
1141
|
errors: Array<{
|
|
1033
1142
|
error_code: string;
|
|
1034
1143
|
message: string;
|
|
1035
1144
|
}>;
|
|
1145
|
+
/** Warnings associated with the `acs_credential`. */
|
|
1036
1146
|
warnings: Array<{
|
|
1037
|
-
|
|
1147
|
+
/** Date and time at which Seam created the warning. */
|
|
1148
|
+
created_at: string;
|
|
1149
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1150
|
+
message: string;
|
|
1151
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1152
|
+
warning_code: 'waiting_to_be_issued';
|
|
1153
|
+
} | {
|
|
1154
|
+
/** Date and time at which Seam created the warning. */
|
|
1155
|
+
created_at: string;
|
|
1156
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1157
|
+
message: string;
|
|
1158
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1159
|
+
warning_code: 'schedule_externally_modified';
|
|
1160
|
+
} | {
|
|
1161
|
+
/** Date and time at which Seam created the warning. */
|
|
1162
|
+
created_at: string;
|
|
1163
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1038
1164
|
message: string;
|
|
1165
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1166
|
+
warning_code: 'schedule_modified';
|
|
1167
|
+
} | {
|
|
1168
|
+
/** Date and time at which Seam created the warning. */
|
|
1169
|
+
created_at: string;
|
|
1170
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1171
|
+
message: string;
|
|
1172
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1173
|
+
warning_code: 'being_deleted';
|
|
1039
1174
|
}>;
|
|
1040
1175
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
1041
1176
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -1086,13 +1221,40 @@ export interface Routes {
|
|
|
1086
1221
|
starts_at?: string | undefined;
|
|
1087
1222
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
1088
1223
|
ends_at?: string | undefined;
|
|
1224
|
+
/** Errors associated with the `acs_credential`. */
|
|
1089
1225
|
errors: Array<{
|
|
1090
1226
|
error_code: string;
|
|
1091
1227
|
message: string;
|
|
1092
1228
|
}>;
|
|
1229
|
+
/** Warnings associated with the `acs_credential`. */
|
|
1093
1230
|
warnings: Array<{
|
|
1094
|
-
|
|
1231
|
+
/** Date and time at which Seam created the warning. */
|
|
1232
|
+
created_at: string;
|
|
1233
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1234
|
+
message: string;
|
|
1235
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1236
|
+
warning_code: 'waiting_to_be_issued';
|
|
1237
|
+
} | {
|
|
1238
|
+
/** Date and time at which Seam created the warning. */
|
|
1239
|
+
created_at: string;
|
|
1240
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1241
|
+
message: string;
|
|
1242
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1243
|
+
warning_code: 'schedule_externally_modified';
|
|
1244
|
+
} | {
|
|
1245
|
+
/** Date and time at which Seam created the warning. */
|
|
1246
|
+
created_at: string;
|
|
1247
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1248
|
+
message: string;
|
|
1249
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1250
|
+
warning_code: 'schedule_modified';
|
|
1251
|
+
} | {
|
|
1252
|
+
/** Date and time at which Seam created the warning. */
|
|
1253
|
+
created_at: string;
|
|
1254
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1095
1255
|
message: string;
|
|
1256
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1257
|
+
warning_code: 'being_deleted';
|
|
1096
1258
|
}>;
|
|
1097
1259
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
1098
1260
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -1180,13 +1342,40 @@ export interface Routes {
|
|
|
1180
1342
|
starts_at?: string | undefined;
|
|
1181
1343
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
1182
1344
|
ends_at?: string | undefined;
|
|
1345
|
+
/** Errors associated with the `acs_credential`. */
|
|
1183
1346
|
errors: Array<{
|
|
1184
1347
|
error_code: string;
|
|
1185
1348
|
message: string;
|
|
1186
1349
|
}>;
|
|
1350
|
+
/** Warnings associated with the `acs_credential`. */
|
|
1187
1351
|
warnings: Array<{
|
|
1188
|
-
|
|
1352
|
+
/** Date and time at which Seam created the warning. */
|
|
1353
|
+
created_at: string;
|
|
1354
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1355
|
+
message: string;
|
|
1356
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1357
|
+
warning_code: 'waiting_to_be_issued';
|
|
1358
|
+
} | {
|
|
1359
|
+
/** Date and time at which Seam created the warning. */
|
|
1360
|
+
created_at: string;
|
|
1361
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1362
|
+
message: string;
|
|
1363
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1364
|
+
warning_code: 'schedule_externally_modified';
|
|
1365
|
+
} | {
|
|
1366
|
+
/** Date and time at which Seam created the warning. */
|
|
1367
|
+
created_at: string;
|
|
1368
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1369
|
+
message: string;
|
|
1370
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1371
|
+
warning_code: 'schedule_modified';
|
|
1372
|
+
} | {
|
|
1373
|
+
/** Date and time at which Seam created the warning. */
|
|
1374
|
+
created_at: string;
|
|
1375
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1189
1376
|
message: string;
|
|
1377
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1378
|
+
warning_code: 'being_deleted';
|
|
1190
1379
|
}>;
|
|
1191
1380
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
1192
1381
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -1237,13 +1426,40 @@ export interface Routes {
|
|
|
1237
1426
|
starts_at?: string | undefined;
|
|
1238
1427
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
1239
1428
|
ends_at?: string | undefined;
|
|
1429
|
+
/** Errors associated with the `acs_credential`. */
|
|
1240
1430
|
errors: Array<{
|
|
1241
1431
|
error_code: string;
|
|
1242
1432
|
message: string;
|
|
1243
1433
|
}>;
|
|
1434
|
+
/** Warnings associated with the `acs_credential`. */
|
|
1244
1435
|
warnings: Array<{
|
|
1245
|
-
|
|
1436
|
+
/** Date and time at which Seam created the warning. */
|
|
1437
|
+
created_at: string;
|
|
1438
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1439
|
+
message: string;
|
|
1440
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1441
|
+
warning_code: 'waiting_to_be_issued';
|
|
1442
|
+
} | {
|
|
1443
|
+
/** Date and time at which Seam created the warning. */
|
|
1444
|
+
created_at: string;
|
|
1445
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1446
|
+
message: string;
|
|
1447
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1448
|
+
warning_code: 'schedule_externally_modified';
|
|
1449
|
+
} | {
|
|
1450
|
+
/** Date and time at which Seam created the warning. */
|
|
1451
|
+
created_at: string;
|
|
1452
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1246
1453
|
message: string;
|
|
1454
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1455
|
+
warning_code: 'schedule_modified';
|
|
1456
|
+
} | {
|
|
1457
|
+
/** Date and time at which Seam created the warning. */
|
|
1458
|
+
created_at: string;
|
|
1459
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1460
|
+
message: string;
|
|
1461
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1462
|
+
warning_code: 'being_deleted';
|
|
1247
1463
|
}>;
|
|
1248
1464
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
1249
1465
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -2069,13 +2285,40 @@ export interface Routes {
|
|
|
2069
2285
|
starts_at?: string | undefined;
|
|
2070
2286
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
2071
2287
|
ends_at?: string | undefined;
|
|
2288
|
+
/** Errors associated with the `acs_credential`. */
|
|
2072
2289
|
errors: Array<{
|
|
2073
2290
|
error_code: string;
|
|
2074
2291
|
message: string;
|
|
2075
2292
|
}>;
|
|
2293
|
+
/** Warnings associated with the `acs_credential`. */
|
|
2076
2294
|
warnings: Array<{
|
|
2077
|
-
|
|
2295
|
+
/** Date and time at which Seam created the warning. */
|
|
2296
|
+
created_at: string;
|
|
2297
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2298
|
+
message: string;
|
|
2299
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2300
|
+
warning_code: 'waiting_to_be_issued';
|
|
2301
|
+
} | {
|
|
2302
|
+
/** Date and time at which Seam created the warning. */
|
|
2303
|
+
created_at: string;
|
|
2304
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2078
2305
|
message: string;
|
|
2306
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2307
|
+
warning_code: 'schedule_externally_modified';
|
|
2308
|
+
} | {
|
|
2309
|
+
/** Date and time at which Seam created the warning. */
|
|
2310
|
+
created_at: string;
|
|
2311
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2312
|
+
message: string;
|
|
2313
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2314
|
+
warning_code: 'schedule_modified';
|
|
2315
|
+
} | {
|
|
2316
|
+
/** Date and time at which Seam created the warning. */
|
|
2317
|
+
created_at: string;
|
|
2318
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2319
|
+
message: string;
|
|
2320
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2321
|
+
warning_code: 'being_deleted';
|
|
2079
2322
|
}>;
|
|
2080
2323
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
2081
2324
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -2126,13 +2369,40 @@ export interface Routes {
|
|
|
2126
2369
|
starts_at?: string | undefined;
|
|
2127
2370
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
2128
2371
|
ends_at?: string | undefined;
|
|
2372
|
+
/** Errors associated with the `acs_credential`. */
|
|
2129
2373
|
errors: Array<{
|
|
2130
2374
|
error_code: string;
|
|
2131
2375
|
message: string;
|
|
2132
2376
|
}>;
|
|
2377
|
+
/** Warnings associated with the `acs_credential`. */
|
|
2133
2378
|
warnings: Array<{
|
|
2134
|
-
|
|
2379
|
+
/** Date and time at which Seam created the warning. */
|
|
2380
|
+
created_at: string;
|
|
2381
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2382
|
+
message: string;
|
|
2383
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2384
|
+
warning_code: 'waiting_to_be_issued';
|
|
2385
|
+
} | {
|
|
2386
|
+
/** Date and time at which Seam created the warning. */
|
|
2387
|
+
created_at: string;
|
|
2388
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2135
2389
|
message: string;
|
|
2390
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2391
|
+
warning_code: 'schedule_externally_modified';
|
|
2392
|
+
} | {
|
|
2393
|
+
/** Date and time at which Seam created the warning. */
|
|
2394
|
+
created_at: string;
|
|
2395
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2396
|
+
message: string;
|
|
2397
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2398
|
+
warning_code: 'schedule_modified';
|
|
2399
|
+
} | {
|
|
2400
|
+
/** Date and time at which Seam created the warning. */
|
|
2401
|
+
created_at: string;
|
|
2402
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2403
|
+
message: string;
|
|
2404
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2405
|
+
warning_code: 'being_deleted';
|
|
2136
2406
|
}>;
|
|
2137
2407
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
2138
2408
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -2220,13 +2490,40 @@ export interface Routes {
|
|
|
2220
2490
|
starts_at?: string | undefined;
|
|
2221
2491
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
2222
2492
|
ends_at?: string | undefined;
|
|
2493
|
+
/** Errors associated with the `acs_credential`. */
|
|
2223
2494
|
errors: Array<{
|
|
2224
2495
|
error_code: string;
|
|
2225
2496
|
message: string;
|
|
2226
2497
|
}>;
|
|
2498
|
+
/** Warnings associated with the `acs_credential`. */
|
|
2227
2499
|
warnings: Array<{
|
|
2228
|
-
|
|
2500
|
+
/** Date and time at which Seam created the warning. */
|
|
2501
|
+
created_at: string;
|
|
2502
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2503
|
+
message: string;
|
|
2504
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2505
|
+
warning_code: 'waiting_to_be_issued';
|
|
2506
|
+
} | {
|
|
2507
|
+
/** Date and time at which Seam created the warning. */
|
|
2508
|
+
created_at: string;
|
|
2509
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2510
|
+
message: string;
|
|
2511
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2512
|
+
warning_code: 'schedule_externally_modified';
|
|
2513
|
+
} | {
|
|
2514
|
+
/** Date and time at which Seam created the warning. */
|
|
2515
|
+
created_at: string;
|
|
2516
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2229
2517
|
message: string;
|
|
2518
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2519
|
+
warning_code: 'schedule_modified';
|
|
2520
|
+
} | {
|
|
2521
|
+
/** Date and time at which Seam created the warning. */
|
|
2522
|
+
created_at: string;
|
|
2523
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2524
|
+
message: string;
|
|
2525
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2526
|
+
warning_code: 'being_deleted';
|
|
2230
2527
|
}>;
|
|
2231
2528
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
2232
2529
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -2277,13 +2574,40 @@ export interface Routes {
|
|
|
2277
2574
|
starts_at?: string | undefined;
|
|
2278
2575
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
2279
2576
|
ends_at?: string | undefined;
|
|
2577
|
+
/** Errors associated with the `acs_credential`. */
|
|
2280
2578
|
errors: Array<{
|
|
2281
2579
|
error_code: string;
|
|
2282
2580
|
message: string;
|
|
2283
2581
|
}>;
|
|
2582
|
+
/** Warnings associated with the `acs_credential`. */
|
|
2284
2583
|
warnings: Array<{
|
|
2285
|
-
|
|
2584
|
+
/** Date and time at which Seam created the warning. */
|
|
2585
|
+
created_at: string;
|
|
2586
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2587
|
+
message: string;
|
|
2588
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2589
|
+
warning_code: 'waiting_to_be_issued';
|
|
2590
|
+
} | {
|
|
2591
|
+
/** Date and time at which Seam created the warning. */
|
|
2592
|
+
created_at: string;
|
|
2593
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2594
|
+
message: string;
|
|
2595
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2596
|
+
warning_code: 'schedule_externally_modified';
|
|
2597
|
+
} | {
|
|
2598
|
+
/** Date and time at which Seam created the warning. */
|
|
2599
|
+
created_at: string;
|
|
2600
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2601
|
+
message: string;
|
|
2602
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2603
|
+
warning_code: 'schedule_modified';
|
|
2604
|
+
} | {
|
|
2605
|
+
/** Date and time at which Seam created the warning. */
|
|
2606
|
+
created_at: string;
|
|
2607
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2286
2608
|
message: string;
|
|
2609
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2610
|
+
warning_code: 'being_deleted';
|
|
2287
2611
|
}>;
|
|
2288
2612
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
2289
2613
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -2939,13 +3263,40 @@ export interface Routes {
|
|
|
2939
3263
|
starts_at?: string | undefined;
|
|
2940
3264
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
2941
3265
|
ends_at?: string | undefined;
|
|
3266
|
+
/** Errors associated with the `acs_credential`. */
|
|
2942
3267
|
errors: Array<{
|
|
2943
3268
|
error_code: string;
|
|
2944
3269
|
message: string;
|
|
2945
3270
|
}>;
|
|
3271
|
+
/** Warnings associated with the `acs_credential`. */
|
|
2946
3272
|
warnings: Array<{
|
|
2947
|
-
|
|
3273
|
+
/** Date and time at which Seam created the warning. */
|
|
3274
|
+
created_at: string;
|
|
3275
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3276
|
+
message: string;
|
|
3277
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3278
|
+
warning_code: 'waiting_to_be_issued';
|
|
3279
|
+
} | {
|
|
3280
|
+
/** Date and time at which Seam created the warning. */
|
|
3281
|
+
created_at: string;
|
|
3282
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3283
|
+
message: string;
|
|
3284
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3285
|
+
warning_code: 'schedule_externally_modified';
|
|
3286
|
+
} | {
|
|
3287
|
+
/** Date and time at which Seam created the warning. */
|
|
3288
|
+
created_at: string;
|
|
3289
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3290
|
+
message: string;
|
|
3291
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3292
|
+
warning_code: 'schedule_modified';
|
|
3293
|
+
} | {
|
|
3294
|
+
/** Date and time at which Seam created the warning. */
|
|
3295
|
+
created_at: string;
|
|
3296
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2948
3297
|
message: string;
|
|
3298
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3299
|
+
warning_code: 'being_deleted';
|
|
2949
3300
|
}>;
|
|
2950
3301
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
2951
3302
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -2996,13 +3347,40 @@ export interface Routes {
|
|
|
2996
3347
|
starts_at?: string | undefined;
|
|
2997
3348
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
2998
3349
|
ends_at?: string | undefined;
|
|
3350
|
+
/** Errors associated with the `acs_credential`. */
|
|
2999
3351
|
errors: Array<{
|
|
3000
3352
|
error_code: string;
|
|
3001
3353
|
message: string;
|
|
3002
3354
|
}>;
|
|
3355
|
+
/** Warnings associated with the `acs_credential`. */
|
|
3003
3356
|
warnings: Array<{
|
|
3004
|
-
|
|
3357
|
+
/** Date and time at which Seam created the warning. */
|
|
3358
|
+
created_at: string;
|
|
3359
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3360
|
+
message: string;
|
|
3361
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3362
|
+
warning_code: 'waiting_to_be_issued';
|
|
3363
|
+
} | {
|
|
3364
|
+
/** Date and time at which Seam created the warning. */
|
|
3365
|
+
created_at: string;
|
|
3366
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3367
|
+
message: string;
|
|
3368
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3369
|
+
warning_code: 'schedule_externally_modified';
|
|
3370
|
+
} | {
|
|
3371
|
+
/** Date and time at which Seam created the warning. */
|
|
3372
|
+
created_at: string;
|
|
3373
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3374
|
+
message: string;
|
|
3375
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3376
|
+
warning_code: 'schedule_modified';
|
|
3377
|
+
} | {
|
|
3378
|
+
/** Date and time at which Seam created the warning. */
|
|
3379
|
+
created_at: string;
|
|
3380
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3005
3381
|
message: string;
|
|
3382
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3383
|
+
warning_code: 'being_deleted';
|
|
3006
3384
|
}>;
|
|
3007
3385
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3008
3386
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -3090,13 +3468,40 @@ export interface Routes {
|
|
|
3090
3468
|
starts_at?: string | undefined;
|
|
3091
3469
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
3092
3470
|
ends_at?: string | undefined;
|
|
3471
|
+
/** Errors associated with the `acs_credential`. */
|
|
3093
3472
|
errors: Array<{
|
|
3094
3473
|
error_code: string;
|
|
3095
3474
|
message: string;
|
|
3096
3475
|
}>;
|
|
3476
|
+
/** Warnings associated with the `acs_credential`. */
|
|
3097
3477
|
warnings: Array<{
|
|
3098
|
-
|
|
3478
|
+
/** Date and time at which Seam created the warning. */
|
|
3479
|
+
created_at: string;
|
|
3480
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3481
|
+
message: string;
|
|
3482
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3483
|
+
warning_code: 'waiting_to_be_issued';
|
|
3484
|
+
} | {
|
|
3485
|
+
/** Date and time at which Seam created the warning. */
|
|
3486
|
+
created_at: string;
|
|
3487
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3488
|
+
message: string;
|
|
3489
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3490
|
+
warning_code: 'schedule_externally_modified';
|
|
3491
|
+
} | {
|
|
3492
|
+
/** Date and time at which Seam created the warning. */
|
|
3493
|
+
created_at: string;
|
|
3494
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3099
3495
|
message: string;
|
|
3496
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3497
|
+
warning_code: 'schedule_modified';
|
|
3498
|
+
} | {
|
|
3499
|
+
/** Date and time at which Seam created the warning. */
|
|
3500
|
+
created_at: string;
|
|
3501
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3502
|
+
message: string;
|
|
3503
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3504
|
+
warning_code: 'being_deleted';
|
|
3100
3505
|
}>;
|
|
3101
3506
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3102
3507
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -3147,13 +3552,40 @@ export interface Routes {
|
|
|
3147
3552
|
starts_at?: string | undefined;
|
|
3148
3553
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
3149
3554
|
ends_at?: string | undefined;
|
|
3555
|
+
/** Errors associated with the `acs_credential`. */
|
|
3150
3556
|
errors: Array<{
|
|
3151
3557
|
error_code: string;
|
|
3152
3558
|
message: string;
|
|
3153
3559
|
}>;
|
|
3560
|
+
/** Warnings associated with the `acs_credential`. */
|
|
3154
3561
|
warnings: Array<{
|
|
3155
|
-
|
|
3562
|
+
/** Date and time at which Seam created the warning. */
|
|
3563
|
+
created_at: string;
|
|
3564
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3565
|
+
message: string;
|
|
3566
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3567
|
+
warning_code: 'waiting_to_be_issued';
|
|
3568
|
+
} | {
|
|
3569
|
+
/** Date and time at which Seam created the warning. */
|
|
3570
|
+
created_at: string;
|
|
3571
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3156
3572
|
message: string;
|
|
3573
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3574
|
+
warning_code: 'schedule_externally_modified';
|
|
3575
|
+
} | {
|
|
3576
|
+
/** Date and time at which Seam created the warning. */
|
|
3577
|
+
created_at: string;
|
|
3578
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3579
|
+
message: string;
|
|
3580
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3581
|
+
warning_code: 'schedule_modified';
|
|
3582
|
+
} | {
|
|
3583
|
+
/** Date and time at which Seam created the warning. */
|
|
3584
|
+
created_at: string;
|
|
3585
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3586
|
+
message: string;
|
|
3587
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3588
|
+
warning_code: 'being_deleted';
|
|
3157
3589
|
}>;
|
|
3158
3590
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3159
3591
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -3990,13 +4422,40 @@ export interface Routes {
|
|
|
3990
4422
|
starts_at?: string | undefined;
|
|
3991
4423
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
3992
4424
|
ends_at?: string | undefined;
|
|
4425
|
+
/** Errors associated with the `acs_credential`. */
|
|
3993
4426
|
errors: Array<{
|
|
3994
4427
|
error_code: string;
|
|
3995
4428
|
message: string;
|
|
3996
4429
|
}>;
|
|
4430
|
+
/** Warnings associated with the `acs_credential`. */
|
|
3997
4431
|
warnings: Array<{
|
|
3998
|
-
|
|
4432
|
+
/** Date and time at which Seam created the warning. */
|
|
4433
|
+
created_at: string;
|
|
4434
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4435
|
+
message: string;
|
|
4436
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4437
|
+
warning_code: 'waiting_to_be_issued';
|
|
4438
|
+
} | {
|
|
4439
|
+
/** Date and time at which Seam created the warning. */
|
|
4440
|
+
created_at: string;
|
|
4441
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4442
|
+
message: string;
|
|
4443
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4444
|
+
warning_code: 'schedule_externally_modified';
|
|
4445
|
+
} | {
|
|
4446
|
+
/** Date and time at which Seam created the warning. */
|
|
4447
|
+
created_at: string;
|
|
4448
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4449
|
+
message: string;
|
|
4450
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4451
|
+
warning_code: 'schedule_modified';
|
|
4452
|
+
} | {
|
|
4453
|
+
/** Date and time at which Seam created the warning. */
|
|
4454
|
+
created_at: string;
|
|
4455
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3999
4456
|
message: string;
|
|
4457
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4458
|
+
warning_code: 'being_deleted';
|
|
4000
4459
|
}>;
|
|
4001
4460
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4002
4461
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -4096,13 +4555,40 @@ export interface Routes {
|
|
|
4096
4555
|
starts_at?: string | undefined;
|
|
4097
4556
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
4098
4557
|
ends_at?: string | undefined;
|
|
4558
|
+
/** Errors associated with the `acs_credential`. */
|
|
4099
4559
|
errors: Array<{
|
|
4100
4560
|
error_code: string;
|
|
4101
4561
|
message: string;
|
|
4102
4562
|
}>;
|
|
4563
|
+
/** Warnings associated with the `acs_credential`. */
|
|
4103
4564
|
warnings: Array<{
|
|
4104
|
-
|
|
4565
|
+
/** Date and time at which Seam created the warning. */
|
|
4566
|
+
created_at: string;
|
|
4567
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4568
|
+
message: string;
|
|
4569
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4570
|
+
warning_code: 'waiting_to_be_issued';
|
|
4571
|
+
} | {
|
|
4572
|
+
/** Date and time at which Seam created the warning. */
|
|
4573
|
+
created_at: string;
|
|
4574
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4575
|
+
message: string;
|
|
4576
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4577
|
+
warning_code: 'schedule_externally_modified';
|
|
4578
|
+
} | {
|
|
4579
|
+
/** Date and time at which Seam created the warning. */
|
|
4580
|
+
created_at: string;
|
|
4581
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4582
|
+
message: string;
|
|
4583
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4584
|
+
warning_code: 'schedule_modified';
|
|
4585
|
+
} | {
|
|
4586
|
+
/** Date and time at which Seam created the warning. */
|
|
4587
|
+
created_at: string;
|
|
4588
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4105
4589
|
message: string;
|
|
4590
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4591
|
+
warning_code: 'being_deleted';
|
|
4106
4592
|
}>;
|
|
4107
4593
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4108
4594
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -4181,13 +4667,40 @@ export interface Routes {
|
|
|
4181
4667
|
starts_at?: string | undefined;
|
|
4182
4668
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
4183
4669
|
ends_at?: string | undefined;
|
|
4670
|
+
/** Errors associated with the `acs_credential`. */
|
|
4184
4671
|
errors: Array<{
|
|
4185
4672
|
error_code: string;
|
|
4186
4673
|
message: string;
|
|
4187
4674
|
}>;
|
|
4675
|
+
/** Warnings associated with the `acs_credential`. */
|
|
4188
4676
|
warnings: Array<{
|
|
4189
|
-
|
|
4677
|
+
/** Date and time at which Seam created the warning. */
|
|
4678
|
+
created_at: string;
|
|
4679
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4680
|
+
message: string;
|
|
4681
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4682
|
+
warning_code: 'waiting_to_be_issued';
|
|
4683
|
+
} | {
|
|
4684
|
+
/** Date and time at which Seam created the warning. */
|
|
4685
|
+
created_at: string;
|
|
4686
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4687
|
+
message: string;
|
|
4688
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4689
|
+
warning_code: 'schedule_externally_modified';
|
|
4690
|
+
} | {
|
|
4691
|
+
/** Date and time at which Seam created the warning. */
|
|
4692
|
+
created_at: string;
|
|
4693
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4694
|
+
message: string;
|
|
4695
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4696
|
+
warning_code: 'schedule_modified';
|
|
4697
|
+
} | {
|
|
4698
|
+
/** Date and time at which Seam created the warning. */
|
|
4699
|
+
created_at: string;
|
|
4700
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4190
4701
|
message: string;
|
|
4702
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4703
|
+
warning_code: 'being_deleted';
|
|
4191
4704
|
}>;
|
|
4192
4705
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4193
4706
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -4270,13 +4783,40 @@ export interface Routes {
|
|
|
4270
4783
|
starts_at?: string | undefined;
|
|
4271
4784
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
4272
4785
|
ends_at?: string | undefined;
|
|
4786
|
+
/** Errors associated with the `acs_credential`. */
|
|
4273
4787
|
errors: Array<{
|
|
4274
4788
|
error_code: string;
|
|
4275
4789
|
message: string;
|
|
4276
4790
|
}>;
|
|
4791
|
+
/** Warnings associated with the `acs_credential`. */
|
|
4277
4792
|
warnings: Array<{
|
|
4278
|
-
|
|
4793
|
+
/** Date and time at which Seam created the warning. */
|
|
4794
|
+
created_at: string;
|
|
4795
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4279
4796
|
message: string;
|
|
4797
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4798
|
+
warning_code: 'waiting_to_be_issued';
|
|
4799
|
+
} | {
|
|
4800
|
+
/** Date and time at which Seam created the warning. */
|
|
4801
|
+
created_at: string;
|
|
4802
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4803
|
+
message: string;
|
|
4804
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4805
|
+
warning_code: 'schedule_externally_modified';
|
|
4806
|
+
} | {
|
|
4807
|
+
/** Date and time at which Seam created the warning. */
|
|
4808
|
+
created_at: string;
|
|
4809
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4810
|
+
message: string;
|
|
4811
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4812
|
+
warning_code: 'schedule_modified';
|
|
4813
|
+
} | {
|
|
4814
|
+
/** Date and time at which Seam created the warning. */
|
|
4815
|
+
created_at: string;
|
|
4816
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4817
|
+
message: string;
|
|
4818
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4819
|
+
warning_code: 'being_deleted';
|
|
4280
4820
|
}>;
|
|
4281
4821
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4282
4822
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -4406,13 +4946,40 @@ export interface Routes {
|
|
|
4406
4946
|
starts_at?: string | undefined;
|
|
4407
4947
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
4408
4948
|
ends_at?: string | undefined;
|
|
4949
|
+
/** Errors associated with the `acs_credential`. */
|
|
4409
4950
|
errors: Array<{
|
|
4410
4951
|
error_code: string;
|
|
4411
4952
|
message: string;
|
|
4412
4953
|
}>;
|
|
4954
|
+
/** Warnings associated with the `acs_credential`. */
|
|
4413
4955
|
warnings: Array<{
|
|
4414
|
-
|
|
4956
|
+
/** Date and time at which Seam created the warning. */
|
|
4957
|
+
created_at: string;
|
|
4958
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4959
|
+
message: string;
|
|
4960
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4961
|
+
warning_code: 'waiting_to_be_issued';
|
|
4962
|
+
} | {
|
|
4963
|
+
/** Date and time at which Seam created the warning. */
|
|
4964
|
+
created_at: string;
|
|
4965
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4966
|
+
message: string;
|
|
4967
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4968
|
+
warning_code: 'schedule_externally_modified';
|
|
4969
|
+
} | {
|
|
4970
|
+
/** Date and time at which Seam created the warning. */
|
|
4971
|
+
created_at: string;
|
|
4972
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4973
|
+
message: string;
|
|
4974
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4975
|
+
warning_code: 'schedule_modified';
|
|
4976
|
+
} | {
|
|
4977
|
+
/** Date and time at which Seam created the warning. */
|
|
4978
|
+
created_at: string;
|
|
4979
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4415
4980
|
message: string;
|
|
4981
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4982
|
+
warning_code: 'being_deleted';
|
|
4416
4983
|
}>;
|
|
4417
4984
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4418
4985
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -4479,13 +5046,40 @@ export interface Routes {
|
|
|
4479
5046
|
starts_at?: string | undefined;
|
|
4480
5047
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
4481
5048
|
ends_at?: string | undefined;
|
|
5049
|
+
/** Errors associated with the `acs_credential`. */
|
|
4482
5050
|
errors: Array<{
|
|
4483
5051
|
error_code: string;
|
|
4484
5052
|
message: string;
|
|
4485
5053
|
}>;
|
|
5054
|
+
/** Warnings associated with the `acs_credential`. */
|
|
4486
5055
|
warnings: Array<{
|
|
4487
|
-
|
|
5056
|
+
/** Date and time at which Seam created the warning. */
|
|
5057
|
+
created_at: string;
|
|
5058
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5059
|
+
message: string;
|
|
5060
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5061
|
+
warning_code: 'waiting_to_be_issued';
|
|
5062
|
+
} | {
|
|
5063
|
+
/** Date and time at which Seam created the warning. */
|
|
5064
|
+
created_at: string;
|
|
5065
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5066
|
+
message: string;
|
|
5067
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5068
|
+
warning_code: 'schedule_externally_modified';
|
|
5069
|
+
} | {
|
|
5070
|
+
/** Date and time at which Seam created the warning. */
|
|
5071
|
+
created_at: string;
|
|
5072
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4488
5073
|
message: string;
|
|
5074
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5075
|
+
warning_code: 'schedule_modified';
|
|
5076
|
+
} | {
|
|
5077
|
+
/** Date and time at which Seam created the warning. */
|
|
5078
|
+
created_at: string;
|
|
5079
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5080
|
+
message: string;
|
|
5081
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5082
|
+
warning_code: 'being_deleted';
|
|
4489
5083
|
}>;
|
|
4490
5084
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4491
5085
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -4561,13 +5155,40 @@ export interface Routes {
|
|
|
4561
5155
|
starts_at?: string | undefined;
|
|
4562
5156
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
4563
5157
|
ends_at?: string | undefined;
|
|
5158
|
+
/** Errors associated with the `acs_credential`. */
|
|
4564
5159
|
errors: Array<{
|
|
4565
5160
|
error_code: string;
|
|
4566
5161
|
message: string;
|
|
4567
5162
|
}>;
|
|
5163
|
+
/** Warnings associated with the `acs_credential`. */
|
|
4568
5164
|
warnings: Array<{
|
|
4569
|
-
|
|
5165
|
+
/** Date and time at which Seam created the warning. */
|
|
5166
|
+
created_at: string;
|
|
5167
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5168
|
+
message: string;
|
|
5169
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5170
|
+
warning_code: 'waiting_to_be_issued';
|
|
5171
|
+
} | {
|
|
5172
|
+
/** Date and time at which Seam created the warning. */
|
|
5173
|
+
created_at: string;
|
|
5174
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5175
|
+
message: string;
|
|
5176
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5177
|
+
warning_code: 'schedule_externally_modified';
|
|
5178
|
+
} | {
|
|
5179
|
+
/** Date and time at which Seam created the warning. */
|
|
5180
|
+
created_at: string;
|
|
5181
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4570
5182
|
message: string;
|
|
5183
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5184
|
+
warning_code: 'schedule_modified';
|
|
5185
|
+
} | {
|
|
5186
|
+
/** Date and time at which Seam created the warning. */
|
|
5187
|
+
created_at: string;
|
|
5188
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5189
|
+
message: string;
|
|
5190
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5191
|
+
warning_code: 'being_deleted';
|
|
4571
5192
|
}>;
|
|
4572
5193
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4573
5194
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -4638,13 +5259,40 @@ export interface Routes {
|
|
|
4638
5259
|
starts_at?: string | undefined;
|
|
4639
5260
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
4640
5261
|
ends_at?: string | undefined;
|
|
5262
|
+
/** Errors associated with the `acs_credential`. */
|
|
4641
5263
|
errors: Array<{
|
|
4642
5264
|
error_code: string;
|
|
4643
5265
|
message: string;
|
|
4644
5266
|
}>;
|
|
5267
|
+
/** Warnings associated with the `acs_credential`. */
|
|
4645
5268
|
warnings: Array<{
|
|
4646
|
-
|
|
5269
|
+
/** Date and time at which Seam created the warning. */
|
|
5270
|
+
created_at: string;
|
|
5271
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5272
|
+
message: string;
|
|
5273
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5274
|
+
warning_code: 'waiting_to_be_issued';
|
|
5275
|
+
} | {
|
|
5276
|
+
/** Date and time at which Seam created the warning. */
|
|
5277
|
+
created_at: string;
|
|
5278
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5279
|
+
message: string;
|
|
5280
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5281
|
+
warning_code: 'schedule_externally_modified';
|
|
5282
|
+
} | {
|
|
5283
|
+
/** Date and time at which Seam created the warning. */
|
|
5284
|
+
created_at: string;
|
|
5285
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5286
|
+
message: string;
|
|
5287
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5288
|
+
warning_code: 'schedule_modified';
|
|
5289
|
+
} | {
|
|
5290
|
+
/** Date and time at which Seam created the warning. */
|
|
5291
|
+
created_at: string;
|
|
5292
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4647
5293
|
message: string;
|
|
5294
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5295
|
+
warning_code: 'being_deleted';
|
|
4648
5296
|
}>;
|
|
4649
5297
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4650
5298
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -4801,13 +5449,40 @@ export interface Routes {
|
|
|
4801
5449
|
starts_at?: string | undefined;
|
|
4802
5450
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
4803
5451
|
ends_at?: string | undefined;
|
|
5452
|
+
/** Errors associated with the `acs_credential`. */
|
|
4804
5453
|
errors: Array<{
|
|
4805
5454
|
error_code: string;
|
|
4806
5455
|
message: string;
|
|
4807
5456
|
}>;
|
|
5457
|
+
/** Warnings associated with the `acs_credential`. */
|
|
4808
5458
|
warnings: Array<{
|
|
4809
|
-
|
|
5459
|
+
/** Date and time at which Seam created the warning. */
|
|
5460
|
+
created_at: string;
|
|
5461
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5462
|
+
message: string;
|
|
5463
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5464
|
+
warning_code: 'waiting_to_be_issued';
|
|
5465
|
+
} | {
|
|
5466
|
+
/** Date and time at which Seam created the warning. */
|
|
5467
|
+
created_at: string;
|
|
5468
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5469
|
+
message: string;
|
|
5470
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5471
|
+
warning_code: 'schedule_externally_modified';
|
|
5472
|
+
} | {
|
|
5473
|
+
/** Date and time at which Seam created the warning. */
|
|
5474
|
+
created_at: string;
|
|
5475
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4810
5476
|
message: string;
|
|
5477
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5478
|
+
warning_code: 'schedule_modified';
|
|
5479
|
+
} | {
|
|
5480
|
+
/** Date and time at which Seam created the warning. */
|
|
5481
|
+
created_at: string;
|
|
5482
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5483
|
+
message: string;
|
|
5484
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5485
|
+
warning_code: 'being_deleted';
|
|
4811
5486
|
}>;
|
|
4812
5487
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4813
5488
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -4858,13 +5533,40 @@ export interface Routes {
|
|
|
4858
5533
|
starts_at?: string | undefined;
|
|
4859
5534
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
4860
5535
|
ends_at?: string | undefined;
|
|
5536
|
+
/** Errors associated with the `acs_credential`. */
|
|
4861
5537
|
errors: Array<{
|
|
4862
5538
|
error_code: string;
|
|
4863
5539
|
message: string;
|
|
4864
5540
|
}>;
|
|
5541
|
+
/** Warnings associated with the `acs_credential`. */
|
|
4865
5542
|
warnings: Array<{
|
|
4866
|
-
|
|
5543
|
+
/** Date and time at which Seam created the warning. */
|
|
5544
|
+
created_at: string;
|
|
5545
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5546
|
+
message: string;
|
|
5547
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5548
|
+
warning_code: 'waiting_to_be_issued';
|
|
5549
|
+
} | {
|
|
5550
|
+
/** Date and time at which Seam created the warning. */
|
|
5551
|
+
created_at: string;
|
|
5552
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5553
|
+
message: string;
|
|
5554
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5555
|
+
warning_code: 'schedule_externally_modified';
|
|
5556
|
+
} | {
|
|
5557
|
+
/** Date and time at which Seam created the warning. */
|
|
5558
|
+
created_at: string;
|
|
5559
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5560
|
+
message: string;
|
|
5561
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5562
|
+
warning_code: 'schedule_modified';
|
|
5563
|
+
} | {
|
|
5564
|
+
/** Date and time at which Seam created the warning. */
|
|
5565
|
+
created_at: string;
|
|
5566
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4867
5567
|
message: string;
|
|
5568
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5569
|
+
warning_code: 'being_deleted';
|
|
4868
5570
|
}>;
|
|
4869
5571
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4870
5572
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -4952,13 +5654,40 @@ export interface Routes {
|
|
|
4952
5654
|
starts_at?: string | undefined;
|
|
4953
5655
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
4954
5656
|
ends_at?: string | undefined;
|
|
5657
|
+
/** Errors associated with the `acs_credential`. */
|
|
4955
5658
|
errors: Array<{
|
|
4956
5659
|
error_code: string;
|
|
4957
5660
|
message: string;
|
|
4958
5661
|
}>;
|
|
5662
|
+
/** Warnings associated with the `acs_credential`. */
|
|
4959
5663
|
warnings: Array<{
|
|
4960
|
-
|
|
5664
|
+
/** Date and time at which Seam created the warning. */
|
|
5665
|
+
created_at: string;
|
|
5666
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5667
|
+
message: string;
|
|
5668
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5669
|
+
warning_code: 'waiting_to_be_issued';
|
|
5670
|
+
} | {
|
|
5671
|
+
/** Date and time at which Seam created the warning. */
|
|
5672
|
+
created_at: string;
|
|
5673
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5674
|
+
message: string;
|
|
5675
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5676
|
+
warning_code: 'schedule_externally_modified';
|
|
5677
|
+
} | {
|
|
5678
|
+
/** Date and time at which Seam created the warning. */
|
|
5679
|
+
created_at: string;
|
|
5680
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5681
|
+
message: string;
|
|
5682
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5683
|
+
warning_code: 'schedule_modified';
|
|
5684
|
+
} | {
|
|
5685
|
+
/** Date and time at which Seam created the warning. */
|
|
5686
|
+
created_at: string;
|
|
5687
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4961
5688
|
message: string;
|
|
5689
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5690
|
+
warning_code: 'being_deleted';
|
|
4962
5691
|
}>;
|
|
4963
5692
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4964
5693
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -5009,13 +5738,40 @@ export interface Routes {
|
|
|
5009
5738
|
starts_at?: string | undefined;
|
|
5010
5739
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
5011
5740
|
ends_at?: string | undefined;
|
|
5741
|
+
/** Errors associated with the `acs_credential`. */
|
|
5012
5742
|
errors: Array<{
|
|
5013
5743
|
error_code: string;
|
|
5014
5744
|
message: string;
|
|
5015
5745
|
}>;
|
|
5746
|
+
/** Warnings associated with the `acs_credential`. */
|
|
5016
5747
|
warnings: Array<{
|
|
5017
|
-
|
|
5748
|
+
/** Date and time at which Seam created the warning. */
|
|
5749
|
+
created_at: string;
|
|
5750
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5751
|
+
message: string;
|
|
5752
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5753
|
+
warning_code: 'waiting_to_be_issued';
|
|
5754
|
+
} | {
|
|
5755
|
+
/** Date and time at which Seam created the warning. */
|
|
5756
|
+
created_at: string;
|
|
5757
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5758
|
+
message: string;
|
|
5759
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5760
|
+
warning_code: 'schedule_externally_modified';
|
|
5761
|
+
} | {
|
|
5762
|
+
/** Date and time at which Seam created the warning. */
|
|
5763
|
+
created_at: string;
|
|
5764
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5018
5765
|
message: string;
|
|
5766
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5767
|
+
warning_code: 'schedule_modified';
|
|
5768
|
+
} | {
|
|
5769
|
+
/** Date and time at which Seam created the warning. */
|
|
5770
|
+
created_at: string;
|
|
5771
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5772
|
+
message: string;
|
|
5773
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5774
|
+
warning_code: 'being_deleted';
|
|
5019
5775
|
}>;
|
|
5020
5776
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5021
5777
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -5579,13 +6335,40 @@ export interface Routes {
|
|
|
5579
6335
|
starts_at?: string | undefined;
|
|
5580
6336
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
5581
6337
|
ends_at?: string | undefined;
|
|
6338
|
+
/** Errors associated with the `acs_credential`. */
|
|
5582
6339
|
errors: Array<{
|
|
5583
6340
|
error_code: string;
|
|
5584
6341
|
message: string;
|
|
5585
6342
|
}>;
|
|
6343
|
+
/** Warnings associated with the `acs_credential`. */
|
|
5586
6344
|
warnings: Array<{
|
|
5587
|
-
|
|
6345
|
+
/** Date and time at which Seam created the warning. */
|
|
6346
|
+
created_at: string;
|
|
6347
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6348
|
+
message: string;
|
|
6349
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6350
|
+
warning_code: 'waiting_to_be_issued';
|
|
6351
|
+
} | {
|
|
6352
|
+
/** Date and time at which Seam created the warning. */
|
|
6353
|
+
created_at: string;
|
|
6354
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5588
6355
|
message: string;
|
|
6356
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6357
|
+
warning_code: 'schedule_externally_modified';
|
|
6358
|
+
} | {
|
|
6359
|
+
/** Date and time at which Seam created the warning. */
|
|
6360
|
+
created_at: string;
|
|
6361
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6362
|
+
message: string;
|
|
6363
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6364
|
+
warning_code: 'schedule_modified';
|
|
6365
|
+
} | {
|
|
6366
|
+
/** Date and time at which Seam created the warning. */
|
|
6367
|
+
created_at: string;
|
|
6368
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6369
|
+
message: string;
|
|
6370
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6371
|
+
warning_code: 'being_deleted';
|
|
5589
6372
|
}>;
|
|
5590
6373
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5591
6374
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -5636,13 +6419,40 @@ export interface Routes {
|
|
|
5636
6419
|
starts_at?: string | undefined;
|
|
5637
6420
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
5638
6421
|
ends_at?: string | undefined;
|
|
6422
|
+
/** Errors associated with the `acs_credential`. */
|
|
5639
6423
|
errors: Array<{
|
|
5640
6424
|
error_code: string;
|
|
5641
6425
|
message: string;
|
|
5642
6426
|
}>;
|
|
6427
|
+
/** Warnings associated with the `acs_credential`. */
|
|
5643
6428
|
warnings: Array<{
|
|
5644
|
-
|
|
6429
|
+
/** Date and time at which Seam created the warning. */
|
|
6430
|
+
created_at: string;
|
|
6431
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6432
|
+
message: string;
|
|
6433
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6434
|
+
warning_code: 'waiting_to_be_issued';
|
|
6435
|
+
} | {
|
|
6436
|
+
/** Date and time at which Seam created the warning. */
|
|
6437
|
+
created_at: string;
|
|
6438
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5645
6439
|
message: string;
|
|
6440
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6441
|
+
warning_code: 'schedule_externally_modified';
|
|
6442
|
+
} | {
|
|
6443
|
+
/** Date and time at which Seam created the warning. */
|
|
6444
|
+
created_at: string;
|
|
6445
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6446
|
+
message: string;
|
|
6447
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6448
|
+
warning_code: 'schedule_modified';
|
|
6449
|
+
} | {
|
|
6450
|
+
/** Date and time at which Seam created the warning. */
|
|
6451
|
+
created_at: string;
|
|
6452
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6453
|
+
message: string;
|
|
6454
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6455
|
+
warning_code: 'being_deleted';
|
|
5646
6456
|
}>;
|
|
5647
6457
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5648
6458
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -5730,13 +6540,40 @@ export interface Routes {
|
|
|
5730
6540
|
starts_at?: string | undefined;
|
|
5731
6541
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
5732
6542
|
ends_at?: string | undefined;
|
|
6543
|
+
/** Errors associated with the `acs_credential`. */
|
|
5733
6544
|
errors: Array<{
|
|
5734
6545
|
error_code: string;
|
|
5735
6546
|
message: string;
|
|
5736
6547
|
}>;
|
|
6548
|
+
/** Warnings associated with the `acs_credential`. */
|
|
5737
6549
|
warnings: Array<{
|
|
5738
|
-
|
|
6550
|
+
/** Date and time at which Seam created the warning. */
|
|
6551
|
+
created_at: string;
|
|
6552
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6553
|
+
message: string;
|
|
6554
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6555
|
+
warning_code: 'waiting_to_be_issued';
|
|
6556
|
+
} | {
|
|
6557
|
+
/** Date and time at which Seam created the warning. */
|
|
6558
|
+
created_at: string;
|
|
6559
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6560
|
+
message: string;
|
|
6561
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6562
|
+
warning_code: 'schedule_externally_modified';
|
|
6563
|
+
} | {
|
|
6564
|
+
/** Date and time at which Seam created the warning. */
|
|
6565
|
+
created_at: string;
|
|
6566
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5739
6567
|
message: string;
|
|
6568
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6569
|
+
warning_code: 'schedule_modified';
|
|
6570
|
+
} | {
|
|
6571
|
+
/** Date and time at which Seam created the warning. */
|
|
6572
|
+
created_at: string;
|
|
6573
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6574
|
+
message: string;
|
|
6575
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6576
|
+
warning_code: 'being_deleted';
|
|
5740
6577
|
}>;
|
|
5741
6578
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5742
6579
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -5787,13 +6624,40 @@ export interface Routes {
|
|
|
5787
6624
|
starts_at?: string | undefined;
|
|
5788
6625
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
5789
6626
|
ends_at?: string | undefined;
|
|
6627
|
+
/** Errors associated with the `acs_credential`. */
|
|
5790
6628
|
errors: Array<{
|
|
5791
6629
|
error_code: string;
|
|
5792
6630
|
message: string;
|
|
5793
6631
|
}>;
|
|
6632
|
+
/** Warnings associated with the `acs_credential`. */
|
|
5794
6633
|
warnings: Array<{
|
|
5795
|
-
|
|
6634
|
+
/** Date and time at which Seam created the warning. */
|
|
6635
|
+
created_at: string;
|
|
6636
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6637
|
+
message: string;
|
|
6638
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6639
|
+
warning_code: 'waiting_to_be_issued';
|
|
6640
|
+
} | {
|
|
6641
|
+
/** Date and time at which Seam created the warning. */
|
|
6642
|
+
created_at: string;
|
|
6643
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6644
|
+
message: string;
|
|
6645
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6646
|
+
warning_code: 'schedule_externally_modified';
|
|
6647
|
+
} | {
|
|
6648
|
+
/** Date and time at which Seam created the warning. */
|
|
6649
|
+
created_at: string;
|
|
6650
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6651
|
+
message: string;
|
|
6652
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6653
|
+
warning_code: 'schedule_modified';
|
|
6654
|
+
} | {
|
|
6655
|
+
/** Date and time at which Seam created the warning. */
|
|
6656
|
+
created_at: string;
|
|
6657
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5796
6658
|
message: string;
|
|
6659
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6660
|
+
warning_code: 'being_deleted';
|
|
5797
6661
|
}>;
|
|
5798
6662
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5799
6663
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -6356,13 +7220,40 @@ export interface Routes {
|
|
|
6356
7220
|
starts_at?: string | undefined;
|
|
6357
7221
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
6358
7222
|
ends_at?: string | undefined;
|
|
7223
|
+
/** Errors associated with the `acs_credential`. */
|
|
6359
7224
|
errors: Array<{
|
|
6360
7225
|
error_code: string;
|
|
6361
7226
|
message: string;
|
|
6362
7227
|
}>;
|
|
7228
|
+
/** Warnings associated with the `acs_credential`. */
|
|
6363
7229
|
warnings: Array<{
|
|
6364
|
-
|
|
7230
|
+
/** Date and time at which Seam created the warning. */
|
|
7231
|
+
created_at: string;
|
|
7232
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7233
|
+
message: string;
|
|
7234
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7235
|
+
warning_code: 'waiting_to_be_issued';
|
|
7236
|
+
} | {
|
|
7237
|
+
/** Date and time at which Seam created the warning. */
|
|
7238
|
+
created_at: string;
|
|
7239
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7240
|
+
message: string;
|
|
7241
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7242
|
+
warning_code: 'schedule_externally_modified';
|
|
7243
|
+
} | {
|
|
7244
|
+
/** Date and time at which Seam created the warning. */
|
|
7245
|
+
created_at: string;
|
|
7246
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6365
7247
|
message: string;
|
|
7248
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7249
|
+
warning_code: 'schedule_modified';
|
|
7250
|
+
} | {
|
|
7251
|
+
/** Date and time at which Seam created the warning. */
|
|
7252
|
+
created_at: string;
|
|
7253
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7254
|
+
message: string;
|
|
7255
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7256
|
+
warning_code: 'being_deleted';
|
|
6366
7257
|
}>;
|
|
6367
7258
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
6368
7259
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -7551,13 +8442,40 @@ export interface Routes {
|
|
|
7551
8442
|
starts_at?: string | undefined;
|
|
7552
8443
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
7553
8444
|
ends_at?: string | undefined;
|
|
8445
|
+
/** Errors associated with the `acs_credential`. */
|
|
7554
8446
|
errors: Array<{
|
|
7555
8447
|
error_code: string;
|
|
7556
8448
|
message: string;
|
|
7557
8449
|
}>;
|
|
8450
|
+
/** Warnings associated with the `acs_credential`. */
|
|
7558
8451
|
warnings: Array<{
|
|
7559
|
-
|
|
8452
|
+
/** Date and time at which Seam created the warning. */
|
|
8453
|
+
created_at: string;
|
|
8454
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7560
8455
|
message: string;
|
|
8456
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8457
|
+
warning_code: 'waiting_to_be_issued';
|
|
8458
|
+
} | {
|
|
8459
|
+
/** Date and time at which Seam created the warning. */
|
|
8460
|
+
created_at: string;
|
|
8461
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8462
|
+
message: string;
|
|
8463
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8464
|
+
warning_code: 'schedule_externally_modified';
|
|
8465
|
+
} | {
|
|
8466
|
+
/** Date and time at which Seam created the warning. */
|
|
8467
|
+
created_at: string;
|
|
8468
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8469
|
+
message: string;
|
|
8470
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8471
|
+
warning_code: 'schedule_modified';
|
|
8472
|
+
} | {
|
|
8473
|
+
/** Date and time at which Seam created the warning. */
|
|
8474
|
+
created_at: string;
|
|
8475
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8476
|
+
message: string;
|
|
8477
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8478
|
+
warning_code: 'being_deleted';
|
|
7561
8479
|
}>;
|
|
7562
8480
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7563
8481
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -7608,13 +8526,40 @@ export interface Routes {
|
|
|
7608
8526
|
starts_at?: string | undefined;
|
|
7609
8527
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
7610
8528
|
ends_at?: string | undefined;
|
|
8529
|
+
/** Errors associated with the `acs_credential`. */
|
|
7611
8530
|
errors: Array<{
|
|
7612
8531
|
error_code: string;
|
|
7613
8532
|
message: string;
|
|
7614
8533
|
}>;
|
|
8534
|
+
/** Warnings associated with the `acs_credential`. */
|
|
7615
8535
|
warnings: Array<{
|
|
7616
|
-
|
|
8536
|
+
/** Date and time at which Seam created the warning. */
|
|
8537
|
+
created_at: string;
|
|
8538
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8539
|
+
message: string;
|
|
8540
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8541
|
+
warning_code: 'waiting_to_be_issued';
|
|
8542
|
+
} | {
|
|
8543
|
+
/** Date and time at which Seam created the warning. */
|
|
8544
|
+
created_at: string;
|
|
8545
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7617
8546
|
message: string;
|
|
8547
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8548
|
+
warning_code: 'schedule_externally_modified';
|
|
8549
|
+
} | {
|
|
8550
|
+
/** Date and time at which Seam created the warning. */
|
|
8551
|
+
created_at: string;
|
|
8552
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8553
|
+
message: string;
|
|
8554
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8555
|
+
warning_code: 'schedule_modified';
|
|
8556
|
+
} | {
|
|
8557
|
+
/** Date and time at which Seam created the warning. */
|
|
8558
|
+
created_at: string;
|
|
8559
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8560
|
+
message: string;
|
|
8561
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8562
|
+
warning_code: 'being_deleted';
|
|
7618
8563
|
}>;
|
|
7619
8564
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7620
8565
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -7702,13 +8647,40 @@ export interface Routes {
|
|
|
7702
8647
|
starts_at?: string | undefined;
|
|
7703
8648
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
7704
8649
|
ends_at?: string | undefined;
|
|
8650
|
+
/** Errors associated with the `acs_credential`. */
|
|
7705
8651
|
errors: Array<{
|
|
7706
8652
|
error_code: string;
|
|
7707
8653
|
message: string;
|
|
7708
8654
|
}>;
|
|
8655
|
+
/** Warnings associated with the `acs_credential`. */
|
|
7709
8656
|
warnings: Array<{
|
|
7710
|
-
|
|
8657
|
+
/** Date and time at which Seam created the warning. */
|
|
8658
|
+
created_at: string;
|
|
8659
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8660
|
+
message: string;
|
|
8661
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8662
|
+
warning_code: 'waiting_to_be_issued';
|
|
8663
|
+
} | {
|
|
8664
|
+
/** Date and time at which Seam created the warning. */
|
|
8665
|
+
created_at: string;
|
|
8666
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8667
|
+
message: string;
|
|
8668
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8669
|
+
warning_code: 'schedule_externally_modified';
|
|
8670
|
+
} | {
|
|
8671
|
+
/** Date and time at which Seam created the warning. */
|
|
8672
|
+
created_at: string;
|
|
8673
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8674
|
+
message: string;
|
|
8675
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8676
|
+
warning_code: 'schedule_modified';
|
|
8677
|
+
} | {
|
|
8678
|
+
/** Date and time at which Seam created the warning. */
|
|
8679
|
+
created_at: string;
|
|
8680
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7711
8681
|
message: string;
|
|
8682
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8683
|
+
warning_code: 'being_deleted';
|
|
7712
8684
|
}>;
|
|
7713
8685
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7714
8686
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -7759,13 +8731,40 @@ export interface Routes {
|
|
|
7759
8731
|
starts_at?: string | undefined;
|
|
7760
8732
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
7761
8733
|
ends_at?: string | undefined;
|
|
8734
|
+
/** Errors associated with the `acs_credential`. */
|
|
7762
8735
|
errors: Array<{
|
|
7763
8736
|
error_code: string;
|
|
7764
8737
|
message: string;
|
|
7765
8738
|
}>;
|
|
8739
|
+
/** Warnings associated with the `acs_credential`. */
|
|
7766
8740
|
warnings: Array<{
|
|
7767
|
-
|
|
8741
|
+
/** Date and time at which Seam created the warning. */
|
|
8742
|
+
created_at: string;
|
|
8743
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8744
|
+
message: string;
|
|
8745
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8746
|
+
warning_code: 'waiting_to_be_issued';
|
|
8747
|
+
} | {
|
|
8748
|
+
/** Date and time at which Seam created the warning. */
|
|
8749
|
+
created_at: string;
|
|
8750
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8751
|
+
message: string;
|
|
8752
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8753
|
+
warning_code: 'schedule_externally_modified';
|
|
8754
|
+
} | {
|
|
8755
|
+
/** Date and time at which Seam created the warning. */
|
|
8756
|
+
created_at: string;
|
|
8757
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7768
8758
|
message: string;
|
|
8759
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8760
|
+
warning_code: 'schedule_modified';
|
|
8761
|
+
} | {
|
|
8762
|
+
/** Date and time at which Seam created the warning. */
|
|
8763
|
+
created_at: string;
|
|
8764
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8765
|
+
message: string;
|
|
8766
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8767
|
+
warning_code: 'being_deleted';
|
|
7769
8768
|
}>;
|
|
7770
8769
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7771
8770
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -8283,13 +9282,40 @@ export interface Routes {
|
|
|
8283
9282
|
starts_at?: string | undefined;
|
|
8284
9283
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
8285
9284
|
ends_at?: string | undefined;
|
|
9285
|
+
/** Errors associated with the `acs_credential`. */
|
|
8286
9286
|
errors: Array<{
|
|
8287
9287
|
error_code: string;
|
|
8288
9288
|
message: string;
|
|
8289
9289
|
}>;
|
|
9290
|
+
/** Warnings associated with the `acs_credential`. */
|
|
8290
9291
|
warnings: Array<{
|
|
8291
|
-
|
|
9292
|
+
/** Date and time at which Seam created the warning. */
|
|
9293
|
+
created_at: string;
|
|
9294
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9295
|
+
message: string;
|
|
9296
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9297
|
+
warning_code: 'waiting_to_be_issued';
|
|
9298
|
+
} | {
|
|
9299
|
+
/** Date and time at which Seam created the warning. */
|
|
9300
|
+
created_at: string;
|
|
9301
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9302
|
+
message: string;
|
|
9303
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9304
|
+
warning_code: 'schedule_externally_modified';
|
|
9305
|
+
} | {
|
|
9306
|
+
/** Date and time at which Seam created the warning. */
|
|
9307
|
+
created_at: string;
|
|
9308
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8292
9309
|
message: string;
|
|
9310
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9311
|
+
warning_code: 'schedule_modified';
|
|
9312
|
+
} | {
|
|
9313
|
+
/** Date and time at which Seam created the warning. */
|
|
9314
|
+
created_at: string;
|
|
9315
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9316
|
+
message: string;
|
|
9317
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9318
|
+
warning_code: 'being_deleted';
|
|
8293
9319
|
}>;
|
|
8294
9320
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
8295
9321
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -8340,13 +9366,40 @@ export interface Routes {
|
|
|
8340
9366
|
starts_at?: string | undefined;
|
|
8341
9367
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
8342
9368
|
ends_at?: string | undefined;
|
|
9369
|
+
/** Errors associated with the `acs_credential`. */
|
|
8343
9370
|
errors: Array<{
|
|
8344
9371
|
error_code: string;
|
|
8345
9372
|
message: string;
|
|
8346
9373
|
}>;
|
|
9374
|
+
/** Warnings associated with the `acs_credential`. */
|
|
8347
9375
|
warnings: Array<{
|
|
8348
|
-
|
|
9376
|
+
/** Date and time at which Seam created the warning. */
|
|
9377
|
+
created_at: string;
|
|
9378
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9379
|
+
message: string;
|
|
9380
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9381
|
+
warning_code: 'waiting_to_be_issued';
|
|
9382
|
+
} | {
|
|
9383
|
+
/** Date and time at which Seam created the warning. */
|
|
9384
|
+
created_at: string;
|
|
9385
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9386
|
+
message: string;
|
|
9387
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9388
|
+
warning_code: 'schedule_externally_modified';
|
|
9389
|
+
} | {
|
|
9390
|
+
/** Date and time at which Seam created the warning. */
|
|
9391
|
+
created_at: string;
|
|
9392
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9393
|
+
message: string;
|
|
9394
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9395
|
+
warning_code: 'schedule_modified';
|
|
9396
|
+
} | {
|
|
9397
|
+
/** Date and time at which Seam created the warning. */
|
|
9398
|
+
created_at: string;
|
|
9399
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8349
9400
|
message: string;
|
|
9401
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9402
|
+
warning_code: 'being_deleted';
|
|
8350
9403
|
}>;
|
|
8351
9404
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
8352
9405
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -8434,13 +9487,40 @@ export interface Routes {
|
|
|
8434
9487
|
starts_at?: string | undefined;
|
|
8435
9488
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
8436
9489
|
ends_at?: string | undefined;
|
|
9490
|
+
/** Errors associated with the `acs_credential`. */
|
|
8437
9491
|
errors: Array<{
|
|
8438
9492
|
error_code: string;
|
|
8439
9493
|
message: string;
|
|
8440
9494
|
}>;
|
|
9495
|
+
/** Warnings associated with the `acs_credential`. */
|
|
8441
9496
|
warnings: Array<{
|
|
8442
|
-
|
|
9497
|
+
/** Date and time at which Seam created the warning. */
|
|
9498
|
+
created_at: string;
|
|
9499
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9500
|
+
message: string;
|
|
9501
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9502
|
+
warning_code: 'waiting_to_be_issued';
|
|
9503
|
+
} | {
|
|
9504
|
+
/** Date and time at which Seam created the warning. */
|
|
9505
|
+
created_at: string;
|
|
9506
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9507
|
+
message: string;
|
|
9508
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9509
|
+
warning_code: 'schedule_externally_modified';
|
|
9510
|
+
} | {
|
|
9511
|
+
/** Date and time at which Seam created the warning. */
|
|
9512
|
+
created_at: string;
|
|
9513
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9514
|
+
message: string;
|
|
9515
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9516
|
+
warning_code: 'schedule_modified';
|
|
9517
|
+
} | {
|
|
9518
|
+
/** Date and time at which Seam created the warning. */
|
|
9519
|
+
created_at: string;
|
|
9520
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8443
9521
|
message: string;
|
|
9522
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9523
|
+
warning_code: 'being_deleted';
|
|
8444
9524
|
}>;
|
|
8445
9525
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
8446
9526
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -8491,13 +9571,40 @@ export interface Routes {
|
|
|
8491
9571
|
starts_at?: string | undefined;
|
|
8492
9572
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
8493
9573
|
ends_at?: string | undefined;
|
|
9574
|
+
/** Errors associated with the `acs_credential`. */
|
|
8494
9575
|
errors: Array<{
|
|
8495
9576
|
error_code: string;
|
|
8496
9577
|
message: string;
|
|
8497
9578
|
}>;
|
|
9579
|
+
/** Warnings associated with the `acs_credential`. */
|
|
8498
9580
|
warnings: Array<{
|
|
8499
|
-
|
|
9581
|
+
/** Date and time at which Seam created the warning. */
|
|
9582
|
+
created_at: string;
|
|
9583
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9584
|
+
message: string;
|
|
9585
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9586
|
+
warning_code: 'waiting_to_be_issued';
|
|
9587
|
+
} | {
|
|
9588
|
+
/** Date and time at which Seam created the warning. */
|
|
9589
|
+
created_at: string;
|
|
9590
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9591
|
+
message: string;
|
|
9592
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9593
|
+
warning_code: 'schedule_externally_modified';
|
|
9594
|
+
} | {
|
|
9595
|
+
/** Date and time at which Seam created the warning. */
|
|
9596
|
+
created_at: string;
|
|
9597
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8500
9598
|
message: string;
|
|
9599
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9600
|
+
warning_code: 'schedule_modified';
|
|
9601
|
+
} | {
|
|
9602
|
+
/** Date and time at which Seam created the warning. */
|
|
9603
|
+
created_at: string;
|
|
9604
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9605
|
+
message: string;
|
|
9606
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9607
|
+
warning_code: 'being_deleted';
|
|
8501
9608
|
}>;
|
|
8502
9609
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
8503
9610
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -9046,7 +10153,7 @@ export interface Routes {
|
|
|
9046
10153
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
9047
10154
|
custom_redirect_url?: string | undefined;
|
|
9048
10155
|
custom_redirect_failure_url?: string | undefined;
|
|
9049
|
-
accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
10156
|
+
accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
9050
10157
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
9051
10158
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
9052
10159
|
automatically_manage_new_devices?: boolean;
|
|
@@ -10396,7 +11503,7 @@ export interface Routes {
|
|
|
10396
11503
|
formData: {};
|
|
10397
11504
|
jsonResponse: {
|
|
10398
11505
|
device_providers: Array<{
|
|
10399
|
-
device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service';
|
|
11506
|
+
device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service';
|
|
10400
11507
|
display_name: string;
|
|
10401
11508
|
image_url: string;
|
|
10402
11509
|
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
@@ -13046,13 +14153,40 @@ export interface Routes {
|
|
|
13046
14153
|
starts_at?: string | undefined;
|
|
13047
14154
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
13048
14155
|
ends_at?: string | undefined;
|
|
14156
|
+
/** Errors associated with the `acs_credential`. */
|
|
13049
14157
|
errors: Array<{
|
|
13050
14158
|
error_code: string;
|
|
13051
14159
|
message: string;
|
|
13052
14160
|
}>;
|
|
14161
|
+
/** Warnings associated with the `acs_credential`. */
|
|
13053
14162
|
warnings: Array<{
|
|
13054
|
-
|
|
14163
|
+
/** Date and time at which Seam created the warning. */
|
|
14164
|
+
created_at: string;
|
|
14165
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14166
|
+
message: string;
|
|
14167
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14168
|
+
warning_code: 'waiting_to_be_issued';
|
|
14169
|
+
} | {
|
|
14170
|
+
/** Date and time at which Seam created the warning. */
|
|
14171
|
+
created_at: string;
|
|
14172
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13055
14173
|
message: string;
|
|
14174
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14175
|
+
warning_code: 'schedule_externally_modified';
|
|
14176
|
+
} | {
|
|
14177
|
+
/** Date and time at which Seam created the warning. */
|
|
14178
|
+
created_at: string;
|
|
14179
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14180
|
+
message: string;
|
|
14181
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14182
|
+
warning_code: 'schedule_modified';
|
|
14183
|
+
} | {
|
|
14184
|
+
/** Date and time at which Seam created the warning. */
|
|
14185
|
+
created_at: string;
|
|
14186
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14187
|
+
message: string;
|
|
14188
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14189
|
+
warning_code: 'being_deleted';
|
|
13056
14190
|
}>;
|
|
13057
14191
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
13058
14192
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -13103,13 +14237,40 @@ export interface Routes {
|
|
|
13103
14237
|
starts_at?: string | undefined;
|
|
13104
14238
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
13105
14239
|
ends_at?: string | undefined;
|
|
14240
|
+
/** Errors associated with the `acs_credential`. */
|
|
13106
14241
|
errors: Array<{
|
|
13107
14242
|
error_code: string;
|
|
13108
14243
|
message: string;
|
|
13109
14244
|
}>;
|
|
14245
|
+
/** Warnings associated with the `acs_credential`. */
|
|
13110
14246
|
warnings: Array<{
|
|
13111
|
-
|
|
14247
|
+
/** Date and time at which Seam created the warning. */
|
|
14248
|
+
created_at: string;
|
|
14249
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14250
|
+
message: string;
|
|
14251
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14252
|
+
warning_code: 'waiting_to_be_issued';
|
|
14253
|
+
} | {
|
|
14254
|
+
/** Date and time at which Seam created the warning. */
|
|
14255
|
+
created_at: string;
|
|
14256
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13112
14257
|
message: string;
|
|
14258
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14259
|
+
warning_code: 'schedule_externally_modified';
|
|
14260
|
+
} | {
|
|
14261
|
+
/** Date and time at which Seam created the warning. */
|
|
14262
|
+
created_at: string;
|
|
14263
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14264
|
+
message: string;
|
|
14265
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14266
|
+
warning_code: 'schedule_modified';
|
|
14267
|
+
} | {
|
|
14268
|
+
/** Date and time at which Seam created the warning. */
|
|
14269
|
+
created_at: string;
|
|
14270
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14271
|
+
message: string;
|
|
14272
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14273
|
+
warning_code: 'being_deleted';
|
|
13113
14274
|
}>;
|
|
13114
14275
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
13115
14276
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -13197,13 +14358,40 @@ export interface Routes {
|
|
|
13197
14358
|
starts_at?: string | undefined;
|
|
13198
14359
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
13199
14360
|
ends_at?: string | undefined;
|
|
14361
|
+
/** Errors associated with the `acs_credential`. */
|
|
13200
14362
|
errors: Array<{
|
|
13201
14363
|
error_code: string;
|
|
13202
14364
|
message: string;
|
|
13203
14365
|
}>;
|
|
14366
|
+
/** Warnings associated with the `acs_credential`. */
|
|
13204
14367
|
warnings: Array<{
|
|
13205
|
-
|
|
14368
|
+
/** Date and time at which Seam created the warning. */
|
|
14369
|
+
created_at: string;
|
|
14370
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14371
|
+
message: string;
|
|
14372
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14373
|
+
warning_code: 'waiting_to_be_issued';
|
|
14374
|
+
} | {
|
|
14375
|
+
/** Date and time at which Seam created the warning. */
|
|
14376
|
+
created_at: string;
|
|
14377
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14378
|
+
message: string;
|
|
14379
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14380
|
+
warning_code: 'schedule_externally_modified';
|
|
14381
|
+
} | {
|
|
14382
|
+
/** Date and time at which Seam created the warning. */
|
|
14383
|
+
created_at: string;
|
|
14384
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13206
14385
|
message: string;
|
|
14386
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14387
|
+
warning_code: 'schedule_modified';
|
|
14388
|
+
} | {
|
|
14389
|
+
/** Date and time at which Seam created the warning. */
|
|
14390
|
+
created_at: string;
|
|
14391
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14392
|
+
message: string;
|
|
14393
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14394
|
+
warning_code: 'being_deleted';
|
|
13207
14395
|
}>;
|
|
13208
14396
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
13209
14397
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -13254,13 +14442,40 @@ export interface Routes {
|
|
|
13254
14442
|
starts_at?: string | undefined;
|
|
13255
14443
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
13256
14444
|
ends_at?: string | undefined;
|
|
14445
|
+
/** Errors associated with the `acs_credential`. */
|
|
13257
14446
|
errors: Array<{
|
|
13258
14447
|
error_code: string;
|
|
13259
14448
|
message: string;
|
|
13260
14449
|
}>;
|
|
14450
|
+
/** Warnings associated with the `acs_credential`. */
|
|
13261
14451
|
warnings: Array<{
|
|
13262
|
-
|
|
14452
|
+
/** Date and time at which Seam created the warning. */
|
|
14453
|
+
created_at: string;
|
|
14454
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14455
|
+
message: string;
|
|
14456
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14457
|
+
warning_code: 'waiting_to_be_issued';
|
|
14458
|
+
} | {
|
|
14459
|
+
/** Date and time at which Seam created the warning. */
|
|
14460
|
+
created_at: string;
|
|
14461
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14462
|
+
message: string;
|
|
14463
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14464
|
+
warning_code: 'schedule_externally_modified';
|
|
14465
|
+
} | {
|
|
14466
|
+
/** Date and time at which Seam created the warning. */
|
|
14467
|
+
created_at: string;
|
|
14468
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14469
|
+
message: string;
|
|
14470
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14471
|
+
warning_code: 'schedule_modified';
|
|
14472
|
+
} | {
|
|
14473
|
+
/** Date and time at which Seam created the warning. */
|
|
14474
|
+
created_at: string;
|
|
14475
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13263
14476
|
message: string;
|
|
14477
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14478
|
+
warning_code: 'being_deleted';
|
|
13264
14479
|
}>;
|
|
13265
14480
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
13266
14481
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -13779,13 +14994,40 @@ export interface Routes {
|
|
|
13779
14994
|
starts_at?: string | undefined;
|
|
13780
14995
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
13781
14996
|
ends_at?: string | undefined;
|
|
14997
|
+
/** Errors associated with the `acs_credential`. */
|
|
13782
14998
|
errors: Array<{
|
|
13783
14999
|
error_code: string;
|
|
13784
15000
|
message: string;
|
|
13785
15001
|
}>;
|
|
15002
|
+
/** Warnings associated with the `acs_credential`. */
|
|
13786
15003
|
warnings: Array<{
|
|
13787
|
-
|
|
15004
|
+
/** Date and time at which Seam created the warning. */
|
|
15005
|
+
created_at: string;
|
|
15006
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15007
|
+
message: string;
|
|
15008
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15009
|
+
warning_code: 'waiting_to_be_issued';
|
|
15010
|
+
} | {
|
|
15011
|
+
/** Date and time at which Seam created the warning. */
|
|
15012
|
+
created_at: string;
|
|
15013
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15014
|
+
message: string;
|
|
15015
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15016
|
+
warning_code: 'schedule_externally_modified';
|
|
15017
|
+
} | {
|
|
15018
|
+
/** Date and time at which Seam created the warning. */
|
|
15019
|
+
created_at: string;
|
|
15020
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15021
|
+
message: string;
|
|
15022
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15023
|
+
warning_code: 'schedule_modified';
|
|
15024
|
+
} | {
|
|
15025
|
+
/** Date and time at which Seam created the warning. */
|
|
15026
|
+
created_at: string;
|
|
15027
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13788
15028
|
message: string;
|
|
15029
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15030
|
+
warning_code: 'being_deleted';
|
|
13789
15031
|
}>;
|
|
13790
15032
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
13791
15033
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -13836,13 +15078,40 @@ export interface Routes {
|
|
|
13836
15078
|
starts_at?: string | undefined;
|
|
13837
15079
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
13838
15080
|
ends_at?: string | undefined;
|
|
15081
|
+
/** Errors associated with the `acs_credential`. */
|
|
13839
15082
|
errors: Array<{
|
|
13840
15083
|
error_code: string;
|
|
13841
15084
|
message: string;
|
|
13842
15085
|
}>;
|
|
15086
|
+
/** Warnings associated with the `acs_credential`. */
|
|
13843
15087
|
warnings: Array<{
|
|
13844
|
-
|
|
15088
|
+
/** Date and time at which Seam created the warning. */
|
|
15089
|
+
created_at: string;
|
|
15090
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15091
|
+
message: string;
|
|
15092
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15093
|
+
warning_code: 'waiting_to_be_issued';
|
|
15094
|
+
} | {
|
|
15095
|
+
/** Date and time at which Seam created the warning. */
|
|
15096
|
+
created_at: string;
|
|
15097
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15098
|
+
message: string;
|
|
15099
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15100
|
+
warning_code: 'schedule_externally_modified';
|
|
15101
|
+
} | {
|
|
15102
|
+
/** Date and time at which Seam created the warning. */
|
|
15103
|
+
created_at: string;
|
|
15104
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15105
|
+
message: string;
|
|
15106
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15107
|
+
warning_code: 'schedule_modified';
|
|
15108
|
+
} | {
|
|
15109
|
+
/** Date and time at which Seam created the warning. */
|
|
15110
|
+
created_at: string;
|
|
15111
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13845
15112
|
message: string;
|
|
15113
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15114
|
+
warning_code: 'being_deleted';
|
|
13846
15115
|
}>;
|
|
13847
15116
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
13848
15117
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -13930,13 +15199,40 @@ export interface Routes {
|
|
|
13930
15199
|
starts_at?: string | undefined;
|
|
13931
15200
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
13932
15201
|
ends_at?: string | undefined;
|
|
15202
|
+
/** Errors associated with the `acs_credential`. */
|
|
13933
15203
|
errors: Array<{
|
|
13934
15204
|
error_code: string;
|
|
13935
15205
|
message: string;
|
|
13936
15206
|
}>;
|
|
15207
|
+
/** Warnings associated with the `acs_credential`. */
|
|
13937
15208
|
warnings: Array<{
|
|
13938
|
-
|
|
15209
|
+
/** Date and time at which Seam created the warning. */
|
|
15210
|
+
created_at: string;
|
|
15211
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15212
|
+
message: string;
|
|
15213
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15214
|
+
warning_code: 'waiting_to_be_issued';
|
|
15215
|
+
} | {
|
|
15216
|
+
/** Date and time at which Seam created the warning. */
|
|
15217
|
+
created_at: string;
|
|
15218
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15219
|
+
message: string;
|
|
15220
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15221
|
+
warning_code: 'schedule_externally_modified';
|
|
15222
|
+
} | {
|
|
15223
|
+
/** Date and time at which Seam created the warning. */
|
|
15224
|
+
created_at: string;
|
|
15225
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13939
15226
|
message: string;
|
|
15227
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15228
|
+
warning_code: 'schedule_modified';
|
|
15229
|
+
} | {
|
|
15230
|
+
/** Date and time at which Seam created the warning. */
|
|
15231
|
+
created_at: string;
|
|
15232
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15233
|
+
message: string;
|
|
15234
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15235
|
+
warning_code: 'being_deleted';
|
|
13940
15236
|
}>;
|
|
13941
15237
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
13942
15238
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -13987,13 +15283,40 @@ export interface Routes {
|
|
|
13987
15283
|
starts_at?: string | undefined;
|
|
13988
15284
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
13989
15285
|
ends_at?: string | undefined;
|
|
15286
|
+
/** Errors associated with the `acs_credential`. */
|
|
13990
15287
|
errors: Array<{
|
|
13991
15288
|
error_code: string;
|
|
13992
15289
|
message: string;
|
|
13993
15290
|
}>;
|
|
15291
|
+
/** Warnings associated with the `acs_credential`. */
|
|
13994
15292
|
warnings: Array<{
|
|
13995
|
-
|
|
15293
|
+
/** Date and time at which Seam created the warning. */
|
|
15294
|
+
created_at: string;
|
|
15295
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15296
|
+
message: string;
|
|
15297
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15298
|
+
warning_code: 'waiting_to_be_issued';
|
|
15299
|
+
} | {
|
|
15300
|
+
/** Date and time at which Seam created the warning. */
|
|
15301
|
+
created_at: string;
|
|
15302
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13996
15303
|
message: string;
|
|
15304
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15305
|
+
warning_code: 'schedule_externally_modified';
|
|
15306
|
+
} | {
|
|
15307
|
+
/** Date and time at which Seam created the warning. */
|
|
15308
|
+
created_at: string;
|
|
15309
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15310
|
+
message: string;
|
|
15311
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15312
|
+
warning_code: 'schedule_modified';
|
|
15313
|
+
} | {
|
|
15314
|
+
/** Date and time at which Seam created the warning. */
|
|
15315
|
+
created_at: string;
|
|
15316
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15317
|
+
message: string;
|
|
15318
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15319
|
+
warning_code: 'being_deleted';
|
|
13997
15320
|
}>;
|
|
13998
15321
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
13999
15322
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -15614,13 +16937,40 @@ export interface Routes {
|
|
|
15614
16937
|
starts_at?: string | undefined;
|
|
15615
16938
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
15616
16939
|
ends_at?: string | undefined;
|
|
16940
|
+
/** Errors associated with the `acs_credential`. */
|
|
15617
16941
|
errors: Array<{
|
|
15618
16942
|
error_code: string;
|
|
15619
16943
|
message: string;
|
|
15620
16944
|
}>;
|
|
16945
|
+
/** Warnings associated with the `acs_credential`. */
|
|
15621
16946
|
warnings: Array<{
|
|
15622
|
-
|
|
16947
|
+
/** Date and time at which Seam created the warning. */
|
|
16948
|
+
created_at: string;
|
|
16949
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16950
|
+
message: string;
|
|
16951
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16952
|
+
warning_code: 'waiting_to_be_issued';
|
|
16953
|
+
} | {
|
|
16954
|
+
/** Date and time at which Seam created the warning. */
|
|
16955
|
+
created_at: string;
|
|
16956
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15623
16957
|
message: string;
|
|
16958
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16959
|
+
warning_code: 'schedule_externally_modified';
|
|
16960
|
+
} | {
|
|
16961
|
+
/** Date and time at which Seam created the warning. */
|
|
16962
|
+
created_at: string;
|
|
16963
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16964
|
+
message: string;
|
|
16965
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16966
|
+
warning_code: 'schedule_modified';
|
|
16967
|
+
} | {
|
|
16968
|
+
/** Date and time at which Seam created the warning. */
|
|
16969
|
+
created_at: string;
|
|
16970
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16971
|
+
message: string;
|
|
16972
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16973
|
+
warning_code: 'being_deleted';
|
|
15624
16974
|
}>;
|
|
15625
16975
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
15626
16976
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -15671,13 +17021,40 @@ export interface Routes {
|
|
|
15671
17021
|
starts_at?: string | undefined;
|
|
15672
17022
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
15673
17023
|
ends_at?: string | undefined;
|
|
17024
|
+
/** Errors associated with the `acs_credential`. */
|
|
15674
17025
|
errors: Array<{
|
|
15675
17026
|
error_code: string;
|
|
15676
17027
|
message: string;
|
|
15677
|
-
}>;
|
|
15678
|
-
|
|
15679
|
-
|
|
17028
|
+
}>;
|
|
17029
|
+
/** Warnings associated with the `acs_credential`. */
|
|
17030
|
+
warnings: Array<{
|
|
17031
|
+
/** Date and time at which Seam created the warning. */
|
|
17032
|
+
created_at: string;
|
|
17033
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17034
|
+
message: string;
|
|
17035
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17036
|
+
warning_code: 'waiting_to_be_issued';
|
|
17037
|
+
} | {
|
|
17038
|
+
/** Date and time at which Seam created the warning. */
|
|
17039
|
+
created_at: string;
|
|
17040
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17041
|
+
message: string;
|
|
17042
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17043
|
+
warning_code: 'schedule_externally_modified';
|
|
17044
|
+
} | {
|
|
17045
|
+
/** Date and time at which Seam created the warning. */
|
|
17046
|
+
created_at: string;
|
|
17047
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17048
|
+
message: string;
|
|
17049
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17050
|
+
warning_code: 'schedule_modified';
|
|
17051
|
+
} | {
|
|
17052
|
+
/** Date and time at which Seam created the warning. */
|
|
17053
|
+
created_at: string;
|
|
17054
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15680
17055
|
message: string;
|
|
17056
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17057
|
+
warning_code: 'being_deleted';
|
|
15681
17058
|
}>;
|
|
15682
17059
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
15683
17060
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -15765,13 +17142,40 @@ export interface Routes {
|
|
|
15765
17142
|
starts_at?: string | undefined;
|
|
15766
17143
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
15767
17144
|
ends_at?: string | undefined;
|
|
17145
|
+
/** Errors associated with the `acs_credential`. */
|
|
15768
17146
|
errors: Array<{
|
|
15769
17147
|
error_code: string;
|
|
15770
17148
|
message: string;
|
|
15771
17149
|
}>;
|
|
17150
|
+
/** Warnings associated with the `acs_credential`. */
|
|
15772
17151
|
warnings: Array<{
|
|
15773
|
-
|
|
17152
|
+
/** Date and time at which Seam created the warning. */
|
|
17153
|
+
created_at: string;
|
|
17154
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17155
|
+
message: string;
|
|
17156
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17157
|
+
warning_code: 'waiting_to_be_issued';
|
|
17158
|
+
} | {
|
|
17159
|
+
/** Date and time at which Seam created the warning. */
|
|
17160
|
+
created_at: string;
|
|
17161
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17162
|
+
message: string;
|
|
17163
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17164
|
+
warning_code: 'schedule_externally_modified';
|
|
17165
|
+
} | {
|
|
17166
|
+
/** Date and time at which Seam created the warning. */
|
|
17167
|
+
created_at: string;
|
|
17168
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17169
|
+
message: string;
|
|
17170
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17171
|
+
warning_code: 'schedule_modified';
|
|
17172
|
+
} | {
|
|
17173
|
+
/** Date and time at which Seam created the warning. */
|
|
17174
|
+
created_at: string;
|
|
17175
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15774
17176
|
message: string;
|
|
17177
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17178
|
+
warning_code: 'being_deleted';
|
|
15775
17179
|
}>;
|
|
15776
17180
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
15777
17181
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -15822,13 +17226,40 @@ export interface Routes {
|
|
|
15822
17226
|
starts_at?: string | undefined;
|
|
15823
17227
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
15824
17228
|
ends_at?: string | undefined;
|
|
17229
|
+
/** Errors associated with the `acs_credential`. */
|
|
15825
17230
|
errors: Array<{
|
|
15826
17231
|
error_code: string;
|
|
15827
17232
|
message: string;
|
|
15828
17233
|
}>;
|
|
17234
|
+
/** Warnings associated with the `acs_credential`. */
|
|
15829
17235
|
warnings: Array<{
|
|
15830
|
-
|
|
17236
|
+
/** Date and time at which Seam created the warning. */
|
|
17237
|
+
created_at: string;
|
|
17238
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17239
|
+
message: string;
|
|
17240
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17241
|
+
warning_code: 'waiting_to_be_issued';
|
|
17242
|
+
} | {
|
|
17243
|
+
/** Date and time at which Seam created the warning. */
|
|
17244
|
+
created_at: string;
|
|
17245
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15831
17246
|
message: string;
|
|
17247
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17248
|
+
warning_code: 'schedule_externally_modified';
|
|
17249
|
+
} | {
|
|
17250
|
+
/** Date and time at which Seam created the warning. */
|
|
17251
|
+
created_at: string;
|
|
17252
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17253
|
+
message: string;
|
|
17254
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17255
|
+
warning_code: 'schedule_modified';
|
|
17256
|
+
} | {
|
|
17257
|
+
/** Date and time at which Seam created the warning. */
|
|
17258
|
+
created_at: string;
|
|
17259
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17260
|
+
message: string;
|
|
17261
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17262
|
+
warning_code: 'being_deleted';
|
|
15832
17263
|
}>;
|
|
15833
17264
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
15834
17265
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -16357,13 +17788,40 @@ export interface Routes {
|
|
|
16357
17788
|
starts_at?: string | undefined;
|
|
16358
17789
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
16359
17790
|
ends_at?: string | undefined;
|
|
17791
|
+
/** Errors associated with the `acs_credential`. */
|
|
16360
17792
|
errors: Array<{
|
|
16361
17793
|
error_code: string;
|
|
16362
17794
|
message: string;
|
|
16363
17795
|
}>;
|
|
17796
|
+
/** Warnings associated with the `acs_credential`. */
|
|
16364
17797
|
warnings: Array<{
|
|
16365
|
-
|
|
17798
|
+
/** Date and time at which Seam created the warning. */
|
|
17799
|
+
created_at: string;
|
|
17800
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17801
|
+
message: string;
|
|
17802
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17803
|
+
warning_code: 'waiting_to_be_issued';
|
|
17804
|
+
} | {
|
|
17805
|
+
/** Date and time at which Seam created the warning. */
|
|
17806
|
+
created_at: string;
|
|
17807
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17808
|
+
message: string;
|
|
17809
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17810
|
+
warning_code: 'schedule_externally_modified';
|
|
17811
|
+
} | {
|
|
17812
|
+
/** Date and time at which Seam created the warning. */
|
|
17813
|
+
created_at: string;
|
|
17814
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16366
17815
|
message: string;
|
|
17816
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17817
|
+
warning_code: 'schedule_modified';
|
|
17818
|
+
} | {
|
|
17819
|
+
/** Date and time at which Seam created the warning. */
|
|
17820
|
+
created_at: string;
|
|
17821
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17822
|
+
message: string;
|
|
17823
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17824
|
+
warning_code: 'being_deleted';
|
|
16367
17825
|
}>;
|
|
16368
17826
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
16369
17827
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -16414,13 +17872,40 @@ export interface Routes {
|
|
|
16414
17872
|
starts_at?: string | undefined;
|
|
16415
17873
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
16416
17874
|
ends_at?: string | undefined;
|
|
17875
|
+
/** Errors associated with the `acs_credential`. */
|
|
16417
17876
|
errors: Array<{
|
|
16418
17877
|
error_code: string;
|
|
16419
17878
|
message: string;
|
|
16420
17879
|
}>;
|
|
17880
|
+
/** Warnings associated with the `acs_credential`. */
|
|
16421
17881
|
warnings: Array<{
|
|
16422
|
-
|
|
17882
|
+
/** Date and time at which Seam created the warning. */
|
|
17883
|
+
created_at: string;
|
|
17884
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17885
|
+
message: string;
|
|
17886
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17887
|
+
warning_code: 'waiting_to_be_issued';
|
|
17888
|
+
} | {
|
|
17889
|
+
/** Date and time at which Seam created the warning. */
|
|
17890
|
+
created_at: string;
|
|
17891
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17892
|
+
message: string;
|
|
17893
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17894
|
+
warning_code: 'schedule_externally_modified';
|
|
17895
|
+
} | {
|
|
17896
|
+
/** Date and time at which Seam created the warning. */
|
|
17897
|
+
created_at: string;
|
|
17898
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17899
|
+
message: string;
|
|
17900
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17901
|
+
warning_code: 'schedule_modified';
|
|
17902
|
+
} | {
|
|
17903
|
+
/** Date and time at which Seam created the warning. */
|
|
17904
|
+
created_at: string;
|
|
17905
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16423
17906
|
message: string;
|
|
17907
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17908
|
+
warning_code: 'being_deleted';
|
|
16424
17909
|
}>;
|
|
16425
17910
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
16426
17911
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -16508,13 +17993,40 @@ export interface Routes {
|
|
|
16508
17993
|
starts_at?: string | undefined;
|
|
16509
17994
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
16510
17995
|
ends_at?: string | undefined;
|
|
17996
|
+
/** Errors associated with the `acs_credential`. */
|
|
16511
17997
|
errors: Array<{
|
|
16512
17998
|
error_code: string;
|
|
16513
17999
|
message: string;
|
|
16514
18000
|
}>;
|
|
18001
|
+
/** Warnings associated with the `acs_credential`. */
|
|
16515
18002
|
warnings: Array<{
|
|
16516
|
-
|
|
18003
|
+
/** Date and time at which Seam created the warning. */
|
|
18004
|
+
created_at: string;
|
|
18005
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18006
|
+
message: string;
|
|
18007
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18008
|
+
warning_code: 'waiting_to_be_issued';
|
|
18009
|
+
} | {
|
|
18010
|
+
/** Date and time at which Seam created the warning. */
|
|
18011
|
+
created_at: string;
|
|
18012
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16517
18013
|
message: string;
|
|
18014
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18015
|
+
warning_code: 'schedule_externally_modified';
|
|
18016
|
+
} | {
|
|
18017
|
+
/** Date and time at which Seam created the warning. */
|
|
18018
|
+
created_at: string;
|
|
18019
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18020
|
+
message: string;
|
|
18021
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18022
|
+
warning_code: 'schedule_modified';
|
|
18023
|
+
} | {
|
|
18024
|
+
/** Date and time at which Seam created the warning. */
|
|
18025
|
+
created_at: string;
|
|
18026
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18027
|
+
message: string;
|
|
18028
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18029
|
+
warning_code: 'being_deleted';
|
|
16518
18030
|
}>;
|
|
16519
18031
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
16520
18032
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -16565,13 +18077,40 @@ export interface Routes {
|
|
|
16565
18077
|
starts_at?: string | undefined;
|
|
16566
18078
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
16567
18079
|
ends_at?: string | undefined;
|
|
18080
|
+
/** Errors associated with the `acs_credential`. */
|
|
16568
18081
|
errors: Array<{
|
|
16569
18082
|
error_code: string;
|
|
16570
18083
|
message: string;
|
|
16571
18084
|
}>;
|
|
18085
|
+
/** Warnings associated with the `acs_credential`. */
|
|
16572
18086
|
warnings: Array<{
|
|
16573
|
-
|
|
18087
|
+
/** Date and time at which Seam created the warning. */
|
|
18088
|
+
created_at: string;
|
|
18089
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18090
|
+
message: string;
|
|
18091
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18092
|
+
warning_code: 'waiting_to_be_issued';
|
|
18093
|
+
} | {
|
|
18094
|
+
/** Date and time at which Seam created the warning. */
|
|
18095
|
+
created_at: string;
|
|
18096
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18097
|
+
message: string;
|
|
18098
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18099
|
+
warning_code: 'schedule_externally_modified';
|
|
18100
|
+
} | {
|
|
18101
|
+
/** Date and time at which Seam created the warning. */
|
|
18102
|
+
created_at: string;
|
|
18103
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18104
|
+
message: string;
|
|
18105
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18106
|
+
warning_code: 'schedule_modified';
|
|
18107
|
+
} | {
|
|
18108
|
+
/** Date and time at which Seam created the warning. */
|
|
18109
|
+
created_at: string;
|
|
18110
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16574
18111
|
message: string;
|
|
18112
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18113
|
+
warning_code: 'being_deleted';
|
|
16575
18114
|
}>;
|
|
16576
18115
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
16577
18116
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -17139,13 +18678,40 @@ export interface Routes {
|
|
|
17139
18678
|
starts_at?: string | undefined;
|
|
17140
18679
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
17141
18680
|
ends_at?: string | undefined;
|
|
18681
|
+
/** Errors associated with the `acs_credential`. */
|
|
17142
18682
|
errors: Array<{
|
|
17143
18683
|
error_code: string;
|
|
17144
18684
|
message: string;
|
|
17145
18685
|
}>;
|
|
18686
|
+
/** Warnings associated with the `acs_credential`. */
|
|
17146
18687
|
warnings: Array<{
|
|
17147
|
-
|
|
18688
|
+
/** Date and time at which Seam created the warning. */
|
|
18689
|
+
created_at: string;
|
|
18690
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17148
18691
|
message: string;
|
|
18692
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18693
|
+
warning_code: 'waiting_to_be_issued';
|
|
18694
|
+
} | {
|
|
18695
|
+
/** Date and time at which Seam created the warning. */
|
|
18696
|
+
created_at: string;
|
|
18697
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18698
|
+
message: string;
|
|
18699
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18700
|
+
warning_code: 'schedule_externally_modified';
|
|
18701
|
+
} | {
|
|
18702
|
+
/** Date and time at which Seam created the warning. */
|
|
18703
|
+
created_at: string;
|
|
18704
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18705
|
+
message: string;
|
|
18706
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18707
|
+
warning_code: 'schedule_modified';
|
|
18708
|
+
} | {
|
|
18709
|
+
/** Date and time at which Seam created the warning. */
|
|
18710
|
+
created_at: string;
|
|
18711
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18712
|
+
message: string;
|
|
18713
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18714
|
+
warning_code: 'being_deleted';
|
|
17149
18715
|
}>;
|
|
17150
18716
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
17151
18717
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -17196,13 +18762,40 @@ export interface Routes {
|
|
|
17196
18762
|
starts_at?: string | undefined;
|
|
17197
18763
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
17198
18764
|
ends_at?: string | undefined;
|
|
18765
|
+
/** Errors associated with the `acs_credential`. */
|
|
17199
18766
|
errors: Array<{
|
|
17200
18767
|
error_code: string;
|
|
17201
18768
|
message: string;
|
|
17202
18769
|
}>;
|
|
18770
|
+
/** Warnings associated with the `acs_credential`. */
|
|
17203
18771
|
warnings: Array<{
|
|
17204
|
-
|
|
18772
|
+
/** Date and time at which Seam created the warning. */
|
|
18773
|
+
created_at: string;
|
|
18774
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18775
|
+
message: string;
|
|
18776
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18777
|
+
warning_code: 'waiting_to_be_issued';
|
|
18778
|
+
} | {
|
|
18779
|
+
/** Date and time at which Seam created the warning. */
|
|
18780
|
+
created_at: string;
|
|
18781
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17205
18782
|
message: string;
|
|
18783
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18784
|
+
warning_code: 'schedule_externally_modified';
|
|
18785
|
+
} | {
|
|
18786
|
+
/** Date and time at which Seam created the warning. */
|
|
18787
|
+
created_at: string;
|
|
18788
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18789
|
+
message: string;
|
|
18790
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18791
|
+
warning_code: 'schedule_modified';
|
|
18792
|
+
} | {
|
|
18793
|
+
/** Date and time at which Seam created the warning. */
|
|
18794
|
+
created_at: string;
|
|
18795
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18796
|
+
message: string;
|
|
18797
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18798
|
+
warning_code: 'being_deleted';
|
|
17206
18799
|
}>;
|
|
17207
18800
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
17208
18801
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -17290,13 +18883,40 @@ export interface Routes {
|
|
|
17290
18883
|
starts_at?: string | undefined;
|
|
17291
18884
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
17292
18885
|
ends_at?: string | undefined;
|
|
18886
|
+
/** Errors associated with the `acs_credential`. */
|
|
17293
18887
|
errors: Array<{
|
|
17294
18888
|
error_code: string;
|
|
17295
18889
|
message: string;
|
|
17296
18890
|
}>;
|
|
18891
|
+
/** Warnings associated with the `acs_credential`. */
|
|
17297
18892
|
warnings: Array<{
|
|
17298
|
-
|
|
18893
|
+
/** Date and time at which Seam created the warning. */
|
|
18894
|
+
created_at: string;
|
|
18895
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18896
|
+
message: string;
|
|
18897
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18898
|
+
warning_code: 'waiting_to_be_issued';
|
|
18899
|
+
} | {
|
|
18900
|
+
/** Date and time at which Seam created the warning. */
|
|
18901
|
+
created_at: string;
|
|
18902
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18903
|
+
message: string;
|
|
18904
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18905
|
+
warning_code: 'schedule_externally_modified';
|
|
18906
|
+
} | {
|
|
18907
|
+
/** Date and time at which Seam created the warning. */
|
|
18908
|
+
created_at: string;
|
|
18909
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18910
|
+
message: string;
|
|
18911
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18912
|
+
warning_code: 'schedule_modified';
|
|
18913
|
+
} | {
|
|
18914
|
+
/** Date and time at which Seam created the warning. */
|
|
18915
|
+
created_at: string;
|
|
18916
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17299
18917
|
message: string;
|
|
18918
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18919
|
+
warning_code: 'being_deleted';
|
|
17300
18920
|
}>;
|
|
17301
18921
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
17302
18922
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -17347,13 +18967,40 @@ export interface Routes {
|
|
|
17347
18967
|
starts_at?: string | undefined;
|
|
17348
18968
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
17349
18969
|
ends_at?: string | undefined;
|
|
18970
|
+
/** Errors associated with the `acs_credential`. */
|
|
17350
18971
|
errors: Array<{
|
|
17351
18972
|
error_code: string;
|
|
17352
18973
|
message: string;
|
|
17353
18974
|
}>;
|
|
18975
|
+
/** Warnings associated with the `acs_credential`. */
|
|
17354
18976
|
warnings: Array<{
|
|
17355
|
-
|
|
18977
|
+
/** Date and time at which Seam created the warning. */
|
|
18978
|
+
created_at: string;
|
|
18979
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18980
|
+
message: string;
|
|
18981
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18982
|
+
warning_code: 'waiting_to_be_issued';
|
|
18983
|
+
} | {
|
|
18984
|
+
/** Date and time at which Seam created the warning. */
|
|
18985
|
+
created_at: string;
|
|
18986
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18987
|
+
message: string;
|
|
18988
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18989
|
+
warning_code: 'schedule_externally_modified';
|
|
18990
|
+
} | {
|
|
18991
|
+
/** Date and time at which Seam created the warning. */
|
|
18992
|
+
created_at: string;
|
|
18993
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18994
|
+
message: string;
|
|
18995
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18996
|
+
warning_code: 'schedule_modified';
|
|
18997
|
+
} | {
|
|
18998
|
+
/** Date and time at which Seam created the warning. */
|
|
18999
|
+
created_at: string;
|
|
19000
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17356
19001
|
message: string;
|
|
19002
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19003
|
+
warning_code: 'being_deleted';
|
|
17357
19004
|
}>;
|
|
17358
19005
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
17359
19006
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -18056,13 +19703,40 @@ export interface Routes {
|
|
|
18056
19703
|
starts_at?: string | undefined;
|
|
18057
19704
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
18058
19705
|
ends_at?: string | undefined;
|
|
19706
|
+
/** Errors associated with the `acs_credential`. */
|
|
18059
19707
|
errors: Array<{
|
|
18060
19708
|
error_code: string;
|
|
18061
19709
|
message: string;
|
|
18062
19710
|
}>;
|
|
19711
|
+
/** Warnings associated with the `acs_credential`. */
|
|
18063
19712
|
warnings: Array<{
|
|
18064
|
-
|
|
19713
|
+
/** Date and time at which Seam created the warning. */
|
|
19714
|
+
created_at: string;
|
|
19715
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19716
|
+
message: string;
|
|
19717
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19718
|
+
warning_code: 'waiting_to_be_issued';
|
|
19719
|
+
} | {
|
|
19720
|
+
/** Date and time at which Seam created the warning. */
|
|
19721
|
+
created_at: string;
|
|
19722
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19723
|
+
message: string;
|
|
19724
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19725
|
+
warning_code: 'schedule_externally_modified';
|
|
19726
|
+
} | {
|
|
19727
|
+
/** Date and time at which Seam created the warning. */
|
|
19728
|
+
created_at: string;
|
|
19729
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18065
19730
|
message: string;
|
|
19731
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19732
|
+
warning_code: 'schedule_modified';
|
|
19733
|
+
} | {
|
|
19734
|
+
/** Date and time at which Seam created the warning. */
|
|
19735
|
+
created_at: string;
|
|
19736
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19737
|
+
message: string;
|
|
19738
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19739
|
+
warning_code: 'being_deleted';
|
|
18066
19740
|
}>;
|
|
18067
19741
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
18068
19742
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -18113,13 +19787,40 @@ export interface Routes {
|
|
|
18113
19787
|
starts_at?: string | undefined;
|
|
18114
19788
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
18115
19789
|
ends_at?: string | undefined;
|
|
19790
|
+
/** Errors associated with the `acs_credential`. */
|
|
18116
19791
|
errors: Array<{
|
|
18117
19792
|
error_code: string;
|
|
18118
19793
|
message: string;
|
|
18119
19794
|
}>;
|
|
19795
|
+
/** Warnings associated with the `acs_credential`. */
|
|
18120
19796
|
warnings: Array<{
|
|
18121
|
-
|
|
19797
|
+
/** Date and time at which Seam created the warning. */
|
|
19798
|
+
created_at: string;
|
|
19799
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19800
|
+
message: string;
|
|
19801
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19802
|
+
warning_code: 'waiting_to_be_issued';
|
|
19803
|
+
} | {
|
|
19804
|
+
/** Date and time at which Seam created the warning. */
|
|
19805
|
+
created_at: string;
|
|
19806
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19807
|
+
message: string;
|
|
19808
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19809
|
+
warning_code: 'schedule_externally_modified';
|
|
19810
|
+
} | {
|
|
19811
|
+
/** Date and time at which Seam created the warning. */
|
|
19812
|
+
created_at: string;
|
|
19813
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19814
|
+
message: string;
|
|
19815
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19816
|
+
warning_code: 'schedule_modified';
|
|
19817
|
+
} | {
|
|
19818
|
+
/** Date and time at which Seam created the warning. */
|
|
19819
|
+
created_at: string;
|
|
19820
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18122
19821
|
message: string;
|
|
19822
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19823
|
+
warning_code: 'being_deleted';
|
|
18123
19824
|
}>;
|
|
18124
19825
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
18125
19826
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -18207,13 +19908,40 @@ export interface Routes {
|
|
|
18207
19908
|
starts_at?: string | undefined;
|
|
18208
19909
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
18209
19910
|
ends_at?: string | undefined;
|
|
19911
|
+
/** Errors associated with the `acs_credential`. */
|
|
18210
19912
|
errors: Array<{
|
|
18211
19913
|
error_code: string;
|
|
18212
19914
|
message: string;
|
|
18213
19915
|
}>;
|
|
19916
|
+
/** Warnings associated with the `acs_credential`. */
|
|
18214
19917
|
warnings: Array<{
|
|
18215
|
-
|
|
19918
|
+
/** Date and time at which Seam created the warning. */
|
|
19919
|
+
created_at: string;
|
|
19920
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19921
|
+
message: string;
|
|
19922
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19923
|
+
warning_code: 'waiting_to_be_issued';
|
|
19924
|
+
} | {
|
|
19925
|
+
/** Date and time at which Seam created the warning. */
|
|
19926
|
+
created_at: string;
|
|
19927
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19928
|
+
message: string;
|
|
19929
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19930
|
+
warning_code: 'schedule_externally_modified';
|
|
19931
|
+
} | {
|
|
19932
|
+
/** Date and time at which Seam created the warning. */
|
|
19933
|
+
created_at: string;
|
|
19934
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19935
|
+
message: string;
|
|
19936
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19937
|
+
warning_code: 'schedule_modified';
|
|
19938
|
+
} | {
|
|
19939
|
+
/** Date and time at which Seam created the warning. */
|
|
19940
|
+
created_at: string;
|
|
19941
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18216
19942
|
message: string;
|
|
19943
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19944
|
+
warning_code: 'being_deleted';
|
|
18217
19945
|
}>;
|
|
18218
19946
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
18219
19947
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -18264,13 +19992,40 @@ export interface Routes {
|
|
|
18264
19992
|
starts_at?: string | undefined;
|
|
18265
19993
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
18266
19994
|
ends_at?: string | undefined;
|
|
19995
|
+
/** Errors associated with the `acs_credential`. */
|
|
18267
19996
|
errors: Array<{
|
|
18268
19997
|
error_code: string;
|
|
18269
19998
|
message: string;
|
|
18270
19999
|
}>;
|
|
20000
|
+
/** Warnings associated with the `acs_credential`. */
|
|
18271
20001
|
warnings: Array<{
|
|
18272
|
-
|
|
20002
|
+
/** Date and time at which Seam created the warning. */
|
|
20003
|
+
created_at: string;
|
|
20004
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20005
|
+
message: string;
|
|
20006
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20007
|
+
warning_code: 'waiting_to_be_issued';
|
|
20008
|
+
} | {
|
|
20009
|
+
/** Date and time at which Seam created the warning. */
|
|
20010
|
+
created_at: string;
|
|
20011
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20012
|
+
message: string;
|
|
20013
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20014
|
+
warning_code: 'schedule_externally_modified';
|
|
20015
|
+
} | {
|
|
20016
|
+
/** Date and time at which Seam created the warning. */
|
|
20017
|
+
created_at: string;
|
|
20018
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20019
|
+
message: string;
|
|
20020
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20021
|
+
warning_code: 'schedule_modified';
|
|
20022
|
+
} | {
|
|
20023
|
+
/** Date and time at which Seam created the warning. */
|
|
20024
|
+
created_at: string;
|
|
20025
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18273
20026
|
message: string;
|
|
20027
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20028
|
+
warning_code: 'being_deleted';
|
|
18274
20029
|
}>;
|
|
18275
20030
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
18276
20031
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -18795,13 +20550,40 @@ export interface Routes {
|
|
|
18795
20550
|
starts_at?: string | undefined;
|
|
18796
20551
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
18797
20552
|
ends_at?: string | undefined;
|
|
20553
|
+
/** Errors associated with the `acs_credential`. */
|
|
18798
20554
|
errors: Array<{
|
|
18799
20555
|
error_code: string;
|
|
18800
20556
|
message: string;
|
|
18801
20557
|
}>;
|
|
20558
|
+
/** Warnings associated with the `acs_credential`. */
|
|
18802
20559
|
warnings: Array<{
|
|
18803
|
-
|
|
20560
|
+
/** Date and time at which Seam created the warning. */
|
|
20561
|
+
created_at: string;
|
|
20562
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18804
20563
|
message: string;
|
|
20564
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20565
|
+
warning_code: 'waiting_to_be_issued';
|
|
20566
|
+
} | {
|
|
20567
|
+
/** Date and time at which Seam created the warning. */
|
|
20568
|
+
created_at: string;
|
|
20569
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20570
|
+
message: string;
|
|
20571
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20572
|
+
warning_code: 'schedule_externally_modified';
|
|
20573
|
+
} | {
|
|
20574
|
+
/** Date and time at which Seam created the warning. */
|
|
20575
|
+
created_at: string;
|
|
20576
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20577
|
+
message: string;
|
|
20578
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20579
|
+
warning_code: 'schedule_modified';
|
|
20580
|
+
} | {
|
|
20581
|
+
/** Date and time at which Seam created the warning. */
|
|
20582
|
+
created_at: string;
|
|
20583
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20584
|
+
message: string;
|
|
20585
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20586
|
+
warning_code: 'being_deleted';
|
|
18805
20587
|
}>;
|
|
18806
20588
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
18807
20589
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -18852,13 +20634,40 @@ export interface Routes {
|
|
|
18852
20634
|
starts_at?: string | undefined;
|
|
18853
20635
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
18854
20636
|
ends_at?: string | undefined;
|
|
20637
|
+
/** Errors associated with the `acs_credential`. */
|
|
18855
20638
|
errors: Array<{
|
|
18856
20639
|
error_code: string;
|
|
18857
20640
|
message: string;
|
|
18858
20641
|
}>;
|
|
20642
|
+
/** Warnings associated with the `acs_credential`. */
|
|
18859
20643
|
warnings: Array<{
|
|
18860
|
-
|
|
20644
|
+
/** Date and time at which Seam created the warning. */
|
|
20645
|
+
created_at: string;
|
|
20646
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20647
|
+
message: string;
|
|
20648
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20649
|
+
warning_code: 'waiting_to_be_issued';
|
|
20650
|
+
} | {
|
|
20651
|
+
/** Date and time at which Seam created the warning. */
|
|
20652
|
+
created_at: string;
|
|
20653
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18861
20654
|
message: string;
|
|
20655
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20656
|
+
warning_code: 'schedule_externally_modified';
|
|
20657
|
+
} | {
|
|
20658
|
+
/** Date and time at which Seam created the warning. */
|
|
20659
|
+
created_at: string;
|
|
20660
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20661
|
+
message: string;
|
|
20662
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20663
|
+
warning_code: 'schedule_modified';
|
|
20664
|
+
} | {
|
|
20665
|
+
/** Date and time at which Seam created the warning. */
|
|
20666
|
+
created_at: string;
|
|
20667
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20668
|
+
message: string;
|
|
20669
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20670
|
+
warning_code: 'being_deleted';
|
|
18862
20671
|
}>;
|
|
18863
20672
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
18864
20673
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -18946,13 +20755,40 @@ export interface Routes {
|
|
|
18946
20755
|
starts_at?: string | undefined;
|
|
18947
20756
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
18948
20757
|
ends_at?: string | undefined;
|
|
20758
|
+
/** Errors associated with the `acs_credential`. */
|
|
18949
20759
|
errors: Array<{
|
|
18950
20760
|
error_code: string;
|
|
18951
20761
|
message: string;
|
|
18952
20762
|
}>;
|
|
20763
|
+
/** Warnings associated with the `acs_credential`. */
|
|
18953
20764
|
warnings: Array<{
|
|
18954
|
-
|
|
20765
|
+
/** Date and time at which Seam created the warning. */
|
|
20766
|
+
created_at: string;
|
|
20767
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20768
|
+
message: string;
|
|
20769
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20770
|
+
warning_code: 'waiting_to_be_issued';
|
|
20771
|
+
} | {
|
|
20772
|
+
/** Date and time at which Seam created the warning. */
|
|
20773
|
+
created_at: string;
|
|
20774
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20775
|
+
message: string;
|
|
20776
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20777
|
+
warning_code: 'schedule_externally_modified';
|
|
20778
|
+
} | {
|
|
20779
|
+
/** Date and time at which Seam created the warning. */
|
|
20780
|
+
created_at: string;
|
|
20781
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20782
|
+
message: string;
|
|
20783
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20784
|
+
warning_code: 'schedule_modified';
|
|
20785
|
+
} | {
|
|
20786
|
+
/** Date and time at which Seam created the warning. */
|
|
20787
|
+
created_at: string;
|
|
20788
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18955
20789
|
message: string;
|
|
20790
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20791
|
+
warning_code: 'being_deleted';
|
|
18956
20792
|
}>;
|
|
18957
20793
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
18958
20794
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -19003,13 +20839,40 @@ export interface Routes {
|
|
|
19003
20839
|
starts_at?: string | undefined;
|
|
19004
20840
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
19005
20841
|
ends_at?: string | undefined;
|
|
20842
|
+
/** Errors associated with the `acs_credential`. */
|
|
19006
20843
|
errors: Array<{
|
|
19007
20844
|
error_code: string;
|
|
19008
20845
|
message: string;
|
|
19009
20846
|
}>;
|
|
20847
|
+
/** Warnings associated with the `acs_credential`. */
|
|
19010
20848
|
warnings: Array<{
|
|
19011
|
-
|
|
20849
|
+
/** Date and time at which Seam created the warning. */
|
|
20850
|
+
created_at: string;
|
|
20851
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20852
|
+
message: string;
|
|
20853
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20854
|
+
warning_code: 'waiting_to_be_issued';
|
|
20855
|
+
} | {
|
|
20856
|
+
/** Date and time at which Seam created the warning. */
|
|
20857
|
+
created_at: string;
|
|
20858
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19012
20859
|
message: string;
|
|
20860
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20861
|
+
warning_code: 'schedule_externally_modified';
|
|
20862
|
+
} | {
|
|
20863
|
+
/** Date and time at which Seam created the warning. */
|
|
20864
|
+
created_at: string;
|
|
20865
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20866
|
+
message: string;
|
|
20867
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20868
|
+
warning_code: 'schedule_modified';
|
|
20869
|
+
} | {
|
|
20870
|
+
/** Date and time at which Seam created the warning. */
|
|
20871
|
+
created_at: string;
|
|
20872
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20873
|
+
message: string;
|
|
20874
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20875
|
+
warning_code: 'being_deleted';
|
|
19013
20876
|
}>;
|
|
19014
20877
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
19015
20878
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -20105,13 +21968,40 @@ export interface Routes {
|
|
|
20105
21968
|
starts_at?: string | undefined;
|
|
20106
21969
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
20107
21970
|
ends_at?: string | undefined;
|
|
21971
|
+
/** Errors associated with the `acs_credential`. */
|
|
20108
21972
|
errors: Array<{
|
|
20109
21973
|
error_code: string;
|
|
20110
21974
|
message: string;
|
|
20111
21975
|
}>;
|
|
21976
|
+
/** Warnings associated with the `acs_credential`. */
|
|
20112
21977
|
warnings: Array<{
|
|
20113
|
-
|
|
21978
|
+
/** Date and time at which Seam created the warning. */
|
|
21979
|
+
created_at: string;
|
|
21980
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21981
|
+
message: string;
|
|
21982
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21983
|
+
warning_code: 'waiting_to_be_issued';
|
|
21984
|
+
} | {
|
|
21985
|
+
/** Date and time at which Seam created the warning. */
|
|
21986
|
+
created_at: string;
|
|
21987
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21988
|
+
message: string;
|
|
21989
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21990
|
+
warning_code: 'schedule_externally_modified';
|
|
21991
|
+
} | {
|
|
21992
|
+
/** Date and time at which Seam created the warning. */
|
|
21993
|
+
created_at: string;
|
|
21994
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20114
21995
|
message: string;
|
|
21996
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21997
|
+
warning_code: 'schedule_modified';
|
|
21998
|
+
} | {
|
|
21999
|
+
/** Date and time at which Seam created the warning. */
|
|
22000
|
+
created_at: string;
|
|
22001
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22002
|
+
message: string;
|
|
22003
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22004
|
+
warning_code: 'being_deleted';
|
|
20115
22005
|
}>;
|
|
20116
22006
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
20117
22007
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -20162,13 +22052,40 @@ export interface Routes {
|
|
|
20162
22052
|
starts_at?: string | undefined;
|
|
20163
22053
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
20164
22054
|
ends_at?: string | undefined;
|
|
22055
|
+
/** Errors associated with the `acs_credential`. */
|
|
20165
22056
|
errors: Array<{
|
|
20166
22057
|
error_code: string;
|
|
20167
22058
|
message: string;
|
|
20168
22059
|
}>;
|
|
22060
|
+
/** Warnings associated with the `acs_credential`. */
|
|
20169
22061
|
warnings: Array<{
|
|
20170
|
-
|
|
22062
|
+
/** Date and time at which Seam created the warning. */
|
|
22063
|
+
created_at: string;
|
|
22064
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22065
|
+
message: string;
|
|
22066
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22067
|
+
warning_code: 'waiting_to_be_issued';
|
|
22068
|
+
} | {
|
|
22069
|
+
/** Date and time at which Seam created the warning. */
|
|
22070
|
+
created_at: string;
|
|
22071
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22072
|
+
message: string;
|
|
22073
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22074
|
+
warning_code: 'schedule_externally_modified';
|
|
22075
|
+
} | {
|
|
22076
|
+
/** Date and time at which Seam created the warning. */
|
|
22077
|
+
created_at: string;
|
|
22078
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22079
|
+
message: string;
|
|
22080
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22081
|
+
warning_code: 'schedule_modified';
|
|
22082
|
+
} | {
|
|
22083
|
+
/** Date and time at which Seam created the warning. */
|
|
22084
|
+
created_at: string;
|
|
22085
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20171
22086
|
message: string;
|
|
22087
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22088
|
+
warning_code: 'being_deleted';
|
|
20172
22089
|
}>;
|
|
20173
22090
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
20174
22091
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -20256,13 +22173,40 @@ export interface Routes {
|
|
|
20256
22173
|
starts_at?: string | undefined;
|
|
20257
22174
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
20258
22175
|
ends_at?: string | undefined;
|
|
22176
|
+
/** Errors associated with the `acs_credential`. */
|
|
20259
22177
|
errors: Array<{
|
|
20260
22178
|
error_code: string;
|
|
20261
22179
|
message: string;
|
|
20262
22180
|
}>;
|
|
22181
|
+
/** Warnings associated with the `acs_credential`. */
|
|
20263
22182
|
warnings: Array<{
|
|
20264
|
-
|
|
22183
|
+
/** Date and time at which Seam created the warning. */
|
|
22184
|
+
created_at: string;
|
|
22185
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22186
|
+
message: string;
|
|
22187
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22188
|
+
warning_code: 'waiting_to_be_issued';
|
|
22189
|
+
} | {
|
|
22190
|
+
/** Date and time at which Seam created the warning. */
|
|
22191
|
+
created_at: string;
|
|
22192
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20265
22193
|
message: string;
|
|
22194
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22195
|
+
warning_code: 'schedule_externally_modified';
|
|
22196
|
+
} | {
|
|
22197
|
+
/** Date and time at which Seam created the warning. */
|
|
22198
|
+
created_at: string;
|
|
22199
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22200
|
+
message: string;
|
|
22201
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22202
|
+
warning_code: 'schedule_modified';
|
|
22203
|
+
} | {
|
|
22204
|
+
/** Date and time at which Seam created the warning. */
|
|
22205
|
+
created_at: string;
|
|
22206
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22207
|
+
message: string;
|
|
22208
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22209
|
+
warning_code: 'being_deleted';
|
|
20266
22210
|
}>;
|
|
20267
22211
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
20268
22212
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -20313,13 +22257,40 @@ export interface Routes {
|
|
|
20313
22257
|
starts_at?: string | undefined;
|
|
20314
22258
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
20315
22259
|
ends_at?: string | undefined;
|
|
22260
|
+
/** Errors associated with the `acs_credential`. */
|
|
20316
22261
|
errors: Array<{
|
|
20317
22262
|
error_code: string;
|
|
20318
22263
|
message: string;
|
|
20319
22264
|
}>;
|
|
22265
|
+
/** Warnings associated with the `acs_credential`. */
|
|
20320
22266
|
warnings: Array<{
|
|
20321
|
-
|
|
22267
|
+
/** Date and time at which Seam created the warning. */
|
|
22268
|
+
created_at: string;
|
|
22269
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22270
|
+
message: string;
|
|
22271
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22272
|
+
warning_code: 'waiting_to_be_issued';
|
|
22273
|
+
} | {
|
|
22274
|
+
/** Date and time at which Seam created the warning. */
|
|
22275
|
+
created_at: string;
|
|
22276
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22277
|
+
message: string;
|
|
22278
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22279
|
+
warning_code: 'schedule_externally_modified';
|
|
22280
|
+
} | {
|
|
22281
|
+
/** Date and time at which Seam created the warning. */
|
|
22282
|
+
created_at: string;
|
|
22283
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22284
|
+
message: string;
|
|
22285
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22286
|
+
warning_code: 'schedule_modified';
|
|
22287
|
+
} | {
|
|
22288
|
+
/** Date and time at which Seam created the warning. */
|
|
22289
|
+
created_at: string;
|
|
22290
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20322
22291
|
message: string;
|
|
22292
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22293
|
+
warning_code: 'being_deleted';
|
|
20323
22294
|
}>;
|
|
20324
22295
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
20325
22296
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -20848,13 +22819,40 @@ export interface Routes {
|
|
|
20848
22819
|
starts_at?: string | undefined;
|
|
20849
22820
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
20850
22821
|
ends_at?: string | undefined;
|
|
22822
|
+
/** Errors associated with the `acs_credential`. */
|
|
20851
22823
|
errors: Array<{
|
|
20852
22824
|
error_code: string;
|
|
20853
22825
|
message: string;
|
|
20854
22826
|
}>;
|
|
22827
|
+
/** Warnings associated with the `acs_credential`. */
|
|
20855
22828
|
warnings: Array<{
|
|
20856
|
-
|
|
22829
|
+
/** Date and time at which Seam created the warning. */
|
|
22830
|
+
created_at: string;
|
|
22831
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20857
22832
|
message: string;
|
|
22833
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22834
|
+
warning_code: 'waiting_to_be_issued';
|
|
22835
|
+
} | {
|
|
22836
|
+
/** Date and time at which Seam created the warning. */
|
|
22837
|
+
created_at: string;
|
|
22838
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22839
|
+
message: string;
|
|
22840
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22841
|
+
warning_code: 'schedule_externally_modified';
|
|
22842
|
+
} | {
|
|
22843
|
+
/** Date and time at which Seam created the warning. */
|
|
22844
|
+
created_at: string;
|
|
22845
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22846
|
+
message: string;
|
|
22847
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22848
|
+
warning_code: 'schedule_modified';
|
|
22849
|
+
} | {
|
|
22850
|
+
/** Date and time at which Seam created the warning. */
|
|
22851
|
+
created_at: string;
|
|
22852
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22853
|
+
message: string;
|
|
22854
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22855
|
+
warning_code: 'being_deleted';
|
|
20858
22856
|
}>;
|
|
20859
22857
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
20860
22858
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -20905,13 +22903,40 @@ export interface Routes {
|
|
|
20905
22903
|
starts_at?: string | undefined;
|
|
20906
22904
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
20907
22905
|
ends_at?: string | undefined;
|
|
22906
|
+
/** Errors associated with the `acs_credential`. */
|
|
20908
22907
|
errors: Array<{
|
|
20909
22908
|
error_code: string;
|
|
20910
22909
|
message: string;
|
|
20911
22910
|
}>;
|
|
22911
|
+
/** Warnings associated with the `acs_credential`. */
|
|
20912
22912
|
warnings: Array<{
|
|
20913
|
-
|
|
22913
|
+
/** Date and time at which Seam created the warning. */
|
|
22914
|
+
created_at: string;
|
|
22915
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22916
|
+
message: string;
|
|
22917
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22918
|
+
warning_code: 'waiting_to_be_issued';
|
|
22919
|
+
} | {
|
|
22920
|
+
/** Date and time at which Seam created the warning. */
|
|
22921
|
+
created_at: string;
|
|
22922
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20914
22923
|
message: string;
|
|
22924
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22925
|
+
warning_code: 'schedule_externally_modified';
|
|
22926
|
+
} | {
|
|
22927
|
+
/** Date and time at which Seam created the warning. */
|
|
22928
|
+
created_at: string;
|
|
22929
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22930
|
+
message: string;
|
|
22931
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22932
|
+
warning_code: 'schedule_modified';
|
|
22933
|
+
} | {
|
|
22934
|
+
/** Date and time at which Seam created the warning. */
|
|
22935
|
+
created_at: string;
|
|
22936
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22937
|
+
message: string;
|
|
22938
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
22939
|
+
warning_code: 'being_deleted';
|
|
20915
22940
|
}>;
|
|
20916
22941
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
20917
22942
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -20999,13 +23024,40 @@ export interface Routes {
|
|
|
20999
23024
|
starts_at?: string | undefined;
|
|
21000
23025
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
21001
23026
|
ends_at?: string | undefined;
|
|
23027
|
+
/** Errors associated with the `acs_credential`. */
|
|
21002
23028
|
errors: Array<{
|
|
21003
23029
|
error_code: string;
|
|
21004
23030
|
message: string;
|
|
21005
23031
|
}>;
|
|
23032
|
+
/** Warnings associated with the `acs_credential`. */
|
|
21006
23033
|
warnings: Array<{
|
|
21007
|
-
|
|
23034
|
+
/** Date and time at which Seam created the warning. */
|
|
23035
|
+
created_at: string;
|
|
23036
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23037
|
+
message: string;
|
|
23038
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23039
|
+
warning_code: 'waiting_to_be_issued';
|
|
23040
|
+
} | {
|
|
23041
|
+
/** Date and time at which Seam created the warning. */
|
|
23042
|
+
created_at: string;
|
|
23043
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23044
|
+
message: string;
|
|
23045
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23046
|
+
warning_code: 'schedule_externally_modified';
|
|
23047
|
+
} | {
|
|
23048
|
+
/** Date and time at which Seam created the warning. */
|
|
23049
|
+
created_at: string;
|
|
23050
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23051
|
+
message: string;
|
|
23052
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23053
|
+
warning_code: 'schedule_modified';
|
|
23054
|
+
} | {
|
|
23055
|
+
/** Date and time at which Seam created the warning. */
|
|
23056
|
+
created_at: string;
|
|
23057
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21008
23058
|
message: string;
|
|
23059
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23060
|
+
warning_code: 'being_deleted';
|
|
21009
23061
|
}>;
|
|
21010
23062
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
21011
23063
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -21056,13 +23108,40 @@ export interface Routes {
|
|
|
21056
23108
|
starts_at?: string | undefined;
|
|
21057
23109
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
21058
23110
|
ends_at?: string | undefined;
|
|
23111
|
+
/** Errors associated with the `acs_credential`. */
|
|
21059
23112
|
errors: Array<{
|
|
21060
23113
|
error_code: string;
|
|
21061
23114
|
message: string;
|
|
21062
23115
|
}>;
|
|
23116
|
+
/** Warnings associated with the `acs_credential`. */
|
|
21063
23117
|
warnings: Array<{
|
|
21064
|
-
|
|
23118
|
+
/** Date and time at which Seam created the warning. */
|
|
23119
|
+
created_at: string;
|
|
23120
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23121
|
+
message: string;
|
|
23122
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23123
|
+
warning_code: 'waiting_to_be_issued';
|
|
23124
|
+
} | {
|
|
23125
|
+
/** Date and time at which Seam created the warning. */
|
|
23126
|
+
created_at: string;
|
|
23127
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23128
|
+
message: string;
|
|
23129
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23130
|
+
warning_code: 'schedule_externally_modified';
|
|
23131
|
+
} | {
|
|
23132
|
+
/** Date and time at which Seam created the warning. */
|
|
23133
|
+
created_at: string;
|
|
23134
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23135
|
+
message: string;
|
|
23136
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23137
|
+
warning_code: 'schedule_modified';
|
|
23138
|
+
} | {
|
|
23139
|
+
/** Date and time at which Seam created the warning. */
|
|
23140
|
+
created_at: string;
|
|
23141
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21065
23142
|
message: string;
|
|
23143
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23144
|
+
warning_code: 'being_deleted';
|
|
21066
23145
|
}>;
|
|
21067
23146
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
21068
23147
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -22646,13 +24725,40 @@ export interface Routes {
|
|
|
22646
24725
|
starts_at?: string | undefined;
|
|
22647
24726
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
22648
24727
|
ends_at?: string | undefined;
|
|
24728
|
+
/** Errors associated with the `acs_credential`. */
|
|
22649
24729
|
errors: Array<{
|
|
22650
24730
|
error_code: string;
|
|
22651
24731
|
message: string;
|
|
22652
24732
|
}>;
|
|
24733
|
+
/** Warnings associated with the `acs_credential`. */
|
|
22653
24734
|
warnings: Array<{
|
|
22654
|
-
|
|
24735
|
+
/** Date and time at which Seam created the warning. */
|
|
24736
|
+
created_at: string;
|
|
24737
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
24738
|
+
message: string;
|
|
24739
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24740
|
+
warning_code: 'waiting_to_be_issued';
|
|
24741
|
+
} | {
|
|
24742
|
+
/** Date and time at which Seam created the warning. */
|
|
24743
|
+
created_at: string;
|
|
24744
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
24745
|
+
message: string;
|
|
24746
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24747
|
+
warning_code: 'schedule_externally_modified';
|
|
24748
|
+
} | {
|
|
24749
|
+
/** Date and time at which Seam created the warning. */
|
|
24750
|
+
created_at: string;
|
|
24751
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22655
24752
|
message: string;
|
|
24753
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24754
|
+
warning_code: 'schedule_modified';
|
|
24755
|
+
} | {
|
|
24756
|
+
/** Date and time at which Seam created the warning. */
|
|
24757
|
+
created_at: string;
|
|
24758
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
24759
|
+
message: string;
|
|
24760
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24761
|
+
warning_code: 'being_deleted';
|
|
22656
24762
|
}>;
|
|
22657
24763
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
22658
24764
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -22703,13 +24809,40 @@ export interface Routes {
|
|
|
22703
24809
|
starts_at?: string | undefined;
|
|
22704
24810
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
22705
24811
|
ends_at?: string | undefined;
|
|
24812
|
+
/** Errors associated with the `acs_credential`. */
|
|
22706
24813
|
errors: Array<{
|
|
22707
24814
|
error_code: string;
|
|
22708
24815
|
message: string;
|
|
22709
24816
|
}>;
|
|
24817
|
+
/** Warnings associated with the `acs_credential`. */
|
|
22710
24818
|
warnings: Array<{
|
|
22711
|
-
|
|
24819
|
+
/** Date and time at which Seam created the warning. */
|
|
24820
|
+
created_at: string;
|
|
24821
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
24822
|
+
message: string;
|
|
24823
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24824
|
+
warning_code: 'waiting_to_be_issued';
|
|
24825
|
+
} | {
|
|
24826
|
+
/** Date and time at which Seam created the warning. */
|
|
24827
|
+
created_at: string;
|
|
24828
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
24829
|
+
message: string;
|
|
24830
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24831
|
+
warning_code: 'schedule_externally_modified';
|
|
24832
|
+
} | {
|
|
24833
|
+
/** Date and time at which Seam created the warning. */
|
|
24834
|
+
created_at: string;
|
|
24835
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
24836
|
+
message: string;
|
|
24837
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24838
|
+
warning_code: 'schedule_modified';
|
|
24839
|
+
} | {
|
|
24840
|
+
/** Date and time at which Seam created the warning. */
|
|
24841
|
+
created_at: string;
|
|
24842
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22712
24843
|
message: string;
|
|
24844
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24845
|
+
warning_code: 'being_deleted';
|
|
22713
24846
|
}>;
|
|
22714
24847
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
22715
24848
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -22797,13 +24930,40 @@ export interface Routes {
|
|
|
22797
24930
|
starts_at?: string | undefined;
|
|
22798
24931
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
22799
24932
|
ends_at?: string | undefined;
|
|
24933
|
+
/** Errors associated with the `acs_credential`. */
|
|
22800
24934
|
errors: Array<{
|
|
22801
24935
|
error_code: string;
|
|
22802
24936
|
message: string;
|
|
22803
24937
|
}>;
|
|
24938
|
+
/** Warnings associated with the `acs_credential`. */
|
|
22804
24939
|
warnings: Array<{
|
|
22805
|
-
|
|
24940
|
+
/** Date and time at which Seam created the warning. */
|
|
24941
|
+
created_at: string;
|
|
24942
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
24943
|
+
message: string;
|
|
24944
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24945
|
+
warning_code: 'waiting_to_be_issued';
|
|
24946
|
+
} | {
|
|
24947
|
+
/** Date and time at which Seam created the warning. */
|
|
24948
|
+
created_at: string;
|
|
24949
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
24950
|
+
message: string;
|
|
24951
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24952
|
+
warning_code: 'schedule_externally_modified';
|
|
24953
|
+
} | {
|
|
24954
|
+
/** Date and time at which Seam created the warning. */
|
|
24955
|
+
created_at: string;
|
|
24956
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
24957
|
+
message: string;
|
|
24958
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24959
|
+
warning_code: 'schedule_modified';
|
|
24960
|
+
} | {
|
|
24961
|
+
/** Date and time at which Seam created the warning. */
|
|
24962
|
+
created_at: string;
|
|
24963
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22806
24964
|
message: string;
|
|
24965
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
24966
|
+
warning_code: 'being_deleted';
|
|
22807
24967
|
}>;
|
|
22808
24968
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
22809
24969
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -22854,13 +25014,40 @@ export interface Routes {
|
|
|
22854
25014
|
starts_at?: string | undefined;
|
|
22855
25015
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
22856
25016
|
ends_at?: string | undefined;
|
|
25017
|
+
/** Errors associated with the `acs_credential`. */
|
|
22857
25018
|
errors: Array<{
|
|
22858
25019
|
error_code: string;
|
|
22859
25020
|
message: string;
|
|
22860
25021
|
}>;
|
|
25022
|
+
/** Warnings associated with the `acs_credential`. */
|
|
22861
25023
|
warnings: Array<{
|
|
22862
|
-
|
|
25024
|
+
/** Date and time at which Seam created the warning. */
|
|
25025
|
+
created_at: string;
|
|
25026
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25027
|
+
message: string;
|
|
25028
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25029
|
+
warning_code: 'waiting_to_be_issued';
|
|
25030
|
+
} | {
|
|
25031
|
+
/** Date and time at which Seam created the warning. */
|
|
25032
|
+
created_at: string;
|
|
25033
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25034
|
+
message: string;
|
|
25035
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25036
|
+
warning_code: 'schedule_externally_modified';
|
|
25037
|
+
} | {
|
|
25038
|
+
/** Date and time at which Seam created the warning. */
|
|
25039
|
+
created_at: string;
|
|
25040
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25041
|
+
message: string;
|
|
25042
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25043
|
+
warning_code: 'schedule_modified';
|
|
25044
|
+
} | {
|
|
25045
|
+
/** Date and time at which Seam created the warning. */
|
|
25046
|
+
created_at: string;
|
|
25047
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
22863
25048
|
message: string;
|
|
25049
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25050
|
+
warning_code: 'being_deleted';
|
|
22864
25051
|
}>;
|
|
22865
25052
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
22866
25053
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -23554,13 +25741,40 @@ export interface Routes {
|
|
|
23554
25741
|
starts_at?: string | undefined;
|
|
23555
25742
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
23556
25743
|
ends_at?: string | undefined;
|
|
25744
|
+
/** Errors associated with the `acs_credential`. */
|
|
23557
25745
|
errors: Array<{
|
|
23558
25746
|
error_code: string;
|
|
23559
25747
|
message: string;
|
|
23560
25748
|
}>;
|
|
25749
|
+
/** Warnings associated with the `acs_credential`. */
|
|
23561
25750
|
warnings: Array<{
|
|
23562
|
-
|
|
25751
|
+
/** Date and time at which Seam created the warning. */
|
|
25752
|
+
created_at: string;
|
|
25753
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23563
25754
|
message: string;
|
|
25755
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25756
|
+
warning_code: 'waiting_to_be_issued';
|
|
25757
|
+
} | {
|
|
25758
|
+
/** Date and time at which Seam created the warning. */
|
|
25759
|
+
created_at: string;
|
|
25760
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25761
|
+
message: string;
|
|
25762
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25763
|
+
warning_code: 'schedule_externally_modified';
|
|
25764
|
+
} | {
|
|
25765
|
+
/** Date and time at which Seam created the warning. */
|
|
25766
|
+
created_at: string;
|
|
25767
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25768
|
+
message: string;
|
|
25769
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25770
|
+
warning_code: 'schedule_modified';
|
|
25771
|
+
} | {
|
|
25772
|
+
/** Date and time at which Seam created the warning. */
|
|
25773
|
+
created_at: string;
|
|
25774
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25775
|
+
message: string;
|
|
25776
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25777
|
+
warning_code: 'being_deleted';
|
|
23564
25778
|
}>;
|
|
23565
25779
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
23566
25780
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -23611,13 +25825,40 @@ export interface Routes {
|
|
|
23611
25825
|
starts_at?: string | undefined;
|
|
23612
25826
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
23613
25827
|
ends_at?: string | undefined;
|
|
25828
|
+
/** Errors associated with the `acs_credential`. */
|
|
23614
25829
|
errors: Array<{
|
|
23615
25830
|
error_code: string;
|
|
23616
25831
|
message: string;
|
|
23617
25832
|
}>;
|
|
25833
|
+
/** Warnings associated with the `acs_credential`. */
|
|
23618
25834
|
warnings: Array<{
|
|
23619
|
-
|
|
25835
|
+
/** Date and time at which Seam created the warning. */
|
|
25836
|
+
created_at: string;
|
|
25837
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25838
|
+
message: string;
|
|
25839
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25840
|
+
warning_code: 'waiting_to_be_issued';
|
|
25841
|
+
} | {
|
|
25842
|
+
/** Date and time at which Seam created the warning. */
|
|
25843
|
+
created_at: string;
|
|
25844
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23620
25845
|
message: string;
|
|
25846
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25847
|
+
warning_code: 'schedule_externally_modified';
|
|
25848
|
+
} | {
|
|
25849
|
+
/** Date and time at which Seam created the warning. */
|
|
25850
|
+
created_at: string;
|
|
25851
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25852
|
+
message: string;
|
|
25853
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25854
|
+
warning_code: 'schedule_modified';
|
|
25855
|
+
} | {
|
|
25856
|
+
/** Date and time at which Seam created the warning. */
|
|
25857
|
+
created_at: string;
|
|
25858
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25859
|
+
message: string;
|
|
25860
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25861
|
+
warning_code: 'being_deleted';
|
|
23621
25862
|
}>;
|
|
23622
25863
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
23623
25864
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -23705,13 +25946,40 @@ export interface Routes {
|
|
|
23705
25946
|
starts_at?: string | undefined;
|
|
23706
25947
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
23707
25948
|
ends_at?: string | undefined;
|
|
25949
|
+
/** Errors associated with the `acs_credential`. */
|
|
23708
25950
|
errors: Array<{
|
|
23709
25951
|
error_code: string;
|
|
23710
25952
|
message: string;
|
|
23711
25953
|
}>;
|
|
25954
|
+
/** Warnings associated with the `acs_credential`. */
|
|
23712
25955
|
warnings: Array<{
|
|
23713
|
-
|
|
25956
|
+
/** Date and time at which Seam created the warning. */
|
|
25957
|
+
created_at: string;
|
|
25958
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25959
|
+
message: string;
|
|
25960
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25961
|
+
warning_code: 'waiting_to_be_issued';
|
|
25962
|
+
} | {
|
|
25963
|
+
/** Date and time at which Seam created the warning. */
|
|
25964
|
+
created_at: string;
|
|
25965
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25966
|
+
message: string;
|
|
25967
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25968
|
+
warning_code: 'schedule_externally_modified';
|
|
25969
|
+
} | {
|
|
25970
|
+
/** Date and time at which Seam created the warning. */
|
|
25971
|
+
created_at: string;
|
|
25972
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25973
|
+
message: string;
|
|
25974
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25975
|
+
warning_code: 'schedule_modified';
|
|
25976
|
+
} | {
|
|
25977
|
+
/** Date and time at which Seam created the warning. */
|
|
25978
|
+
created_at: string;
|
|
25979
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23714
25980
|
message: string;
|
|
25981
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25982
|
+
warning_code: 'being_deleted';
|
|
23715
25983
|
}>;
|
|
23716
25984
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
23717
25985
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -23762,13 +26030,40 @@ export interface Routes {
|
|
|
23762
26030
|
starts_at?: string | undefined;
|
|
23763
26031
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
23764
26032
|
ends_at?: string | undefined;
|
|
26033
|
+
/** Errors associated with the `acs_credential`. */
|
|
23765
26034
|
errors: Array<{
|
|
23766
26035
|
error_code: string;
|
|
23767
26036
|
message: string;
|
|
23768
26037
|
}>;
|
|
26038
|
+
/** Warnings associated with the `acs_credential`. */
|
|
23769
26039
|
warnings: Array<{
|
|
23770
|
-
|
|
26040
|
+
/** Date and time at which Seam created the warning. */
|
|
26041
|
+
created_at: string;
|
|
26042
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26043
|
+
message: string;
|
|
26044
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26045
|
+
warning_code: 'waiting_to_be_issued';
|
|
26046
|
+
} | {
|
|
26047
|
+
/** Date and time at which Seam created the warning. */
|
|
26048
|
+
created_at: string;
|
|
26049
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23771
26050
|
message: string;
|
|
26051
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26052
|
+
warning_code: 'schedule_externally_modified';
|
|
26053
|
+
} | {
|
|
26054
|
+
/** Date and time at which Seam created the warning. */
|
|
26055
|
+
created_at: string;
|
|
26056
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26057
|
+
message: string;
|
|
26058
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26059
|
+
warning_code: 'schedule_modified';
|
|
26060
|
+
} | {
|
|
26061
|
+
/** Date and time at which Seam created the warning. */
|
|
26062
|
+
created_at: string;
|
|
26063
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26064
|
+
message: string;
|
|
26065
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26066
|
+
warning_code: 'being_deleted';
|
|
23772
26067
|
}>;
|
|
23773
26068
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
23774
26069
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -26006,13 +28301,40 @@ export interface Routes {
|
|
|
26006
28301
|
starts_at?: string | undefined;
|
|
26007
28302
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
26008
28303
|
ends_at?: string | undefined;
|
|
28304
|
+
/** Errors associated with the `acs_credential`. */
|
|
26009
28305
|
errors: Array<{
|
|
26010
28306
|
error_code: string;
|
|
26011
28307
|
message: string;
|
|
26012
28308
|
}>;
|
|
28309
|
+
/** Warnings associated with the `acs_credential`. */
|
|
26013
28310
|
warnings: Array<{
|
|
26014
|
-
|
|
28311
|
+
/** Date and time at which Seam created the warning. */
|
|
28312
|
+
created_at: string;
|
|
28313
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28314
|
+
message: string;
|
|
28315
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28316
|
+
warning_code: 'waiting_to_be_issued';
|
|
28317
|
+
} | {
|
|
28318
|
+
/** Date and time at which Seam created the warning. */
|
|
28319
|
+
created_at: string;
|
|
28320
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28321
|
+
message: string;
|
|
28322
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28323
|
+
warning_code: 'schedule_externally_modified';
|
|
28324
|
+
} | {
|
|
28325
|
+
/** Date and time at which Seam created the warning. */
|
|
28326
|
+
created_at: string;
|
|
28327
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26015
28328
|
message: string;
|
|
28329
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28330
|
+
warning_code: 'schedule_modified';
|
|
28331
|
+
} | {
|
|
28332
|
+
/** Date and time at which Seam created the warning. */
|
|
28333
|
+
created_at: string;
|
|
28334
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28335
|
+
message: string;
|
|
28336
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28337
|
+
warning_code: 'being_deleted';
|
|
26016
28338
|
}>;
|
|
26017
28339
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26018
28340
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -26063,13 +28385,40 @@ export interface Routes {
|
|
|
26063
28385
|
starts_at?: string | undefined;
|
|
26064
28386
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
26065
28387
|
ends_at?: string | undefined;
|
|
28388
|
+
/** Errors associated with the `acs_credential`. */
|
|
26066
28389
|
errors: Array<{
|
|
26067
28390
|
error_code: string;
|
|
26068
28391
|
message: string;
|
|
26069
28392
|
}>;
|
|
28393
|
+
/** Warnings associated with the `acs_credential`. */
|
|
26070
28394
|
warnings: Array<{
|
|
26071
|
-
|
|
28395
|
+
/** Date and time at which Seam created the warning. */
|
|
28396
|
+
created_at: string;
|
|
28397
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28398
|
+
message: string;
|
|
28399
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28400
|
+
warning_code: 'waiting_to_be_issued';
|
|
28401
|
+
} | {
|
|
28402
|
+
/** Date and time at which Seam created the warning. */
|
|
28403
|
+
created_at: string;
|
|
28404
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28405
|
+
message: string;
|
|
28406
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28407
|
+
warning_code: 'schedule_externally_modified';
|
|
28408
|
+
} | {
|
|
28409
|
+
/** Date and time at which Seam created the warning. */
|
|
28410
|
+
created_at: string;
|
|
28411
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28412
|
+
message: string;
|
|
28413
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28414
|
+
warning_code: 'schedule_modified';
|
|
28415
|
+
} | {
|
|
28416
|
+
/** Date and time at which Seam created the warning. */
|
|
28417
|
+
created_at: string;
|
|
28418
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26072
28419
|
message: string;
|
|
28420
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28421
|
+
warning_code: 'being_deleted';
|
|
26073
28422
|
}>;
|
|
26074
28423
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26075
28424
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -26157,13 +28506,40 @@ export interface Routes {
|
|
|
26157
28506
|
starts_at?: string | undefined;
|
|
26158
28507
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
26159
28508
|
ends_at?: string | undefined;
|
|
28509
|
+
/** Errors associated with the `acs_credential`. */
|
|
26160
28510
|
errors: Array<{
|
|
26161
28511
|
error_code: string;
|
|
26162
28512
|
message: string;
|
|
26163
28513
|
}>;
|
|
28514
|
+
/** Warnings associated with the `acs_credential`. */
|
|
26164
28515
|
warnings: Array<{
|
|
26165
|
-
|
|
28516
|
+
/** Date and time at which Seam created the warning. */
|
|
28517
|
+
created_at: string;
|
|
28518
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28519
|
+
message: string;
|
|
28520
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28521
|
+
warning_code: 'waiting_to_be_issued';
|
|
28522
|
+
} | {
|
|
28523
|
+
/** Date and time at which Seam created the warning. */
|
|
28524
|
+
created_at: string;
|
|
28525
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26166
28526
|
message: string;
|
|
28527
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28528
|
+
warning_code: 'schedule_externally_modified';
|
|
28529
|
+
} | {
|
|
28530
|
+
/** Date and time at which Seam created the warning. */
|
|
28531
|
+
created_at: string;
|
|
28532
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28533
|
+
message: string;
|
|
28534
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28535
|
+
warning_code: 'schedule_modified';
|
|
28536
|
+
} | {
|
|
28537
|
+
/** Date and time at which Seam created the warning. */
|
|
28538
|
+
created_at: string;
|
|
28539
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28540
|
+
message: string;
|
|
28541
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28542
|
+
warning_code: 'being_deleted';
|
|
26167
28543
|
}>;
|
|
26168
28544
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26169
28545
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -26214,13 +28590,40 @@ export interface Routes {
|
|
|
26214
28590
|
starts_at?: string | undefined;
|
|
26215
28591
|
/** Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
26216
28592
|
ends_at?: string | undefined;
|
|
28593
|
+
/** Errors associated with the `acs_credential`. */
|
|
26217
28594
|
errors: Array<{
|
|
26218
28595
|
error_code: string;
|
|
26219
28596
|
message: string;
|
|
26220
28597
|
}>;
|
|
28598
|
+
/** Warnings associated with the `acs_credential`. */
|
|
26221
28599
|
warnings: Array<{
|
|
26222
|
-
|
|
28600
|
+
/** Date and time at which Seam created the warning. */
|
|
28601
|
+
created_at: string;
|
|
28602
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28603
|
+
message: string;
|
|
28604
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28605
|
+
warning_code: 'waiting_to_be_issued';
|
|
28606
|
+
} | {
|
|
28607
|
+
/** Date and time at which Seam created the warning. */
|
|
28608
|
+
created_at: string;
|
|
28609
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28610
|
+
message: string;
|
|
28611
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28612
|
+
warning_code: 'schedule_externally_modified';
|
|
28613
|
+
} | {
|
|
28614
|
+
/** Date and time at which Seam created the warning. */
|
|
28615
|
+
created_at: string;
|
|
28616
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28617
|
+
message: string;
|
|
28618
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28619
|
+
warning_code: 'schedule_modified';
|
|
28620
|
+
} | {
|
|
28621
|
+
/** Date and time at which Seam created the warning. */
|
|
28622
|
+
created_at: string;
|
|
28623
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26223
28624
|
message: string;
|
|
28625
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28626
|
+
warning_code: 'being_deleted';
|
|
26224
28627
|
}>;
|
|
26225
28628
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26226
28629
|
is_multi_phone_sync_credential?: boolean | undefined;
|