@seamapi/types 1.328.0 → 1.329.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 +236 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +981 -2
- package/lib/seam/connect/models/acs/acs-credential.d.ts +66 -0
- package/lib/seam/connect/models/acs/acs-credential.js +9 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +132 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +58 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +74 -0
- package/lib/seam/connect/models/events/acs/credentials.d.ts +61 -0
- package/lib/seam/connect/models/events/acs/credentials.js +6 -0
- package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
- package/lib/seam/connect/models/events/acs/index.d.ts +30 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +30 -0
- package/lib/seam/connect/openapi.d.ts +87 -0
- package/lib/seam/connect/openapi.js +220 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +690 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +12 -0
- package/src/lib/seam/connect/models/events/acs/credentials.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +252 -0
- package/src/lib/seam/connect/route-types.ts +786 -0
package/dist/connect.d.cts
CHANGED
|
@@ -1032,6 +1032,19 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1032
1032
|
message: string;
|
|
1033
1033
|
warning_code: "unknown_issue_with_acs_credential";
|
|
1034
1034
|
created_at: string;
|
|
1035
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1036
|
+
created_at: z.ZodString;
|
|
1037
|
+
message: z.ZodString;
|
|
1038
|
+
}, {
|
|
1039
|
+
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
1040
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1041
|
+
message: string;
|
|
1042
|
+
warning_code: "needs_to_be_reissued";
|
|
1043
|
+
created_at: string;
|
|
1044
|
+
}, {
|
|
1045
|
+
message: string;
|
|
1046
|
+
warning_code: "needs_to_be_reissued";
|
|
1047
|
+
created_at: string;
|
|
1035
1048
|
}>]>, "many">;
|
|
1036
1049
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
1037
1050
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -1092,6 +1105,10 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1092
1105
|
message: string;
|
|
1093
1106
|
warning_code: "unknown_issue_with_acs_credential";
|
|
1094
1107
|
created_at: string;
|
|
1108
|
+
} | {
|
|
1109
|
+
message: string;
|
|
1110
|
+
warning_code: "needs_to_be_reissued";
|
|
1111
|
+
created_at: string;
|
|
1095
1112
|
})[];
|
|
1096
1113
|
display_name: string;
|
|
1097
1114
|
workspace_id: string;
|
|
@@ -1150,6 +1167,10 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1150
1167
|
message: string;
|
|
1151
1168
|
warning_code: "unknown_issue_with_acs_credential";
|
|
1152
1169
|
created_at: string;
|
|
1170
|
+
} | {
|
|
1171
|
+
message: string;
|
|
1172
|
+
warning_code: "needs_to_be_reissued";
|
|
1173
|
+
created_at: string;
|
|
1153
1174
|
})[];
|
|
1154
1175
|
display_name: string;
|
|
1155
1176
|
workspace_id: string;
|
|
@@ -1277,6 +1298,19 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1277
1298
|
message: string;
|
|
1278
1299
|
warning_code: "unknown_issue_with_acs_credential";
|
|
1279
1300
|
created_at: string;
|
|
1301
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1302
|
+
created_at: z.ZodString;
|
|
1303
|
+
message: z.ZodString;
|
|
1304
|
+
}, {
|
|
1305
|
+
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
1306
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1307
|
+
message: string;
|
|
1308
|
+
warning_code: "needs_to_be_reissued";
|
|
1309
|
+
created_at: string;
|
|
1310
|
+
}, {
|
|
1311
|
+
message: string;
|
|
1312
|
+
warning_code: "needs_to_be_reissued";
|
|
1313
|
+
created_at: string;
|
|
1280
1314
|
}>]>, "many">;
|
|
1281
1315
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
1282
1316
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -1337,6 +1371,10 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1337
1371
|
message: string;
|
|
1338
1372
|
warning_code: "unknown_issue_with_acs_credential";
|
|
1339
1373
|
created_at: string;
|
|
1374
|
+
} | {
|
|
1375
|
+
message: string;
|
|
1376
|
+
warning_code: "needs_to_be_reissued";
|
|
1377
|
+
created_at: string;
|
|
1340
1378
|
})[];
|
|
1341
1379
|
display_name: string;
|
|
1342
1380
|
workspace_id: string;
|
|
@@ -1395,6 +1433,10 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1395
1433
|
message: string;
|
|
1396
1434
|
warning_code: "unknown_issue_with_acs_credential";
|
|
1397
1435
|
created_at: string;
|
|
1436
|
+
} | {
|
|
1437
|
+
message: string;
|
|
1438
|
+
warning_code: "needs_to_be_reissued";
|
|
1439
|
+
created_at: string;
|
|
1398
1440
|
})[];
|
|
1399
1441
|
display_name: string;
|
|
1400
1442
|
workspace_id: string;
|
|
@@ -2819,6 +2861,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2819
2861
|
message: string;
|
|
2820
2862
|
warning_code: "unknown_issue_with_acs_credential";
|
|
2821
2863
|
created_at: string;
|
|
2864
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2865
|
+
created_at: z.ZodString;
|
|
2866
|
+
message: z.ZodString;
|
|
2867
|
+
}, {
|
|
2868
|
+
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
2869
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2870
|
+
message: string;
|
|
2871
|
+
warning_code: "needs_to_be_reissued";
|
|
2872
|
+
created_at: string;
|
|
2873
|
+
}, {
|
|
2874
|
+
message: string;
|
|
2875
|
+
warning_code: "needs_to_be_reissued";
|
|
2876
|
+
created_at: string;
|
|
2822
2877
|
}>]>, "many">;
|
|
2823
2878
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
2824
2879
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -2879,6 +2934,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2879
2934
|
message: string;
|
|
2880
2935
|
warning_code: "unknown_issue_with_acs_credential";
|
|
2881
2936
|
created_at: string;
|
|
2937
|
+
} | {
|
|
2938
|
+
message: string;
|
|
2939
|
+
warning_code: "needs_to_be_reissued";
|
|
2940
|
+
created_at: string;
|
|
2882
2941
|
})[];
|
|
2883
2942
|
display_name: string;
|
|
2884
2943
|
workspace_id: string;
|
|
@@ -2937,6 +2996,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2937
2996
|
message: string;
|
|
2938
2997
|
warning_code: "unknown_issue_with_acs_credential";
|
|
2939
2998
|
created_at: string;
|
|
2999
|
+
} | {
|
|
3000
|
+
message: string;
|
|
3001
|
+
warning_code: "needs_to_be_reissued";
|
|
3002
|
+
created_at: string;
|
|
2940
3003
|
})[];
|
|
2941
3004
|
display_name: string;
|
|
2942
3005
|
workspace_id: string;
|
|
@@ -3063,6 +3126,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3063
3126
|
message: string;
|
|
3064
3127
|
warning_code: "unknown_issue_with_acs_credential";
|
|
3065
3128
|
created_at: string;
|
|
3129
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3130
|
+
created_at: z.ZodString;
|
|
3131
|
+
message: z.ZodString;
|
|
3132
|
+
}, {
|
|
3133
|
+
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
3134
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3135
|
+
message: string;
|
|
3136
|
+
warning_code: "needs_to_be_reissued";
|
|
3137
|
+
created_at: string;
|
|
3138
|
+
}, {
|
|
3139
|
+
message: string;
|
|
3140
|
+
warning_code: "needs_to_be_reissued";
|
|
3141
|
+
created_at: string;
|
|
3066
3142
|
}>]>, "many">;
|
|
3067
3143
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
3068
3144
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -3123,6 +3199,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3123
3199
|
message: string;
|
|
3124
3200
|
warning_code: "unknown_issue_with_acs_credential";
|
|
3125
3201
|
created_at: string;
|
|
3202
|
+
} | {
|
|
3203
|
+
message: string;
|
|
3204
|
+
warning_code: "needs_to_be_reissued";
|
|
3205
|
+
created_at: string;
|
|
3126
3206
|
})[];
|
|
3127
3207
|
display_name: string;
|
|
3128
3208
|
workspace_id: string;
|
|
@@ -3181,6 +3261,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3181
3261
|
message: string;
|
|
3182
3262
|
warning_code: "unknown_issue_with_acs_credential";
|
|
3183
3263
|
created_at: string;
|
|
3264
|
+
} | {
|
|
3265
|
+
message: string;
|
|
3266
|
+
warning_code: "needs_to_be_reissued";
|
|
3267
|
+
created_at: string;
|
|
3184
3268
|
})[];
|
|
3185
3269
|
display_name: string;
|
|
3186
3270
|
workspace_id: string;
|
|
@@ -3276,6 +3360,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3276
3360
|
message: string;
|
|
3277
3361
|
warning_code: "unknown_issue_with_acs_credential";
|
|
3278
3362
|
created_at: string;
|
|
3363
|
+
} | {
|
|
3364
|
+
message: string;
|
|
3365
|
+
warning_code: "needs_to_be_reissued";
|
|
3366
|
+
created_at: string;
|
|
3279
3367
|
})[];
|
|
3280
3368
|
display_name: string;
|
|
3281
3369
|
workspace_id: string;
|
|
@@ -3334,6 +3422,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3334
3422
|
message: string;
|
|
3335
3423
|
warning_code: "unknown_issue_with_acs_credential";
|
|
3336
3424
|
created_at: string;
|
|
3425
|
+
} | {
|
|
3426
|
+
message: string;
|
|
3427
|
+
warning_code: "needs_to_be_reissued";
|
|
3428
|
+
created_at: string;
|
|
3337
3429
|
})[];
|
|
3338
3430
|
display_name: string;
|
|
3339
3431
|
workspace_id: string;
|
|
@@ -3419,6 +3511,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3419
3511
|
message: string;
|
|
3420
3512
|
warning_code: "unknown_issue_with_acs_credential";
|
|
3421
3513
|
created_at: string;
|
|
3514
|
+
} | {
|
|
3515
|
+
message: string;
|
|
3516
|
+
warning_code: "needs_to_be_reissued";
|
|
3517
|
+
created_at: string;
|
|
3422
3518
|
})[];
|
|
3423
3519
|
display_name: string;
|
|
3424
3520
|
workspace_id: string;
|
|
@@ -3477,6 +3573,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3477
3573
|
message: string;
|
|
3478
3574
|
warning_code: "unknown_issue_with_acs_credential";
|
|
3479
3575
|
created_at: string;
|
|
3576
|
+
} | {
|
|
3577
|
+
message: string;
|
|
3578
|
+
warning_code: "needs_to_be_reissued";
|
|
3579
|
+
created_at: string;
|
|
3480
3580
|
})[];
|
|
3481
3581
|
display_name: string;
|
|
3482
3582
|
workspace_id: string;
|
|
@@ -3567,6 +3667,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3567
3667
|
message: string;
|
|
3568
3668
|
warning_code: "unknown_issue_with_acs_credential";
|
|
3569
3669
|
created_at: string;
|
|
3670
|
+
} | {
|
|
3671
|
+
message: string;
|
|
3672
|
+
warning_code: "needs_to_be_reissued";
|
|
3673
|
+
created_at: string;
|
|
3570
3674
|
})[];
|
|
3571
3675
|
display_name: string;
|
|
3572
3676
|
workspace_id: string;
|
|
@@ -3625,6 +3729,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3625
3729
|
message: string;
|
|
3626
3730
|
warning_code: "unknown_issue_with_acs_credential";
|
|
3627
3731
|
created_at: string;
|
|
3732
|
+
} | {
|
|
3733
|
+
message: string;
|
|
3734
|
+
warning_code: "needs_to_be_reissued";
|
|
3735
|
+
created_at: string;
|
|
3628
3736
|
})[];
|
|
3629
3737
|
display_name: string;
|
|
3630
3738
|
workspace_id: string;
|
|
@@ -3716,6 +3824,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3716
3824
|
message: string;
|
|
3717
3825
|
warning_code: "unknown_issue_with_acs_credential";
|
|
3718
3826
|
created_at: string;
|
|
3827
|
+
} | {
|
|
3828
|
+
message: string;
|
|
3829
|
+
warning_code: "needs_to_be_reissued";
|
|
3830
|
+
created_at: string;
|
|
3719
3831
|
})[];
|
|
3720
3832
|
display_name: string;
|
|
3721
3833
|
workspace_id: string;
|
|
@@ -3774,6 +3886,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3774
3886
|
message: string;
|
|
3775
3887
|
warning_code: "unknown_issue_with_acs_credential";
|
|
3776
3888
|
created_at: string;
|
|
3889
|
+
} | {
|
|
3890
|
+
message: string;
|
|
3891
|
+
warning_code: "needs_to_be_reissued";
|
|
3892
|
+
created_at: string;
|
|
3777
3893
|
})[];
|
|
3778
3894
|
display_name: string;
|
|
3779
3895
|
workspace_id: string;
|
|
@@ -3998,6 +4114,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3998
4114
|
message: string;
|
|
3999
4115
|
warning_code: "unknown_issue_with_acs_credential";
|
|
4000
4116
|
created_at: string;
|
|
4117
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4118
|
+
created_at: z.ZodString;
|
|
4119
|
+
message: z.ZodString;
|
|
4120
|
+
}, {
|
|
4121
|
+
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
4122
|
+
}>, "strip", z.ZodTypeAny, {
|
|
4123
|
+
message: string;
|
|
4124
|
+
warning_code: "needs_to_be_reissued";
|
|
4125
|
+
created_at: string;
|
|
4126
|
+
}, {
|
|
4127
|
+
message: string;
|
|
4128
|
+
warning_code: "needs_to_be_reissued";
|
|
4129
|
+
created_at: string;
|
|
4001
4130
|
}>]>, "many">;
|
|
4002
4131
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
4003
4132
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -4058,6 +4187,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4058
4187
|
message: string;
|
|
4059
4188
|
warning_code: "unknown_issue_with_acs_credential";
|
|
4060
4189
|
created_at: string;
|
|
4190
|
+
} | {
|
|
4191
|
+
message: string;
|
|
4192
|
+
warning_code: "needs_to_be_reissued";
|
|
4193
|
+
created_at: string;
|
|
4061
4194
|
})[];
|
|
4062
4195
|
display_name: string;
|
|
4063
4196
|
workspace_id: string;
|
|
@@ -4116,6 +4249,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4116
4249
|
message: string;
|
|
4117
4250
|
warning_code: "unknown_issue_with_acs_credential";
|
|
4118
4251
|
created_at: string;
|
|
4252
|
+
} | {
|
|
4253
|
+
message: string;
|
|
4254
|
+
warning_code: "needs_to_be_reissued";
|
|
4255
|
+
created_at: string;
|
|
4119
4256
|
})[];
|
|
4120
4257
|
display_name: string;
|
|
4121
4258
|
workspace_id: string;
|
|
@@ -4242,6 +4379,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4242
4379
|
message: string;
|
|
4243
4380
|
warning_code: "unknown_issue_with_acs_credential";
|
|
4244
4381
|
created_at: string;
|
|
4382
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4383
|
+
created_at: z.ZodString;
|
|
4384
|
+
message: z.ZodString;
|
|
4385
|
+
}, {
|
|
4386
|
+
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
4387
|
+
}>, "strip", z.ZodTypeAny, {
|
|
4388
|
+
message: string;
|
|
4389
|
+
warning_code: "needs_to_be_reissued";
|
|
4390
|
+
created_at: string;
|
|
4391
|
+
}, {
|
|
4392
|
+
message: string;
|
|
4393
|
+
warning_code: "needs_to_be_reissued";
|
|
4394
|
+
created_at: string;
|
|
4245
4395
|
}>]>, "many">;
|
|
4246
4396
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
4247
4397
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -4302,6 +4452,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4302
4452
|
message: string;
|
|
4303
4453
|
warning_code: "unknown_issue_with_acs_credential";
|
|
4304
4454
|
created_at: string;
|
|
4455
|
+
} | {
|
|
4456
|
+
message: string;
|
|
4457
|
+
warning_code: "needs_to_be_reissued";
|
|
4458
|
+
created_at: string;
|
|
4305
4459
|
})[];
|
|
4306
4460
|
display_name: string;
|
|
4307
4461
|
workspace_id: string;
|
|
@@ -4360,6 +4514,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4360
4514
|
message: string;
|
|
4361
4515
|
warning_code: "unknown_issue_with_acs_credential";
|
|
4362
4516
|
created_at: string;
|
|
4517
|
+
} | {
|
|
4518
|
+
message: string;
|
|
4519
|
+
warning_code: "needs_to_be_reissued";
|
|
4520
|
+
created_at: string;
|
|
4363
4521
|
})[];
|
|
4364
4522
|
display_name: string;
|
|
4365
4523
|
workspace_id: string;
|
|
@@ -4423,6 +4581,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4423
4581
|
message: string;
|
|
4424
4582
|
warning_code: "unknown_issue_with_acs_credential";
|
|
4425
4583
|
created_at: string;
|
|
4584
|
+
} | {
|
|
4585
|
+
message: string;
|
|
4586
|
+
warning_code: "needs_to_be_reissued";
|
|
4587
|
+
created_at: string;
|
|
4426
4588
|
})[];
|
|
4427
4589
|
display_name: string;
|
|
4428
4590
|
workspace_id: string;
|
|
@@ -4481,6 +4643,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4481
4643
|
message: string;
|
|
4482
4644
|
warning_code: "unknown_issue_with_acs_credential";
|
|
4483
4645
|
created_at: string;
|
|
4646
|
+
} | {
|
|
4647
|
+
message: string;
|
|
4648
|
+
warning_code: "needs_to_be_reissued";
|
|
4649
|
+
created_at: string;
|
|
4484
4650
|
})[];
|
|
4485
4651
|
display_name: string;
|
|
4486
4652
|
workspace_id: string;
|
|
@@ -4545,6 +4711,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4545
4711
|
message: string;
|
|
4546
4712
|
warning_code: "unknown_issue_with_acs_credential";
|
|
4547
4713
|
created_at: string;
|
|
4714
|
+
} | {
|
|
4715
|
+
message: string;
|
|
4716
|
+
warning_code: "needs_to_be_reissued";
|
|
4717
|
+
created_at: string;
|
|
4548
4718
|
})[];
|
|
4549
4719
|
display_name: string;
|
|
4550
4720
|
workspace_id: string;
|
|
@@ -4603,6 +4773,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4603
4773
|
message: string;
|
|
4604
4774
|
warning_code: "unknown_issue_with_acs_credential";
|
|
4605
4775
|
created_at: string;
|
|
4776
|
+
} | {
|
|
4777
|
+
message: string;
|
|
4778
|
+
warning_code: "needs_to_be_reissued";
|
|
4779
|
+
created_at: string;
|
|
4606
4780
|
})[];
|
|
4607
4781
|
display_name: string;
|
|
4608
4782
|
workspace_id: string;
|
|
@@ -12271,6 +12445,36 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<z.o
|
|
|
12271
12445
|
}, {
|
|
12272
12446
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
12273
12447
|
acs_system_id: z.ZodString;
|
|
12448
|
+
}>, {
|
|
12449
|
+
acs_credential_id: z.ZodString;
|
|
12450
|
+
}>, {
|
|
12451
|
+
event_type: z.ZodLiteral<"acs_credential.reissued">;
|
|
12452
|
+
}>, "strip", z.ZodTypeAny, {
|
|
12453
|
+
created_at: string;
|
|
12454
|
+
workspace_id: string;
|
|
12455
|
+
acs_system_id: string;
|
|
12456
|
+
acs_credential_id: string;
|
|
12457
|
+
event_id: string;
|
|
12458
|
+
occurred_at: string;
|
|
12459
|
+
event_type: "acs_credential.reissued";
|
|
12460
|
+
connected_account_id?: string | undefined;
|
|
12461
|
+
}, {
|
|
12462
|
+
created_at: string;
|
|
12463
|
+
workspace_id: string;
|
|
12464
|
+
acs_system_id: string;
|
|
12465
|
+
acs_credential_id: string;
|
|
12466
|
+
event_id: string;
|
|
12467
|
+
occurred_at: string;
|
|
12468
|
+
event_type: "acs_credential.reissued";
|
|
12469
|
+
connected_account_id?: string | undefined;
|
|
12470
|
+
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
12471
|
+
event_id: z.ZodString;
|
|
12472
|
+
workspace_id: z.ZodString;
|
|
12473
|
+
created_at: z.ZodString;
|
|
12474
|
+
occurred_at: z.ZodString;
|
|
12475
|
+
}, {
|
|
12476
|
+
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
12477
|
+
acs_system_id: z.ZodString;
|
|
12274
12478
|
}>, {
|
|
12275
12479
|
acs_user_id: z.ZodString;
|
|
12276
12480
|
}>, {
|
|
@@ -18450,6 +18654,93 @@ declare const _default: {
|
|
|
18450
18654
|
'x-route-path': string;
|
|
18451
18655
|
deprecated?: never;
|
|
18452
18656
|
'x-deprecated'?: never;
|
|
18657
|
+
} | {
|
|
18658
|
+
description: string;
|
|
18659
|
+
properties: {
|
|
18660
|
+
acs_credential_id: {
|
|
18661
|
+
format: string;
|
|
18662
|
+
type: string;
|
|
18663
|
+
};
|
|
18664
|
+
acs_system_id: {
|
|
18665
|
+
description: string;
|
|
18666
|
+
format: string;
|
|
18667
|
+
type: string;
|
|
18668
|
+
};
|
|
18669
|
+
connected_account_id: {
|
|
18670
|
+
description: string;
|
|
18671
|
+
format: string;
|
|
18672
|
+
type: string;
|
|
18673
|
+
};
|
|
18674
|
+
created_at: {
|
|
18675
|
+
description: string;
|
|
18676
|
+
format: string;
|
|
18677
|
+
type: string;
|
|
18678
|
+
};
|
|
18679
|
+
event_id: {
|
|
18680
|
+
description: string;
|
|
18681
|
+
format: string;
|
|
18682
|
+
type: string;
|
|
18683
|
+
};
|
|
18684
|
+
event_type: {
|
|
18685
|
+
enum: string[];
|
|
18686
|
+
type: string;
|
|
18687
|
+
};
|
|
18688
|
+
occurred_at: {
|
|
18689
|
+
description: string;
|
|
18690
|
+
format: string;
|
|
18691
|
+
type: string;
|
|
18692
|
+
};
|
|
18693
|
+
workspace_id: {
|
|
18694
|
+
description: string;
|
|
18695
|
+
format: string;
|
|
18696
|
+
type: string;
|
|
18697
|
+
};
|
|
18698
|
+
access_code_id?: never;
|
|
18699
|
+
device_id?: never;
|
|
18700
|
+
code?: never;
|
|
18701
|
+
backup_access_code_id?: never;
|
|
18702
|
+
acs_user_id?: never;
|
|
18703
|
+
acs_encoder_id?: never;
|
|
18704
|
+
acs_access_group_id?: never;
|
|
18705
|
+
client_session_id?: never;
|
|
18706
|
+
connect_webview_id?: never;
|
|
18707
|
+
action_attempt_id?: never;
|
|
18708
|
+
action_type?: never;
|
|
18709
|
+
status?: never;
|
|
18710
|
+
error_code?: never;
|
|
18711
|
+
battery_level?: never;
|
|
18712
|
+
battery_status?: never;
|
|
18713
|
+
minut_metadata?: never;
|
|
18714
|
+
noise_level_decibels?: never;
|
|
18715
|
+
noise_level_nrs?: never;
|
|
18716
|
+
noise_threshold_id?: never;
|
|
18717
|
+
noise_threshold_name?: never;
|
|
18718
|
+
noiseaware_metadata?: never;
|
|
18719
|
+
method?: never;
|
|
18720
|
+
climate_preset_key?: never;
|
|
18721
|
+
is_fallback_climate_preset?: never;
|
|
18722
|
+
thermostat_schedule_id?: never;
|
|
18723
|
+
cooling_set_point_celsius?: never;
|
|
18724
|
+
cooling_set_point_fahrenheit?: never;
|
|
18725
|
+
fan_mode_setting?: never;
|
|
18726
|
+
heating_set_point_celsius?: never;
|
|
18727
|
+
heating_set_point_fahrenheit?: never;
|
|
18728
|
+
hvac_mode_setting?: never;
|
|
18729
|
+
lower_limit_celsius?: never;
|
|
18730
|
+
lower_limit_fahrenheit?: never;
|
|
18731
|
+
temperature_celsius?: never;
|
|
18732
|
+
temperature_fahrenheit?: never;
|
|
18733
|
+
upper_limit_celsius?: never;
|
|
18734
|
+
upper_limit_fahrenheit?: never;
|
|
18735
|
+
desired_temperature_celsius?: never;
|
|
18736
|
+
desired_temperature_fahrenheit?: never;
|
|
18737
|
+
enrollment_automation_id?: never;
|
|
18738
|
+
};
|
|
18739
|
+
required: string[];
|
|
18740
|
+
type: string;
|
|
18741
|
+
'x-route-path'?: never;
|
|
18742
|
+
deprecated?: never;
|
|
18743
|
+
'x-deprecated'?: never;
|
|
18453
18744
|
} | {
|
|
18454
18745
|
description: string;
|
|
18455
18746
|
properties: {
|
|
@@ -37861,6 +38152,13 @@ interface Routes {
|
|
|
37861
38152
|
message: string;
|
|
37862
38153
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37863
38154
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
38155
|
+
} | {
|
|
38156
|
+
/** Date and time at which Seam created the warning. */
|
|
38157
|
+
created_at: string;
|
|
38158
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38159
|
+
message: string;
|
|
38160
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38161
|
+
warning_code: 'needs_to_be_reissued';
|
|
37864
38162
|
}>;
|
|
37865
38163
|
/** 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). */
|
|
37866
38164
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -37954,6 +38252,13 @@ interface Routes {
|
|
|
37954
38252
|
message: string;
|
|
37955
38253
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37956
38254
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
38255
|
+
} | {
|
|
38256
|
+
/** Date and time at which Seam created the warning. */
|
|
38257
|
+
created_at: string;
|
|
38258
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38259
|
+
message: string;
|
|
38260
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38261
|
+
warning_code: 'needs_to_be_reissued';
|
|
37957
38262
|
}>;
|
|
37958
38263
|
/** 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). */
|
|
37959
38264
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38084,6 +38389,13 @@ interface Routes {
|
|
|
38084
38389
|
message: string;
|
|
38085
38390
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38086
38391
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
38392
|
+
} | {
|
|
38393
|
+
/** Date and time at which Seam created the warning. */
|
|
38394
|
+
created_at: string;
|
|
38395
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38396
|
+
message: string;
|
|
38397
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38398
|
+
warning_code: 'needs_to_be_reissued';
|
|
38087
38399
|
}>;
|
|
38088
38400
|
/** 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). */
|
|
38089
38401
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38177,6 +38489,13 @@ interface Routes {
|
|
|
38177
38489
|
message: string;
|
|
38178
38490
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38179
38491
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
38492
|
+
} | {
|
|
38493
|
+
/** Date and time at which Seam created the warning. */
|
|
38494
|
+
created_at: string;
|
|
38495
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38496
|
+
message: string;
|
|
38497
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38498
|
+
warning_code: 'needs_to_be_reissued';
|
|
38180
38499
|
}>;
|
|
38181
38500
|
/** 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). */
|
|
38182
38501
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38940,6 +39259,13 @@ interface Routes {
|
|
|
38940
39259
|
message: string;
|
|
38941
39260
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38942
39261
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
39262
|
+
} | {
|
|
39263
|
+
/** Date and time at which Seam created the warning. */
|
|
39264
|
+
created_at: string;
|
|
39265
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39266
|
+
message: string;
|
|
39267
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39268
|
+
warning_code: 'needs_to_be_reissued';
|
|
38943
39269
|
}>;
|
|
38944
39270
|
/** 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). */
|
|
38945
39271
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39033,6 +39359,13 @@ interface Routes {
|
|
|
39033
39359
|
message: string;
|
|
39034
39360
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39035
39361
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
39362
|
+
} | {
|
|
39363
|
+
/** Date and time at which Seam created the warning. */
|
|
39364
|
+
created_at: string;
|
|
39365
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39366
|
+
message: string;
|
|
39367
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39368
|
+
warning_code: 'needs_to_be_reissued';
|
|
39036
39369
|
}>;
|
|
39037
39370
|
/** 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). */
|
|
39038
39371
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39163,6 +39496,13 @@ interface Routes {
|
|
|
39163
39496
|
message: string;
|
|
39164
39497
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39165
39498
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
39499
|
+
} | {
|
|
39500
|
+
/** Date and time at which Seam created the warning. */
|
|
39501
|
+
created_at: string;
|
|
39502
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39503
|
+
message: string;
|
|
39504
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39505
|
+
warning_code: 'needs_to_be_reissued';
|
|
39166
39506
|
}>;
|
|
39167
39507
|
/** 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). */
|
|
39168
39508
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39256,6 +39596,13 @@ interface Routes {
|
|
|
39256
39596
|
message: string;
|
|
39257
39597
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39258
39598
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
39599
|
+
} | {
|
|
39600
|
+
/** Date and time at which Seam created the warning. */
|
|
39601
|
+
created_at: string;
|
|
39602
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39603
|
+
message: string;
|
|
39604
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39605
|
+
warning_code: 'needs_to_be_reissued';
|
|
39259
39606
|
}>;
|
|
39260
39607
|
/** 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). */
|
|
39261
39608
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40423,6 +40770,13 @@ interface Routes {
|
|
|
40423
40770
|
message: string;
|
|
40424
40771
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40425
40772
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
40773
|
+
} | {
|
|
40774
|
+
/** Date and time at which Seam created the warning. */
|
|
40775
|
+
created_at: string;
|
|
40776
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40777
|
+
message: string;
|
|
40778
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40779
|
+
warning_code: 'needs_to_be_reissued';
|
|
40426
40780
|
}>;
|
|
40427
40781
|
/** 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). */
|
|
40428
40782
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40516,6 +40870,13 @@ interface Routes {
|
|
|
40516
40870
|
message: string;
|
|
40517
40871
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40518
40872
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
40873
|
+
} | {
|
|
40874
|
+
/** Date and time at which Seam created the warning. */
|
|
40875
|
+
created_at: string;
|
|
40876
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40877
|
+
message: string;
|
|
40878
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40879
|
+
warning_code: 'needs_to_be_reissued';
|
|
40519
40880
|
}>;
|
|
40520
40881
|
/** 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). */
|
|
40521
40882
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40646,6 +41007,13 @@ interface Routes {
|
|
|
40646
41007
|
message: string;
|
|
40647
41008
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40648
41009
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
41010
|
+
} | {
|
|
41011
|
+
/** Date and time at which Seam created the warning. */
|
|
41012
|
+
created_at: string;
|
|
41013
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41014
|
+
message: string;
|
|
41015
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41016
|
+
warning_code: 'needs_to_be_reissued';
|
|
40649
41017
|
}>;
|
|
40650
41018
|
/** 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). */
|
|
40651
41019
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40739,6 +41107,13 @@ interface Routes {
|
|
|
40739
41107
|
message: string;
|
|
40740
41108
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40741
41109
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
41110
|
+
} | {
|
|
41111
|
+
/** Date and time at which Seam created the warning. */
|
|
41112
|
+
created_at: string;
|
|
41113
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41114
|
+
message: string;
|
|
41115
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41116
|
+
warning_code: 'needs_to_be_reissued';
|
|
40742
41117
|
}>;
|
|
40743
41118
|
/** 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). */
|
|
40744
41119
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41489,6 +41864,13 @@ interface Routes {
|
|
|
41489
41864
|
message: string;
|
|
41490
41865
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41491
41866
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
41867
|
+
} | {
|
|
41868
|
+
/** Date and time at which Seam created the warning. */
|
|
41869
|
+
created_at: string;
|
|
41870
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41871
|
+
message: string;
|
|
41872
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41873
|
+
warning_code: 'needs_to_be_reissued';
|
|
41492
41874
|
}>;
|
|
41493
41875
|
/** 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). */
|
|
41494
41876
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41582,6 +41964,13 @@ interface Routes {
|
|
|
41582
41964
|
message: string;
|
|
41583
41965
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41584
41966
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
41967
|
+
} | {
|
|
41968
|
+
/** Date and time at which Seam created the warning. */
|
|
41969
|
+
created_at: string;
|
|
41970
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41971
|
+
message: string;
|
|
41972
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41973
|
+
warning_code: 'needs_to_be_reissued';
|
|
41585
41974
|
}>;
|
|
41586
41975
|
/** 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). */
|
|
41587
41976
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41712,6 +42101,13 @@ interface Routes {
|
|
|
41712
42101
|
message: string;
|
|
41713
42102
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41714
42103
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
42104
|
+
} | {
|
|
42105
|
+
/** Date and time at which Seam created the warning. */
|
|
42106
|
+
created_at: string;
|
|
42107
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42108
|
+
message: string;
|
|
42109
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42110
|
+
warning_code: 'needs_to_be_reissued';
|
|
41715
42111
|
}>;
|
|
41716
42112
|
/** 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). */
|
|
41717
42113
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41805,6 +42201,13 @@ interface Routes {
|
|
|
41805
42201
|
message: string;
|
|
41806
42202
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41807
42203
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
42204
|
+
} | {
|
|
42205
|
+
/** Date and time at which Seam created the warning. */
|
|
42206
|
+
created_at: string;
|
|
42207
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42208
|
+
message: string;
|
|
42209
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42210
|
+
warning_code: 'needs_to_be_reissued';
|
|
41808
42211
|
}>;
|
|
41809
42212
|
/** 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). */
|
|
41810
42213
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42654,6 +43057,13 @@ interface Routes {
|
|
|
42654
43057
|
message: string;
|
|
42655
43058
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42656
43059
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
43060
|
+
} | {
|
|
43061
|
+
/** Date and time at which Seam created the warning. */
|
|
43062
|
+
created_at: string;
|
|
43063
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43064
|
+
message: string;
|
|
43065
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43066
|
+
warning_code: 'needs_to_be_reissued';
|
|
42657
43067
|
}>;
|
|
42658
43068
|
/** 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). */
|
|
42659
43069
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42802,6 +43212,13 @@ interface Routes {
|
|
|
42802
43212
|
message: string;
|
|
42803
43213
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42804
43214
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
43215
|
+
} | {
|
|
43216
|
+
/** Date and time at which Seam created the warning. */
|
|
43217
|
+
created_at: string;
|
|
43218
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43219
|
+
message: string;
|
|
43220
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43221
|
+
warning_code: 'needs_to_be_reissued';
|
|
42805
43222
|
}>;
|
|
42806
43223
|
/** 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). */
|
|
42807
43224
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42919,6 +43336,13 @@ interface Routes {
|
|
|
42919
43336
|
message: string;
|
|
42920
43337
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42921
43338
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
43339
|
+
} | {
|
|
43340
|
+
/** Date and time at which Seam created the warning. */
|
|
43341
|
+
created_at: string;
|
|
43342
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43343
|
+
message: string;
|
|
43344
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43345
|
+
warning_code: 'needs_to_be_reissued';
|
|
42922
43346
|
}>;
|
|
42923
43347
|
/** 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). */
|
|
42924
43348
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -43040,6 +43464,13 @@ interface Routes {
|
|
|
43040
43464
|
message: string;
|
|
43041
43465
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43042
43466
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
43467
|
+
} | {
|
|
43468
|
+
/** Date and time at which Seam created the warning. */
|
|
43469
|
+
created_at: string;
|
|
43470
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43471
|
+
message: string;
|
|
43472
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43473
|
+
warning_code: 'needs_to_be_reissued';
|
|
43043
43474
|
}>;
|
|
43044
43475
|
/** 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). */
|
|
43045
43476
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -43165,6 +43596,13 @@ interface Routes {
|
|
|
43165
43596
|
message: string;
|
|
43166
43597
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43167
43598
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
43599
|
+
} | {
|
|
43600
|
+
/** Date and time at which Seam created the warning. */
|
|
43601
|
+
created_at: string;
|
|
43602
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43603
|
+
message: string;
|
|
43604
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43605
|
+
warning_code: 'needs_to_be_reissued';
|
|
43168
43606
|
}>;
|
|
43169
43607
|
/** 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). */
|
|
43170
43608
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -43342,6 +43780,13 @@ interface Routes {
|
|
|
43342
43780
|
message: string;
|
|
43343
43781
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43344
43782
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
43783
|
+
} | {
|
|
43784
|
+
/** Date and time at which Seam created the warning. */
|
|
43785
|
+
created_at: string;
|
|
43786
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43787
|
+
message: string;
|
|
43788
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43789
|
+
warning_code: 'needs_to_be_reissued';
|
|
43345
43790
|
}>;
|
|
43346
43791
|
/** 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). */
|
|
43347
43792
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -43451,6 +43896,13 @@ interface Routes {
|
|
|
43451
43896
|
message: string;
|
|
43452
43897
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43453
43898
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
43899
|
+
} | {
|
|
43900
|
+
/** Date and time at which Seam created the warning. */
|
|
43901
|
+
created_at: string;
|
|
43902
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43903
|
+
message: string;
|
|
43904
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43905
|
+
warning_code: 'needs_to_be_reissued';
|
|
43454
43906
|
}>;
|
|
43455
43907
|
/** 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). */
|
|
43456
43908
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -43569,6 +44021,13 @@ interface Routes {
|
|
|
43569
44021
|
message: string;
|
|
43570
44022
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43571
44023
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
44024
|
+
} | {
|
|
44025
|
+
/** Date and time at which Seam created the warning. */
|
|
44026
|
+
created_at: string;
|
|
44027
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44028
|
+
message: string;
|
|
44029
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44030
|
+
warning_code: 'needs_to_be_reissued';
|
|
43572
44031
|
}>;
|
|
43573
44032
|
/** 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). */
|
|
43574
44033
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -43682,6 +44141,13 @@ interface Routes {
|
|
|
43682
44141
|
message: string;
|
|
43683
44142
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43684
44143
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
44144
|
+
} | {
|
|
44145
|
+
/** Date and time at which Seam created the warning. */
|
|
44146
|
+
created_at: string;
|
|
44147
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44148
|
+
message: string;
|
|
44149
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44150
|
+
warning_code: 'needs_to_be_reissued';
|
|
43685
44151
|
}>;
|
|
43686
44152
|
/** 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). */
|
|
43687
44153
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -43882,6 +44348,13 @@ interface Routes {
|
|
|
43882
44348
|
message: string;
|
|
43883
44349
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43884
44350
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
44351
|
+
} | {
|
|
44352
|
+
/** Date and time at which Seam created the warning. */
|
|
44353
|
+
created_at: string;
|
|
44354
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44355
|
+
message: string;
|
|
44356
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44357
|
+
warning_code: 'needs_to_be_reissued';
|
|
43885
44358
|
}>;
|
|
43886
44359
|
/** 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). */
|
|
43887
44360
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -43975,6 +44448,13 @@ interface Routes {
|
|
|
43975
44448
|
message: string;
|
|
43976
44449
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43977
44450
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
44451
|
+
} | {
|
|
44452
|
+
/** Date and time at which Seam created the warning. */
|
|
44453
|
+
created_at: string;
|
|
44454
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44455
|
+
message: string;
|
|
44456
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44457
|
+
warning_code: 'needs_to_be_reissued';
|
|
43978
44458
|
}>;
|
|
43979
44459
|
/** 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). */
|
|
43980
44460
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44105,6 +44585,13 @@ interface Routes {
|
|
|
44105
44585
|
message: string;
|
|
44106
44586
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44107
44587
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
44588
|
+
} | {
|
|
44589
|
+
/** Date and time at which Seam created the warning. */
|
|
44590
|
+
created_at: string;
|
|
44591
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44592
|
+
message: string;
|
|
44593
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44594
|
+
warning_code: 'needs_to_be_reissued';
|
|
44108
44595
|
}>;
|
|
44109
44596
|
/** 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). */
|
|
44110
44597
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44198,6 +44685,13 @@ interface Routes {
|
|
|
44198
44685
|
message: string;
|
|
44199
44686
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44200
44687
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
44688
|
+
} | {
|
|
44689
|
+
/** Date and time at which Seam created the warning. */
|
|
44690
|
+
created_at: string;
|
|
44691
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44692
|
+
message: string;
|
|
44693
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44694
|
+
warning_code: 'needs_to_be_reissued';
|
|
44201
44695
|
}>;
|
|
44202
44696
|
/** 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). */
|
|
44203
44697
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44734,6 +45228,13 @@ interface Routes {
|
|
|
44734
45228
|
message: string;
|
|
44735
45229
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44736
45230
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
45231
|
+
} | {
|
|
45232
|
+
/** Date and time at which Seam created the warning. */
|
|
45233
|
+
created_at: string;
|
|
45234
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45235
|
+
message: string;
|
|
45236
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45237
|
+
warning_code: 'needs_to_be_reissued';
|
|
44737
45238
|
}>;
|
|
44738
45239
|
/** 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). */
|
|
44739
45240
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44827,6 +45328,13 @@ interface Routes {
|
|
|
44827
45328
|
message: string;
|
|
44828
45329
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44829
45330
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
45331
|
+
} | {
|
|
45332
|
+
/** Date and time at which Seam created the warning. */
|
|
45333
|
+
created_at: string;
|
|
45334
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45335
|
+
message: string;
|
|
45336
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45337
|
+
warning_code: 'needs_to_be_reissued';
|
|
44830
45338
|
}>;
|
|
44831
45339
|
/** 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). */
|
|
44832
45340
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44957,6 +45465,13 @@ interface Routes {
|
|
|
44957
45465
|
message: string;
|
|
44958
45466
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44959
45467
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
45468
|
+
} | {
|
|
45469
|
+
/** Date and time at which Seam created the warning. */
|
|
45470
|
+
created_at: string;
|
|
45471
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45472
|
+
message: string;
|
|
45473
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45474
|
+
warning_code: 'needs_to_be_reissued';
|
|
44960
45475
|
}>;
|
|
44961
45476
|
/** 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). */
|
|
44962
45477
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -45050,6 +45565,13 @@ interface Routes {
|
|
|
45050
45565
|
message: string;
|
|
45051
45566
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45052
45567
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
45568
|
+
} | {
|
|
45569
|
+
/** Date and time at which Seam created the warning. */
|
|
45570
|
+
created_at: string;
|
|
45571
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45572
|
+
message: string;
|
|
45573
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45574
|
+
warning_code: 'needs_to_be_reissued';
|
|
45053
45575
|
}>;
|
|
45054
45576
|
/** 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). */
|
|
45055
45577
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -45672,6 +46194,13 @@ interface Routes {
|
|
|
45672
46194
|
message: string;
|
|
45673
46195
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45674
46196
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
46197
|
+
} | {
|
|
46198
|
+
/** Date and time at which Seam created the warning. */
|
|
46199
|
+
created_at: string;
|
|
46200
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
46201
|
+
message: string;
|
|
46202
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46203
|
+
warning_code: 'needs_to_be_reissued';
|
|
45675
46204
|
}>;
|
|
45676
46205
|
/** 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). */
|
|
45677
46206
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -46966,6 +47495,13 @@ interface Routes {
|
|
|
46966
47495
|
message: string;
|
|
46967
47496
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46968
47497
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
47498
|
+
} | {
|
|
47499
|
+
/** Date and time at which Seam created the warning. */
|
|
47500
|
+
created_at: string;
|
|
47501
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
47502
|
+
message: string;
|
|
47503
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47504
|
+
warning_code: 'needs_to_be_reissued';
|
|
46969
47505
|
}>;
|
|
46970
47506
|
/** 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). */
|
|
46971
47507
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -47059,6 +47595,13 @@ interface Routes {
|
|
|
47059
47595
|
message: string;
|
|
47060
47596
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47061
47597
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
47598
|
+
} | {
|
|
47599
|
+
/** Date and time at which Seam created the warning. */
|
|
47600
|
+
created_at: string;
|
|
47601
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
47602
|
+
message: string;
|
|
47603
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47604
|
+
warning_code: 'needs_to_be_reissued';
|
|
47062
47605
|
}>;
|
|
47063
47606
|
/** 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). */
|
|
47064
47607
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -47189,6 +47732,13 @@ interface Routes {
|
|
|
47189
47732
|
message: string;
|
|
47190
47733
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47191
47734
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
47735
|
+
} | {
|
|
47736
|
+
/** Date and time at which Seam created the warning. */
|
|
47737
|
+
created_at: string;
|
|
47738
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
47739
|
+
message: string;
|
|
47740
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47741
|
+
warning_code: 'needs_to_be_reissued';
|
|
47192
47742
|
}>;
|
|
47193
47743
|
/** 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). */
|
|
47194
47744
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -47282,6 +47832,13 @@ interface Routes {
|
|
|
47282
47832
|
message: string;
|
|
47283
47833
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47284
47834
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
47835
|
+
} | {
|
|
47836
|
+
/** Date and time at which Seam created the warning. */
|
|
47837
|
+
created_at: string;
|
|
47838
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
47839
|
+
message: string;
|
|
47840
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47841
|
+
warning_code: 'needs_to_be_reissued';
|
|
47285
47842
|
}>;
|
|
47286
47843
|
/** 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). */
|
|
47287
47844
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -47770,6 +48327,13 @@ interface Routes {
|
|
|
47770
48327
|
message: string;
|
|
47771
48328
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47772
48329
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
48330
|
+
} | {
|
|
48331
|
+
/** Date and time at which Seam created the warning. */
|
|
48332
|
+
created_at: string;
|
|
48333
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48334
|
+
message: string;
|
|
48335
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48336
|
+
warning_code: 'needs_to_be_reissued';
|
|
47773
48337
|
}>;
|
|
47774
48338
|
/** 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). */
|
|
47775
48339
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -47863,6 +48427,13 @@ interface Routes {
|
|
|
47863
48427
|
message: string;
|
|
47864
48428
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47865
48429
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
48430
|
+
} | {
|
|
48431
|
+
/** Date and time at which Seam created the warning. */
|
|
48432
|
+
created_at: string;
|
|
48433
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48434
|
+
message: string;
|
|
48435
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48436
|
+
warning_code: 'needs_to_be_reissued';
|
|
47866
48437
|
}>;
|
|
47867
48438
|
/** 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). */
|
|
47868
48439
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -47993,6 +48564,13 @@ interface Routes {
|
|
|
47993
48564
|
message: string;
|
|
47994
48565
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47995
48566
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
48567
|
+
} | {
|
|
48568
|
+
/** Date and time at which Seam created the warning. */
|
|
48569
|
+
created_at: string;
|
|
48570
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48571
|
+
message: string;
|
|
48572
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48573
|
+
warning_code: 'needs_to_be_reissued';
|
|
47996
48574
|
}>;
|
|
47997
48575
|
/** 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). */
|
|
47998
48576
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -48086,6 +48664,13 @@ interface Routes {
|
|
|
48086
48664
|
message: string;
|
|
48087
48665
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48088
48666
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
48667
|
+
} | {
|
|
48668
|
+
/** Date and time at which Seam created the warning. */
|
|
48669
|
+
created_at: string;
|
|
48670
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48671
|
+
message: string;
|
|
48672
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48673
|
+
warning_code: 'needs_to_be_reissued';
|
|
48089
48674
|
}>;
|
|
48090
48675
|
/** 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). */
|
|
48091
48676
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -50887,6 +51472,21 @@ interface Routes {
|
|
|
50887
51472
|
acs_system_id: string;
|
|
50888
51473
|
acs_credential_id: string;
|
|
50889
51474
|
event_type: 'acs_credential.issued';
|
|
51475
|
+
} | {
|
|
51476
|
+
/** ID of the event. */
|
|
51477
|
+
event_id: string;
|
|
51478
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
51479
|
+
workspace_id: string;
|
|
51480
|
+
/** Date and time at which the event was created. */
|
|
51481
|
+
created_at: string;
|
|
51482
|
+
/** Date and time at which the event occurred. */
|
|
51483
|
+
occurred_at: string;
|
|
51484
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
51485
|
+
connected_account_id?: string | undefined;
|
|
51486
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
51487
|
+
acs_system_id: string;
|
|
51488
|
+
acs_credential_id: string;
|
|
51489
|
+
event_type: 'acs_credential.reissued';
|
|
50890
51490
|
} | {
|
|
50891
51491
|
/** ID of the event. */
|
|
50892
51492
|
event_id: string;
|
|
@@ -51706,8 +52306,8 @@ interface Routes {
|
|
|
51706
52306
|
acs_system_ids?: string[] | undefined;
|
|
51707
52307
|
access_code_id?: string | undefined;
|
|
51708
52308
|
access_code_ids?: string[] | undefined;
|
|
51709
|
-
event_type?: ('device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.added' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.added' | 'acs_system.connected' | 'acs_system.disconnected' | 'acs_access_group.deleted' | 'acs_user.deleted' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_encoder.added' | 'acs_encoder.removed' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point') | undefined;
|
|
51710
|
-
event_types?: Array<'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.added' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.added' | 'acs_system.connected' | 'acs_system.disconnected' | 'acs_access_group.deleted' | 'acs_user.deleted' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_encoder.added' | 'acs_encoder.removed' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point'> | undefined;
|
|
52309
|
+
event_type?: ('device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.added' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.added' | 'acs_system.connected' | 'acs_system.disconnected' | 'acs_access_group.deleted' | 'acs_user.deleted' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_encoder.added' | 'acs_encoder.removed' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point') | undefined;
|
|
52310
|
+
event_types?: Array<'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.added' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.added' | 'acs_system.connected' | 'acs_system.disconnected' | 'acs_access_group.deleted' | 'acs_user.deleted' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_encoder.added' | 'acs_encoder.removed' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point'> | undefined;
|
|
51711
52311
|
connected_account_id?: string | undefined;
|
|
51712
52312
|
connect_webview_id?: string | undefined;
|
|
51713
52313
|
limit?: number;
|
|
@@ -52065,6 +52665,21 @@ interface Routes {
|
|
|
52065
52665
|
acs_system_id: string;
|
|
52066
52666
|
acs_credential_id: string;
|
|
52067
52667
|
event_type: 'acs_credential.issued';
|
|
52668
|
+
} | {
|
|
52669
|
+
/** ID of the event. */
|
|
52670
|
+
event_id: string;
|
|
52671
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
52672
|
+
workspace_id: string;
|
|
52673
|
+
/** Date and time at which the event was created. */
|
|
52674
|
+
created_at: string;
|
|
52675
|
+
/** Date and time at which the event occurred. */
|
|
52676
|
+
occurred_at: string;
|
|
52677
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
52678
|
+
connected_account_id?: string | undefined;
|
|
52679
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
52680
|
+
acs_system_id: string;
|
|
52681
|
+
acs_credential_id: string;
|
|
52682
|
+
event_type: 'acs_credential.reissued';
|
|
52068
52683
|
} | {
|
|
52069
52684
|
/** ID of the event. */
|
|
52070
52685
|
event_id: string;
|
|
@@ -55420,6 +56035,13 @@ interface Routes {
|
|
|
55420
56035
|
message: string;
|
|
55421
56036
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55422
56037
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
56038
|
+
} | {
|
|
56039
|
+
/** Date and time at which Seam created the warning. */
|
|
56040
|
+
created_at: string;
|
|
56041
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56042
|
+
message: string;
|
|
56043
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56044
|
+
warning_code: 'needs_to_be_reissued';
|
|
55423
56045
|
}>;
|
|
55424
56046
|
/** 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). */
|
|
55425
56047
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55513,6 +56135,13 @@ interface Routes {
|
|
|
55513
56135
|
message: string;
|
|
55514
56136
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55515
56137
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
56138
|
+
} | {
|
|
56139
|
+
/** Date and time at which Seam created the warning. */
|
|
56140
|
+
created_at: string;
|
|
56141
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56142
|
+
message: string;
|
|
56143
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56144
|
+
warning_code: 'needs_to_be_reissued';
|
|
55516
56145
|
}>;
|
|
55517
56146
|
/** 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). */
|
|
55518
56147
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55643,6 +56272,13 @@ interface Routes {
|
|
|
55643
56272
|
message: string;
|
|
55644
56273
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55645
56274
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
56275
|
+
} | {
|
|
56276
|
+
/** Date and time at which Seam created the warning. */
|
|
56277
|
+
created_at: string;
|
|
56278
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56279
|
+
message: string;
|
|
56280
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56281
|
+
warning_code: 'needs_to_be_reissued';
|
|
55646
56282
|
}>;
|
|
55647
56283
|
/** 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). */
|
|
55648
56284
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55736,6 +56372,13 @@ interface Routes {
|
|
|
55736
56372
|
message: string;
|
|
55737
56373
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55738
56374
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
56375
|
+
} | {
|
|
56376
|
+
/** Date and time at which Seam created the warning. */
|
|
56377
|
+
created_at: string;
|
|
56378
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56379
|
+
message: string;
|
|
56380
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56381
|
+
warning_code: 'needs_to_be_reissued';
|
|
55739
56382
|
}>;
|
|
55740
56383
|
/** 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). */
|
|
55741
56384
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56226,6 +56869,13 @@ interface Routes {
|
|
|
56226
56869
|
message: string;
|
|
56227
56870
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56228
56871
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
56872
|
+
} | {
|
|
56873
|
+
/** Date and time at which Seam created the warning. */
|
|
56874
|
+
created_at: string;
|
|
56875
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56876
|
+
message: string;
|
|
56877
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56878
|
+
warning_code: 'needs_to_be_reissued';
|
|
56229
56879
|
}>;
|
|
56230
56880
|
/** 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). */
|
|
56231
56881
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56319,6 +56969,13 @@ interface Routes {
|
|
|
56319
56969
|
message: string;
|
|
56320
56970
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56321
56971
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
56972
|
+
} | {
|
|
56973
|
+
/** Date and time at which Seam created the warning. */
|
|
56974
|
+
created_at: string;
|
|
56975
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56976
|
+
message: string;
|
|
56977
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56978
|
+
warning_code: 'needs_to_be_reissued';
|
|
56322
56979
|
}>;
|
|
56323
56980
|
/** 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). */
|
|
56324
56981
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56449,6 +57106,13 @@ interface Routes {
|
|
|
56449
57106
|
message: string;
|
|
56450
57107
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56451
57108
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
57109
|
+
} | {
|
|
57110
|
+
/** Date and time at which Seam created the warning. */
|
|
57111
|
+
created_at: string;
|
|
57112
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57113
|
+
message: string;
|
|
57114
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57115
|
+
warning_code: 'needs_to_be_reissued';
|
|
56452
57116
|
}>;
|
|
56453
57117
|
/** 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). */
|
|
56454
57118
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56542,6 +57206,13 @@ interface Routes {
|
|
|
56542
57206
|
message: string;
|
|
56543
57207
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56544
57208
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
57209
|
+
} | {
|
|
57210
|
+
/** Date and time at which Seam created the warning. */
|
|
57211
|
+
created_at: string;
|
|
57212
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57213
|
+
message: string;
|
|
57214
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57215
|
+
warning_code: 'needs_to_be_reissued';
|
|
56545
57216
|
}>;
|
|
56546
57217
|
/** 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). */
|
|
56547
57218
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58271,6 +58942,13 @@ interface Routes {
|
|
|
58271
58942
|
message: string;
|
|
58272
58943
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58273
58944
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
58945
|
+
} | {
|
|
58946
|
+
/** Date and time at which Seam created the warning. */
|
|
58947
|
+
created_at: string;
|
|
58948
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58949
|
+
message: string;
|
|
58950
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58951
|
+
warning_code: 'needs_to_be_reissued';
|
|
58274
58952
|
}>;
|
|
58275
58953
|
/** 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). */
|
|
58276
58954
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58364,6 +59042,13 @@ interface Routes {
|
|
|
58364
59042
|
message: string;
|
|
58365
59043
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58366
59044
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
59045
|
+
} | {
|
|
59046
|
+
/** Date and time at which Seam created the warning. */
|
|
59047
|
+
created_at: string;
|
|
59048
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
59049
|
+
message: string;
|
|
59050
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59051
|
+
warning_code: 'needs_to_be_reissued';
|
|
58367
59052
|
}>;
|
|
58368
59053
|
/** 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). */
|
|
58369
59054
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58494,6 +59179,13 @@ interface Routes {
|
|
|
58494
59179
|
message: string;
|
|
58495
59180
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58496
59181
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
59182
|
+
} | {
|
|
59183
|
+
/** Date and time at which Seam created the warning. */
|
|
59184
|
+
created_at: string;
|
|
59185
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
59186
|
+
message: string;
|
|
59187
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59188
|
+
warning_code: 'needs_to_be_reissued';
|
|
58497
59189
|
}>;
|
|
58498
59190
|
/** 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). */
|
|
58499
59191
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58587,6 +59279,13 @@ interface Routes {
|
|
|
58587
59279
|
message: string;
|
|
58588
59280
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58589
59281
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
59282
|
+
} | {
|
|
59283
|
+
/** Date and time at which Seam created the warning. */
|
|
59284
|
+
created_at: string;
|
|
59285
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
59286
|
+
message: string;
|
|
59287
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59288
|
+
warning_code: 'needs_to_be_reissued';
|
|
58590
59289
|
}>;
|
|
58591
59290
|
/** 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). */
|
|
58592
59291
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59088,6 +59787,13 @@ interface Routes {
|
|
|
59088
59787
|
message: string;
|
|
59089
59788
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59090
59789
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
59790
|
+
} | {
|
|
59791
|
+
/** Date and time at which Seam created the warning. */
|
|
59792
|
+
created_at: string;
|
|
59793
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
59794
|
+
message: string;
|
|
59795
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59796
|
+
warning_code: 'needs_to_be_reissued';
|
|
59091
59797
|
}>;
|
|
59092
59798
|
/** 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). */
|
|
59093
59799
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59181,6 +59887,13 @@ interface Routes {
|
|
|
59181
59887
|
message: string;
|
|
59182
59888
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59183
59889
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
59890
|
+
} | {
|
|
59891
|
+
/** Date and time at which Seam created the warning. */
|
|
59892
|
+
created_at: string;
|
|
59893
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
59894
|
+
message: string;
|
|
59895
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59896
|
+
warning_code: 'needs_to_be_reissued';
|
|
59184
59897
|
}>;
|
|
59185
59898
|
/** 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). */
|
|
59186
59899
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59311,6 +60024,13 @@ interface Routes {
|
|
|
59311
60024
|
message: string;
|
|
59312
60025
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59313
60026
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
60027
|
+
} | {
|
|
60028
|
+
/** Date and time at which Seam created the warning. */
|
|
60029
|
+
created_at: string;
|
|
60030
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60031
|
+
message: string;
|
|
60032
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60033
|
+
warning_code: 'needs_to_be_reissued';
|
|
59314
60034
|
}>;
|
|
59315
60035
|
/** 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). */
|
|
59316
60036
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59404,6 +60124,13 @@ interface Routes {
|
|
|
59404
60124
|
message: string;
|
|
59405
60125
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59406
60126
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
60127
|
+
} | {
|
|
60128
|
+
/** Date and time at which Seam created the warning. */
|
|
60129
|
+
created_at: string;
|
|
60130
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60131
|
+
message: string;
|
|
60132
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60133
|
+
warning_code: 'needs_to_be_reissued';
|
|
59407
60134
|
}>;
|
|
59408
60135
|
/** 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). */
|
|
59409
60136
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59944,6 +60671,13 @@ interface Routes {
|
|
|
59944
60671
|
message: string;
|
|
59945
60672
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59946
60673
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
60674
|
+
} | {
|
|
60675
|
+
/** Date and time at which Seam created the warning. */
|
|
60676
|
+
created_at: string;
|
|
60677
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60678
|
+
message: string;
|
|
60679
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60680
|
+
warning_code: 'needs_to_be_reissued';
|
|
59947
60681
|
}>;
|
|
59948
60682
|
/** 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). */
|
|
59949
60683
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60037,6 +60771,13 @@ interface Routes {
|
|
|
60037
60771
|
message: string;
|
|
60038
60772
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60039
60773
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
60774
|
+
} | {
|
|
60775
|
+
/** Date and time at which Seam created the warning. */
|
|
60776
|
+
created_at: string;
|
|
60777
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60778
|
+
message: string;
|
|
60779
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60780
|
+
warning_code: 'needs_to_be_reissued';
|
|
60040
60781
|
}>;
|
|
60041
60782
|
/** 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). */
|
|
60042
60783
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60167,6 +60908,13 @@ interface Routes {
|
|
|
60167
60908
|
message: string;
|
|
60168
60909
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60169
60910
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
60911
|
+
} | {
|
|
60912
|
+
/** Date and time at which Seam created the warning. */
|
|
60913
|
+
created_at: string;
|
|
60914
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60915
|
+
message: string;
|
|
60916
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60917
|
+
warning_code: 'needs_to_be_reissued';
|
|
60170
60918
|
}>;
|
|
60171
60919
|
/** 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). */
|
|
60172
60920
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60260,6 +61008,13 @@ interface Routes {
|
|
|
60260
61008
|
message: string;
|
|
60261
61009
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60262
61010
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
61011
|
+
} | {
|
|
61012
|
+
/** Date and time at which Seam created the warning. */
|
|
61013
|
+
created_at: string;
|
|
61014
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61015
|
+
message: string;
|
|
61016
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61017
|
+
warning_code: 'needs_to_be_reissued';
|
|
60263
61018
|
}>;
|
|
60264
61019
|
/** 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). */
|
|
60265
61020
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61057,6 +61812,13 @@ interface Routes {
|
|
|
61057
61812
|
message: string;
|
|
61058
61813
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61059
61814
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
61815
|
+
} | {
|
|
61816
|
+
/** Date and time at which Seam created the warning. */
|
|
61817
|
+
created_at: string;
|
|
61818
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61819
|
+
message: string;
|
|
61820
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61821
|
+
warning_code: 'needs_to_be_reissued';
|
|
61060
61822
|
}>;
|
|
61061
61823
|
/** 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). */
|
|
61062
61824
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61150,6 +61912,13 @@ interface Routes {
|
|
|
61150
61912
|
message: string;
|
|
61151
61913
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61152
61914
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
61915
|
+
} | {
|
|
61916
|
+
/** Date and time at which Seam created the warning. */
|
|
61917
|
+
created_at: string;
|
|
61918
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61919
|
+
message: string;
|
|
61920
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61921
|
+
warning_code: 'needs_to_be_reissued';
|
|
61153
61922
|
}>;
|
|
61154
61923
|
/** 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). */
|
|
61155
61924
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61280,6 +62049,13 @@ interface Routes {
|
|
|
61280
62049
|
message: string;
|
|
61281
62050
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61282
62051
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
62052
|
+
} | {
|
|
62053
|
+
/** Date and time at which Seam created the warning. */
|
|
62054
|
+
created_at: string;
|
|
62055
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62056
|
+
message: string;
|
|
62057
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62058
|
+
warning_code: 'needs_to_be_reissued';
|
|
61283
62059
|
}>;
|
|
61284
62060
|
/** 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). */
|
|
61285
62061
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61373,6 +62149,13 @@ interface Routes {
|
|
|
61373
62149
|
message: string;
|
|
61374
62150
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61375
62151
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
62152
|
+
} | {
|
|
62153
|
+
/** Date and time at which Seam created the warning. */
|
|
62154
|
+
created_at: string;
|
|
62155
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62156
|
+
message: string;
|
|
62157
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62158
|
+
warning_code: 'needs_to_be_reissued';
|
|
61376
62159
|
}>;
|
|
61377
62160
|
/** 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). */
|
|
61378
62161
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61869,6 +62652,13 @@ interface Routes {
|
|
|
61869
62652
|
message: string;
|
|
61870
62653
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61871
62654
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
62655
|
+
} | {
|
|
62656
|
+
/** Date and time at which Seam created the warning. */
|
|
62657
|
+
created_at: string;
|
|
62658
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62659
|
+
message: string;
|
|
62660
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62661
|
+
warning_code: 'needs_to_be_reissued';
|
|
61872
62662
|
}>;
|
|
61873
62663
|
/** 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). */
|
|
61874
62664
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61962,6 +62752,13 @@ interface Routes {
|
|
|
61962
62752
|
message: string;
|
|
61963
62753
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61964
62754
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
62755
|
+
} | {
|
|
62756
|
+
/** Date and time at which Seam created the warning. */
|
|
62757
|
+
created_at: string;
|
|
62758
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62759
|
+
message: string;
|
|
62760
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62761
|
+
warning_code: 'needs_to_be_reissued';
|
|
61965
62762
|
}>;
|
|
61966
62763
|
/** 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). */
|
|
61967
62764
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62092,6 +62889,13 @@ interface Routes {
|
|
|
62092
62889
|
message: string;
|
|
62093
62890
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62094
62891
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
62892
|
+
} | {
|
|
62893
|
+
/** Date and time at which Seam created the warning. */
|
|
62894
|
+
created_at: string;
|
|
62895
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62896
|
+
message: string;
|
|
62897
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62898
|
+
warning_code: 'needs_to_be_reissued';
|
|
62095
62899
|
}>;
|
|
62096
62900
|
/** 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). */
|
|
62097
62901
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62185,6 +62989,13 @@ interface Routes {
|
|
|
62185
62989
|
message: string;
|
|
62186
62990
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62187
62991
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
62992
|
+
} | {
|
|
62993
|
+
/** Date and time at which Seam created the warning. */
|
|
62994
|
+
created_at: string;
|
|
62995
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62996
|
+
message: string;
|
|
62997
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62998
|
+
warning_code: 'needs_to_be_reissued';
|
|
62188
62999
|
}>;
|
|
62189
63000
|
/** 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). */
|
|
62190
63001
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63323,6 +64134,13 @@ interface Routes {
|
|
|
63323
64134
|
message: string;
|
|
63324
64135
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63325
64136
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
64137
|
+
} | {
|
|
64138
|
+
/** Date and time at which Seam created the warning. */
|
|
64139
|
+
created_at: string;
|
|
64140
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64141
|
+
message: string;
|
|
64142
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64143
|
+
warning_code: 'needs_to_be_reissued';
|
|
63326
64144
|
}>;
|
|
63327
64145
|
/** 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). */
|
|
63328
64146
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63416,6 +64234,13 @@ interface Routes {
|
|
|
63416
64234
|
message: string;
|
|
63417
64235
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63418
64236
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
64237
|
+
} | {
|
|
64238
|
+
/** Date and time at which Seam created the warning. */
|
|
64239
|
+
created_at: string;
|
|
64240
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64241
|
+
message: string;
|
|
64242
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64243
|
+
warning_code: 'needs_to_be_reissued';
|
|
63419
64244
|
}>;
|
|
63420
64245
|
/** 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). */
|
|
63421
64246
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63546,6 +64371,13 @@ interface Routes {
|
|
|
63546
64371
|
message: string;
|
|
63547
64372
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63548
64373
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
64374
|
+
} | {
|
|
64375
|
+
/** Date and time at which Seam created the warning. */
|
|
64376
|
+
created_at: string;
|
|
64377
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64378
|
+
message: string;
|
|
64379
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64380
|
+
warning_code: 'needs_to_be_reissued';
|
|
63549
64381
|
}>;
|
|
63550
64382
|
/** 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). */
|
|
63551
64383
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63639,6 +64471,13 @@ interface Routes {
|
|
|
63639
64471
|
message: string;
|
|
63640
64472
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63641
64473
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
64474
|
+
} | {
|
|
64475
|
+
/** Date and time at which Seam created the warning. */
|
|
64476
|
+
created_at: string;
|
|
64477
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64478
|
+
message: string;
|
|
64479
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64480
|
+
warning_code: 'needs_to_be_reissued';
|
|
63642
64481
|
}>;
|
|
63643
64482
|
/** 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). */
|
|
63644
64483
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64139,6 +64978,13 @@ interface Routes {
|
|
|
64139
64978
|
message: string;
|
|
64140
64979
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64141
64980
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
64981
|
+
} | {
|
|
64982
|
+
/** Date and time at which Seam created the warning. */
|
|
64983
|
+
created_at: string;
|
|
64984
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64985
|
+
message: string;
|
|
64986
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64987
|
+
warning_code: 'needs_to_be_reissued';
|
|
64142
64988
|
}>;
|
|
64143
64989
|
/** 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). */
|
|
64144
64990
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64232,6 +65078,13 @@ interface Routes {
|
|
|
64232
65078
|
message: string;
|
|
64233
65079
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64234
65080
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
65081
|
+
} | {
|
|
65082
|
+
/** Date and time at which Seam created the warning. */
|
|
65083
|
+
created_at: string;
|
|
65084
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65085
|
+
message: string;
|
|
65086
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65087
|
+
warning_code: 'needs_to_be_reissued';
|
|
64235
65088
|
}>;
|
|
64236
65089
|
/** 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). */
|
|
64237
65090
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64362,6 +65215,13 @@ interface Routes {
|
|
|
64362
65215
|
message: string;
|
|
64363
65216
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64364
65217
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
65218
|
+
} | {
|
|
65219
|
+
/** Date and time at which Seam created the warning. */
|
|
65220
|
+
created_at: string;
|
|
65221
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65222
|
+
message: string;
|
|
65223
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65224
|
+
warning_code: 'needs_to_be_reissued';
|
|
64365
65225
|
}>;
|
|
64366
65226
|
/** 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). */
|
|
64367
65227
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64455,6 +65315,13 @@ interface Routes {
|
|
|
64455
65315
|
message: string;
|
|
64456
65316
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64457
65317
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
65318
|
+
} | {
|
|
65319
|
+
/** Date and time at which Seam created the warning. */
|
|
65320
|
+
created_at: string;
|
|
65321
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65322
|
+
message: string;
|
|
65323
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65324
|
+
warning_code: 'needs_to_be_reissued';
|
|
64458
65325
|
}>;
|
|
64459
65326
|
/** 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). */
|
|
64460
65327
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66146,6 +67013,13 @@ interface Routes {
|
|
|
66146
67013
|
message: string;
|
|
66147
67014
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66148
67015
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
67016
|
+
} | {
|
|
67017
|
+
/** Date and time at which Seam created the warning. */
|
|
67018
|
+
created_at: string;
|
|
67019
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67020
|
+
message: string;
|
|
67021
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67022
|
+
warning_code: 'needs_to_be_reissued';
|
|
66149
67023
|
}>;
|
|
66150
67024
|
/** 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). */
|
|
66151
67025
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66239,6 +67113,13 @@ interface Routes {
|
|
|
66239
67113
|
message: string;
|
|
66240
67114
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66241
67115
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
67116
|
+
} | {
|
|
67117
|
+
/** Date and time at which Seam created the warning. */
|
|
67118
|
+
created_at: string;
|
|
67119
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67120
|
+
message: string;
|
|
67121
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67122
|
+
warning_code: 'needs_to_be_reissued';
|
|
66242
67123
|
}>;
|
|
66243
67124
|
/** 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). */
|
|
66244
67125
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66369,6 +67250,13 @@ interface Routes {
|
|
|
66369
67250
|
message: string;
|
|
66370
67251
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66371
67252
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
67253
|
+
} | {
|
|
67254
|
+
/** Date and time at which Seam created the warning. */
|
|
67255
|
+
created_at: string;
|
|
67256
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67257
|
+
message: string;
|
|
67258
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67259
|
+
warning_code: 'needs_to_be_reissued';
|
|
66372
67260
|
}>;
|
|
66373
67261
|
/** 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). */
|
|
66374
67262
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66462,6 +67350,13 @@ interface Routes {
|
|
|
66462
67350
|
message: string;
|
|
66463
67351
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66464
67352
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
67353
|
+
} | {
|
|
67354
|
+
/** Date and time at which Seam created the warning. */
|
|
67355
|
+
created_at: string;
|
|
67356
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67357
|
+
message: string;
|
|
67358
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67359
|
+
warning_code: 'needs_to_be_reissued';
|
|
66465
67360
|
}>;
|
|
66466
67361
|
/** 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). */
|
|
66467
67362
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -67138,6 +68033,13 @@ interface Routes {
|
|
|
67138
68033
|
message: string;
|
|
67139
68034
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67140
68035
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
68036
|
+
} | {
|
|
68037
|
+
/** Date and time at which Seam created the warning. */
|
|
68038
|
+
created_at: string;
|
|
68039
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68040
|
+
message: string;
|
|
68041
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68042
|
+
warning_code: 'needs_to_be_reissued';
|
|
67141
68043
|
}>;
|
|
67142
68044
|
/** 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). */
|
|
67143
68045
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -67231,6 +68133,13 @@ interface Routes {
|
|
|
67231
68133
|
message: string;
|
|
67232
68134
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67233
68135
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
68136
|
+
} | {
|
|
68137
|
+
/** Date and time at which Seam created the warning. */
|
|
68138
|
+
created_at: string;
|
|
68139
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68140
|
+
message: string;
|
|
68141
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68142
|
+
warning_code: 'needs_to_be_reissued';
|
|
67234
68143
|
}>;
|
|
67235
68144
|
/** 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). */
|
|
67236
68145
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -67361,6 +68270,13 @@ interface Routes {
|
|
|
67361
68270
|
message: string;
|
|
67362
68271
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67363
68272
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
68273
|
+
} | {
|
|
68274
|
+
/** Date and time at which Seam created the warning. */
|
|
68275
|
+
created_at: string;
|
|
68276
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68277
|
+
message: string;
|
|
68278
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68279
|
+
warning_code: 'needs_to_be_reissued';
|
|
67364
68280
|
}>;
|
|
67365
68281
|
/** 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). */
|
|
67366
68282
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -67454,6 +68370,13 @@ interface Routes {
|
|
|
67454
68370
|
message: string;
|
|
67455
68371
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67456
68372
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
68373
|
+
} | {
|
|
68374
|
+
/** Date and time at which Seam created the warning. */
|
|
68375
|
+
created_at: string;
|
|
68376
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68377
|
+
message: string;
|
|
68378
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68379
|
+
warning_code: 'needs_to_be_reissued';
|
|
67457
68380
|
}>;
|
|
67458
68381
|
/** 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). */
|
|
67459
68382
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -67973,6 +68896,13 @@ interface Routes {
|
|
|
67973
68896
|
message: string;
|
|
67974
68897
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67975
68898
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
68899
|
+
} | {
|
|
68900
|
+
/** Date and time at which Seam created the warning. */
|
|
68901
|
+
created_at: string;
|
|
68902
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68903
|
+
message: string;
|
|
68904
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68905
|
+
warning_code: 'needs_to_be_reissued';
|
|
67976
68906
|
}>;
|
|
67977
68907
|
/** 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). */
|
|
67978
68908
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -68066,6 +68996,13 @@ interface Routes {
|
|
|
68066
68996
|
message: string;
|
|
68067
68997
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68068
68998
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
68999
|
+
} | {
|
|
69000
|
+
/** Date and time at which Seam created the warning. */
|
|
69001
|
+
created_at: string;
|
|
69002
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
69003
|
+
message: string;
|
|
69004
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69005
|
+
warning_code: 'needs_to_be_reissued';
|
|
68069
69006
|
}>;
|
|
68070
69007
|
/** 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). */
|
|
68071
69008
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -68196,6 +69133,13 @@ interface Routes {
|
|
|
68196
69133
|
message: string;
|
|
68197
69134
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68198
69135
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
69136
|
+
} | {
|
|
69137
|
+
/** Date and time at which Seam created the warning. */
|
|
69138
|
+
created_at: string;
|
|
69139
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
69140
|
+
message: string;
|
|
69141
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69142
|
+
warning_code: 'needs_to_be_reissued';
|
|
68199
69143
|
}>;
|
|
68200
69144
|
/** 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). */
|
|
68201
69145
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -68289,6 +69233,13 @@ interface Routes {
|
|
|
68289
69233
|
message: string;
|
|
68290
69234
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68291
69235
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
69236
|
+
} | {
|
|
69237
|
+
/** Date and time at which Seam created the warning. */
|
|
69238
|
+
created_at: string;
|
|
69239
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
69240
|
+
message: string;
|
|
69241
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69242
|
+
warning_code: 'needs_to_be_reissued';
|
|
68292
69243
|
}>;
|
|
68293
69244
|
/** 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). */
|
|
68294
69245
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -70656,6 +71607,13 @@ interface Routes {
|
|
|
70656
71607
|
message: string;
|
|
70657
71608
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70658
71609
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
71610
|
+
} | {
|
|
71611
|
+
/** Date and time at which Seam created the warning. */
|
|
71612
|
+
created_at: string;
|
|
71613
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71614
|
+
message: string;
|
|
71615
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71616
|
+
warning_code: 'needs_to_be_reissued';
|
|
70659
71617
|
}>;
|
|
70660
71618
|
/** 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). */
|
|
70661
71619
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -70749,6 +71707,13 @@ interface Routes {
|
|
|
70749
71707
|
message: string;
|
|
70750
71708
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70751
71709
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
71710
|
+
} | {
|
|
71711
|
+
/** Date and time at which Seam created the warning. */
|
|
71712
|
+
created_at: string;
|
|
71713
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71714
|
+
message: string;
|
|
71715
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71716
|
+
warning_code: 'needs_to_be_reissued';
|
|
70752
71717
|
}>;
|
|
70753
71718
|
/** 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). */
|
|
70754
71719
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -70879,6 +71844,13 @@ interface Routes {
|
|
|
70879
71844
|
message: string;
|
|
70880
71845
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70881
71846
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
71847
|
+
} | {
|
|
71848
|
+
/** Date and time at which Seam created the warning. */
|
|
71849
|
+
created_at: string;
|
|
71850
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71851
|
+
message: string;
|
|
71852
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71853
|
+
warning_code: 'needs_to_be_reissued';
|
|
70882
71854
|
}>;
|
|
70883
71855
|
/** 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). */
|
|
70884
71856
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -70972,6 +71944,13 @@ interface Routes {
|
|
|
70972
71944
|
message: string;
|
|
70973
71945
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70974
71946
|
warning_code: 'unknown_issue_with_acs_credential';
|
|
71947
|
+
} | {
|
|
71948
|
+
/** Date and time at which Seam created the warning. */
|
|
71949
|
+
created_at: string;
|
|
71950
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71951
|
+
message: string;
|
|
71952
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71953
|
+
warning_code: 'needs_to_be_reissued';
|
|
70975
71954
|
}>;
|
|
70976
71955
|
/** 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). */
|
|
70977
71956
|
is_multi_phone_sync_credential?: boolean | undefined;
|