@seamapi/types 1.321.0 → 1.322.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 +49 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +443 -410
- package/lib/seam/connect/models/acs/acs-credential.d.ts +34 -34
- package/lib/seam/connect/models/acs/acs-credential.js +6 -4
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +12 -12
- package/lib/seam/connect/models/acs/acs-user.js +5 -2
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +80 -80
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +34 -34
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +46 -46
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +41 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +301 -296
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -4
- package/src/lib/seam/connect/models/acs/acs-user.ts +5 -2
- package/src/lib/seam/connect/openapi.ts +42 -7
- package/src/lib/seam/connect/route-types.ts +371 -296
|
@@ -357,19 +357,19 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
357
357
|
created_at: z.ZodString;
|
|
358
358
|
message: z.ZodString;
|
|
359
359
|
}, {
|
|
360
|
-
warning_code: z.ZodLiteral<"
|
|
360
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
361
361
|
}>, "strip", z.ZodTypeAny, {
|
|
362
362
|
message: string;
|
|
363
|
-
warning_code: "
|
|
363
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
364
364
|
created_at: string;
|
|
365
365
|
}, {
|
|
366
366
|
message: string;
|
|
367
|
-
warning_code: "
|
|
367
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
368
368
|
created_at: string;
|
|
369
369
|
}>]>, "many">;
|
|
370
370
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
371
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
372
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
371
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
372
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
373
373
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
374
374
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
375
375
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -424,7 +424,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
424
424
|
created_at: string;
|
|
425
425
|
} | {
|
|
426
426
|
message: string;
|
|
427
|
-
warning_code: "
|
|
427
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
428
428
|
created_at: string;
|
|
429
429
|
})[];
|
|
430
430
|
display_name: string;
|
|
@@ -456,8 +456,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
456
456
|
is_issued?: boolean | undefined;
|
|
457
457
|
issued_at?: string | null | undefined;
|
|
458
458
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
459
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
460
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
459
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
460
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
461
461
|
}, {
|
|
462
462
|
created_at: string;
|
|
463
463
|
errors: {
|
|
@@ -482,7 +482,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
482
482
|
created_at: string;
|
|
483
483
|
} | {
|
|
484
484
|
message: string;
|
|
485
|
-
warning_code: "
|
|
485
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
486
486
|
created_at: string;
|
|
487
487
|
})[];
|
|
488
488
|
display_name: string;
|
|
@@ -514,8 +514,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
514
514
|
is_issued?: boolean | undefined;
|
|
515
515
|
issued_at?: string | null | undefined;
|
|
516
516
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
517
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
518
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
517
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
518
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
519
519
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
520
520
|
acs_credential_id: z.ZodString;
|
|
521
521
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -601,19 +601,19 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
601
601
|
created_at: z.ZodString;
|
|
602
602
|
message: z.ZodString;
|
|
603
603
|
}, {
|
|
604
|
-
warning_code: z.ZodLiteral<"
|
|
604
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
605
605
|
}>, "strip", z.ZodTypeAny, {
|
|
606
606
|
message: string;
|
|
607
|
-
warning_code: "
|
|
607
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
608
608
|
created_at: string;
|
|
609
609
|
}, {
|
|
610
610
|
message: string;
|
|
611
|
-
warning_code: "
|
|
611
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
612
612
|
created_at: string;
|
|
613
613
|
}>]>, "many">;
|
|
614
614
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
615
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
616
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
615
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
616
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
617
617
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
618
618
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
619
619
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -668,7 +668,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
668
668
|
created_at: string;
|
|
669
669
|
} | {
|
|
670
670
|
message: string;
|
|
671
|
-
warning_code: "
|
|
671
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
672
672
|
created_at: string;
|
|
673
673
|
})[];
|
|
674
674
|
display_name: string;
|
|
@@ -700,8 +700,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
700
700
|
is_issued?: boolean | undefined;
|
|
701
701
|
issued_at?: string | null | undefined;
|
|
702
702
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
703
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
704
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
703
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
704
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
705
705
|
}, {
|
|
706
706
|
created_at: string;
|
|
707
707
|
errors: {
|
|
@@ -726,7 +726,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
726
726
|
created_at: string;
|
|
727
727
|
} | {
|
|
728
728
|
message: string;
|
|
729
|
-
warning_code: "
|
|
729
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
730
730
|
created_at: string;
|
|
731
731
|
})[];
|
|
732
732
|
display_name: string;
|
|
@@ -758,8 +758,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
758
758
|
is_issued?: boolean | undefined;
|
|
759
759
|
issued_at?: string | null | undefined;
|
|
760
760
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
761
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
762
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
761
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
762
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
763
763
|
}>]>>;
|
|
764
764
|
warnings: z.ZodArray<z.ZodObject<{
|
|
765
765
|
warning_code: z.ZodUnion<[z.ZodLiteral<"acs_credential_on_encoder_out_of_sync">, z.ZodLiteral<"acs_credential_on_seam_not_found">]>;
|
|
@@ -821,7 +821,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
821
821
|
created_at: string;
|
|
822
822
|
} | {
|
|
823
823
|
message: string;
|
|
824
|
-
warning_code: "
|
|
824
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
825
825
|
created_at: string;
|
|
826
826
|
})[];
|
|
827
827
|
display_name: string;
|
|
@@ -853,8 +853,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
853
853
|
is_issued?: boolean | undefined;
|
|
854
854
|
issued_at?: string | null | undefined;
|
|
855
855
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
856
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
857
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
856
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
857
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
858
858
|
} | {
|
|
859
859
|
created_at: string;
|
|
860
860
|
errors: {
|
|
@@ -879,7 +879,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
879
879
|
created_at: string;
|
|
880
880
|
} | {
|
|
881
881
|
message: string;
|
|
882
|
-
warning_code: "
|
|
882
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
883
883
|
created_at: string;
|
|
884
884
|
})[];
|
|
885
885
|
display_name: string;
|
|
@@ -911,8 +911,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
911
911
|
is_issued?: boolean | undefined;
|
|
912
912
|
issued_at?: string | null | undefined;
|
|
913
913
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
914
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
915
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
914
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
915
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
916
916
|
} | null;
|
|
917
917
|
}, {
|
|
918
918
|
warnings: {
|
|
@@ -964,7 +964,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
964
964
|
created_at: string;
|
|
965
965
|
} | {
|
|
966
966
|
message: string;
|
|
967
|
-
warning_code: "
|
|
967
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
968
968
|
created_at: string;
|
|
969
969
|
})[];
|
|
970
970
|
display_name: string;
|
|
@@ -996,8 +996,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
996
996
|
is_issued?: boolean | undefined;
|
|
997
997
|
issued_at?: string | null | undefined;
|
|
998
998
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
999
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1000
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
999
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1000
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1001
1001
|
} | {
|
|
1002
1002
|
created_at: string;
|
|
1003
1003
|
errors: {
|
|
@@ -1022,7 +1022,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1022
1022
|
created_at: string;
|
|
1023
1023
|
} | {
|
|
1024
1024
|
message: string;
|
|
1025
|
-
warning_code: "
|
|
1025
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1026
1026
|
created_at: string;
|
|
1027
1027
|
})[];
|
|
1028
1028
|
display_name: string;
|
|
@@ -1054,8 +1054,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1054
1054
|
is_issued?: boolean | undefined;
|
|
1055
1055
|
issued_at?: string | null | undefined;
|
|
1056
1056
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1057
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1058
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1057
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1058
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1059
1059
|
} | null;
|
|
1060
1060
|
}>;
|
|
1061
1061
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1112,7 +1112,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1112
1112
|
created_at: string;
|
|
1113
1113
|
} | {
|
|
1114
1114
|
message: string;
|
|
1115
|
-
warning_code: "
|
|
1115
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1116
1116
|
created_at: string;
|
|
1117
1117
|
})[];
|
|
1118
1118
|
display_name: string;
|
|
@@ -1144,8 +1144,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1144
1144
|
is_issued?: boolean | undefined;
|
|
1145
1145
|
issued_at?: string | null | undefined;
|
|
1146
1146
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1147
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1148
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1147
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1148
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1149
1149
|
} | {
|
|
1150
1150
|
created_at: string;
|
|
1151
1151
|
errors: {
|
|
@@ -1170,7 +1170,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1170
1170
|
created_at: string;
|
|
1171
1171
|
} | {
|
|
1172
1172
|
message: string;
|
|
1173
|
-
warning_code: "
|
|
1173
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1174
1174
|
created_at: string;
|
|
1175
1175
|
})[];
|
|
1176
1176
|
display_name: string;
|
|
@@ -1202,8 +1202,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1202
1202
|
is_issued?: boolean | undefined;
|
|
1203
1203
|
issued_at?: string | null | undefined;
|
|
1204
1204
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1205
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1206
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1205
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1206
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1207
1207
|
} | null;
|
|
1208
1208
|
};
|
|
1209
1209
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -1261,7 +1261,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1261
1261
|
created_at: string;
|
|
1262
1262
|
} | {
|
|
1263
1263
|
message: string;
|
|
1264
|
-
warning_code: "
|
|
1264
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1265
1265
|
created_at: string;
|
|
1266
1266
|
})[];
|
|
1267
1267
|
display_name: string;
|
|
@@ -1293,8 +1293,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1293
1293
|
is_issued?: boolean | undefined;
|
|
1294
1294
|
issued_at?: string | null | undefined;
|
|
1295
1295
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1296
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1297
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1296
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1297
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1298
1298
|
} | {
|
|
1299
1299
|
created_at: string;
|
|
1300
1300
|
errors: {
|
|
@@ -1319,7 +1319,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1319
1319
|
created_at: string;
|
|
1320
1320
|
} | {
|
|
1321
1321
|
message: string;
|
|
1322
|
-
warning_code: "
|
|
1322
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1323
1323
|
created_at: string;
|
|
1324
1324
|
})[];
|
|
1325
1325
|
display_name: string;
|
|
@@ -1351,8 +1351,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1351
1351
|
is_issued?: boolean | undefined;
|
|
1352
1352
|
issued_at?: string | null | undefined;
|
|
1353
1353
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1354
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1355
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1354
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1355
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1356
1356
|
} | null;
|
|
1357
1357
|
};
|
|
1358
1358
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -1536,19 +1536,19 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1536
1536
|
created_at: z.ZodString;
|
|
1537
1537
|
message: z.ZodString;
|
|
1538
1538
|
}, {
|
|
1539
|
-
warning_code: z.ZodLiteral<"
|
|
1539
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
1540
1540
|
}>, "strip", z.ZodTypeAny, {
|
|
1541
1541
|
message: string;
|
|
1542
|
-
warning_code: "
|
|
1542
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1543
1543
|
created_at: string;
|
|
1544
1544
|
}, {
|
|
1545
1545
|
message: string;
|
|
1546
|
-
warning_code: "
|
|
1546
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1547
1547
|
created_at: string;
|
|
1548
1548
|
}>]>, "many">;
|
|
1549
1549
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
1550
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
1551
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
1550
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1551
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1552
1552
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
1553
1553
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
1554
1554
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1603,7 +1603,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1603
1603
|
created_at: string;
|
|
1604
1604
|
} | {
|
|
1605
1605
|
message: string;
|
|
1606
|
-
warning_code: "
|
|
1606
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1607
1607
|
created_at: string;
|
|
1608
1608
|
})[];
|
|
1609
1609
|
display_name: string;
|
|
@@ -1635,8 +1635,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1635
1635
|
is_issued?: boolean | undefined;
|
|
1636
1636
|
issued_at?: string | null | undefined;
|
|
1637
1637
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1638
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1639
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1638
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1639
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1640
1640
|
}, {
|
|
1641
1641
|
created_at: string;
|
|
1642
1642
|
errors: {
|
|
@@ -1661,7 +1661,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1661
1661
|
created_at: string;
|
|
1662
1662
|
} | {
|
|
1663
1663
|
message: string;
|
|
1664
|
-
warning_code: "
|
|
1664
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1665
1665
|
created_at: string;
|
|
1666
1666
|
})[];
|
|
1667
1667
|
display_name: string;
|
|
@@ -1693,8 +1693,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1693
1693
|
is_issued?: boolean | undefined;
|
|
1694
1694
|
issued_at?: string | null | undefined;
|
|
1695
1695
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1696
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1697
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1696
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1697
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1698
1698
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1699
1699
|
acs_credential_id: z.ZodString;
|
|
1700
1700
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1780,19 +1780,19 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1780
1780
|
created_at: z.ZodString;
|
|
1781
1781
|
message: z.ZodString;
|
|
1782
1782
|
}, {
|
|
1783
|
-
warning_code: z.ZodLiteral<"
|
|
1783
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
1784
1784
|
}>, "strip", z.ZodTypeAny, {
|
|
1785
1785
|
message: string;
|
|
1786
|
-
warning_code: "
|
|
1786
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1787
1787
|
created_at: string;
|
|
1788
1788
|
}, {
|
|
1789
1789
|
message: string;
|
|
1790
|
-
warning_code: "
|
|
1790
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1791
1791
|
created_at: string;
|
|
1792
1792
|
}>]>, "many">;
|
|
1793
1793
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
1794
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
1795
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
1794
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1795
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1796
1796
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
1797
1797
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
1798
1798
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1847,7 +1847,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1847
1847
|
created_at: string;
|
|
1848
1848
|
} | {
|
|
1849
1849
|
message: string;
|
|
1850
|
-
warning_code: "
|
|
1850
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1851
1851
|
created_at: string;
|
|
1852
1852
|
})[];
|
|
1853
1853
|
display_name: string;
|
|
@@ -1879,8 +1879,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1879
1879
|
is_issued?: boolean | undefined;
|
|
1880
1880
|
issued_at?: string | null | undefined;
|
|
1881
1881
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1882
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1883
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1882
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1883
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1884
1884
|
}, {
|
|
1885
1885
|
created_at: string;
|
|
1886
1886
|
errors: {
|
|
@@ -1905,7 +1905,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1905
1905
|
created_at: string;
|
|
1906
1906
|
} | {
|
|
1907
1907
|
message: string;
|
|
1908
|
-
warning_code: "
|
|
1908
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1909
1909
|
created_at: string;
|
|
1910
1910
|
})[];
|
|
1911
1911
|
display_name: string;
|
|
@@ -1937,8 +1937,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1937
1937
|
is_issued?: boolean | undefined;
|
|
1938
1938
|
issued_at?: string | null | undefined;
|
|
1939
1939
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1940
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1941
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1940
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1941
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1942
1942
|
}>]>;
|
|
1943
1943
|
}>, "strip", z.ZodTypeAny, {
|
|
1944
1944
|
error: null;
|
|
@@ -1968,7 +1968,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1968
1968
|
created_at: string;
|
|
1969
1969
|
} | {
|
|
1970
1970
|
message: string;
|
|
1971
|
-
warning_code: "
|
|
1971
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1972
1972
|
created_at: string;
|
|
1973
1973
|
})[];
|
|
1974
1974
|
display_name: string;
|
|
@@ -2000,8 +2000,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2000
2000
|
is_issued?: boolean | undefined;
|
|
2001
2001
|
issued_at?: string | null | undefined;
|
|
2002
2002
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2003
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2004
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2003
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2004
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2005
2005
|
} | {
|
|
2006
2006
|
created_at: string;
|
|
2007
2007
|
errors: {
|
|
@@ -2026,7 +2026,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2026
2026
|
created_at: string;
|
|
2027
2027
|
} | {
|
|
2028
2028
|
message: string;
|
|
2029
|
-
warning_code: "
|
|
2029
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2030
2030
|
created_at: string;
|
|
2031
2031
|
})[];
|
|
2032
2032
|
display_name: string;
|
|
@@ -2058,8 +2058,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2058
2058
|
is_issued?: boolean | undefined;
|
|
2059
2059
|
issued_at?: string | null | undefined;
|
|
2060
2060
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2061
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2062
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2061
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2062
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2063
2063
|
};
|
|
2064
2064
|
action_type: "ENCODE_CREDENTIAL";
|
|
2065
2065
|
}, {
|
|
@@ -2090,7 +2090,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2090
2090
|
created_at: string;
|
|
2091
2091
|
} | {
|
|
2092
2092
|
message: string;
|
|
2093
|
-
warning_code: "
|
|
2093
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2094
2094
|
created_at: string;
|
|
2095
2095
|
})[];
|
|
2096
2096
|
display_name: string;
|
|
@@ -2122,8 +2122,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2122
2122
|
is_issued?: boolean | undefined;
|
|
2123
2123
|
issued_at?: string | null | undefined;
|
|
2124
2124
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2125
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2126
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2125
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2126
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2127
2127
|
} | {
|
|
2128
2128
|
created_at: string;
|
|
2129
2129
|
errors: {
|
|
@@ -2148,7 +2148,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2148
2148
|
created_at: string;
|
|
2149
2149
|
} | {
|
|
2150
2150
|
message: string;
|
|
2151
|
-
warning_code: "
|
|
2151
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2152
2152
|
created_at: string;
|
|
2153
2153
|
})[];
|
|
2154
2154
|
display_name: string;
|
|
@@ -2180,8 +2180,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2180
2180
|
is_issued?: boolean | undefined;
|
|
2181
2181
|
issued_at?: string | null | undefined;
|
|
2182
2182
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2183
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2184
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2183
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
2184
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2185
2185
|
};
|
|
2186
2186
|
action_type: "ENCODE_CREDENTIAL";
|
|
2187
2187
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|