@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
|
@@ -113,19 +113,19 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
113
113
|
created_at: z.ZodString;
|
|
114
114
|
message: z.ZodString;
|
|
115
115
|
}, {
|
|
116
|
-
warning_code: z.ZodLiteral<"
|
|
116
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
117
117
|
}>, "strip", z.ZodTypeAny, {
|
|
118
118
|
message: string;
|
|
119
|
-
warning_code: "
|
|
119
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
120
120
|
created_at: string;
|
|
121
121
|
}, {
|
|
122
122
|
message: string;
|
|
123
|
-
warning_code: "
|
|
123
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
124
124
|
created_at: string;
|
|
125
125
|
}>]>, "many">;
|
|
126
126
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
127
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
128
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
127
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
128
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
129
129
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
130
130
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
131
131
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -180,7 +180,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
180
180
|
created_at: string;
|
|
181
181
|
} | {
|
|
182
182
|
message: string;
|
|
183
|
-
warning_code: "
|
|
183
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
184
184
|
created_at: string;
|
|
185
185
|
})[];
|
|
186
186
|
display_name: string;
|
|
@@ -212,8 +212,8 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
212
212
|
is_issued?: boolean | undefined;
|
|
213
213
|
issued_at?: string | null | undefined;
|
|
214
214
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
215
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
216
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
215
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
216
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
217
217
|
}, {
|
|
218
218
|
created_at: string;
|
|
219
219
|
errors: {
|
|
@@ -238,7 +238,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
238
238
|
created_at: string;
|
|
239
239
|
} | {
|
|
240
240
|
message: string;
|
|
241
|
-
warning_code: "
|
|
241
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
242
242
|
created_at: string;
|
|
243
243
|
})[];
|
|
244
244
|
display_name: string;
|
|
@@ -270,8 +270,8 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
270
270
|
is_issued?: boolean | undefined;
|
|
271
271
|
issued_at?: string | null | undefined;
|
|
272
272
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
273
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
274
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
273
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
274
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
275
275
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
276
276
|
acs_credential_id: z.ZodString;
|
|
277
277
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -357,19 +357,19 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
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 encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
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 encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
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 encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
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 encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
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
|
}>]>;
|
|
520
520
|
}>, "strip", z.ZodTypeAny, {
|
|
521
521
|
error: null;
|
|
@@ -545,7 +545,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
545
545
|
created_at: string;
|
|
546
546
|
} | {
|
|
547
547
|
message: string;
|
|
548
|
-
warning_code: "
|
|
548
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
549
549
|
created_at: string;
|
|
550
550
|
})[];
|
|
551
551
|
display_name: string;
|
|
@@ -577,8 +577,8 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
577
577
|
is_issued?: boolean | undefined;
|
|
578
578
|
issued_at?: string | null | undefined;
|
|
579
579
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
580
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
581
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
580
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
581
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
582
582
|
} | {
|
|
583
583
|
created_at: string;
|
|
584
584
|
errors: {
|
|
@@ -603,7 +603,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
603
603
|
created_at: string;
|
|
604
604
|
} | {
|
|
605
605
|
message: string;
|
|
606
|
-
warning_code: "
|
|
606
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
607
607
|
created_at: string;
|
|
608
608
|
})[];
|
|
609
609
|
display_name: string;
|
|
@@ -635,8 +635,8 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
635
635
|
is_issued?: boolean | undefined;
|
|
636
636
|
issued_at?: string | null | undefined;
|
|
637
637
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
638
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
639
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
638
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
639
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
640
640
|
};
|
|
641
641
|
action_type: "ENCODE_CREDENTIAL";
|
|
642
642
|
}, {
|
|
@@ -667,7 +667,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
667
667
|
created_at: string;
|
|
668
668
|
} | {
|
|
669
669
|
message: string;
|
|
670
|
-
warning_code: "
|
|
670
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
671
671
|
created_at: string;
|
|
672
672
|
})[];
|
|
673
673
|
display_name: string;
|
|
@@ -699,8 +699,8 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
699
699
|
is_issued?: boolean | undefined;
|
|
700
700
|
issued_at?: string | null | undefined;
|
|
701
701
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
702
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
703
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
702
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
703
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
704
704
|
} | {
|
|
705
705
|
created_at: string;
|
|
706
706
|
errors: {
|
|
@@ -725,7 +725,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
725
725
|
created_at: string;
|
|
726
726
|
} | {
|
|
727
727
|
message: string;
|
|
728
|
-
warning_code: "
|
|
728
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
729
729
|
created_at: string;
|
|
730
730
|
})[];
|
|
731
731
|
display_name: string;
|
|
@@ -757,8 +757,8 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
757
757
|
is_issued?: boolean | undefined;
|
|
758
758
|
issued_at?: string | null | undefined;
|
|
759
759
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
760
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
761
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
760
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
761
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
762
762
|
};
|
|
763
763
|
action_type: "ENCODE_CREDENTIAL";
|
|
764
764
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -201,19 +201,19 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
201
201
|
created_at: z.ZodString;
|
|
202
202
|
message: z.ZodString;
|
|
203
203
|
}, {
|
|
204
|
-
warning_code: z.ZodLiteral<"
|
|
204
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
205
205
|
}>, "strip", z.ZodTypeAny, {
|
|
206
206
|
message: string;
|
|
207
|
-
warning_code: "
|
|
207
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
208
208
|
created_at: string;
|
|
209
209
|
}, {
|
|
210
210
|
message: string;
|
|
211
|
-
warning_code: "
|
|
211
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
212
212
|
created_at: string;
|
|
213
213
|
}>]>, "many">;
|
|
214
214
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
215
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
216
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
215
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
216
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
217
217
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
218
218
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
219
219
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -268,7 +268,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
268
268
|
created_at: string;
|
|
269
269
|
} | {
|
|
270
270
|
message: string;
|
|
271
|
-
warning_code: "
|
|
271
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
272
272
|
created_at: string;
|
|
273
273
|
})[];
|
|
274
274
|
display_name: string;
|
|
@@ -300,8 +300,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
300
300
|
is_issued?: boolean | undefined;
|
|
301
301
|
issued_at?: string | null | undefined;
|
|
302
302
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
303
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
304
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
303
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
304
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
305
305
|
}, {
|
|
306
306
|
created_at: string;
|
|
307
307
|
errors: {
|
|
@@ -326,7 +326,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
326
326
|
created_at: string;
|
|
327
327
|
} | {
|
|
328
328
|
message: string;
|
|
329
|
-
warning_code: "
|
|
329
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
330
330
|
created_at: string;
|
|
331
331
|
})[];
|
|
332
332
|
display_name: string;
|
|
@@ -358,8 +358,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
358
358
|
is_issued?: boolean | undefined;
|
|
359
359
|
issued_at?: string | null | undefined;
|
|
360
360
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
361
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
362
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
361
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
362
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
363
363
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
364
364
|
acs_credential_id: z.ZodString;
|
|
365
365
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -445,19 +445,19 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
445
445
|
created_at: z.ZodString;
|
|
446
446
|
message: z.ZodString;
|
|
447
447
|
}, {
|
|
448
|
-
warning_code: z.ZodLiteral<"
|
|
448
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
449
449
|
}>, "strip", z.ZodTypeAny, {
|
|
450
450
|
message: string;
|
|
451
|
-
warning_code: "
|
|
451
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
452
452
|
created_at: string;
|
|
453
453
|
}, {
|
|
454
454
|
message: string;
|
|
455
|
-
warning_code: "
|
|
455
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
456
456
|
created_at: string;
|
|
457
457
|
}>]>, "many">;
|
|
458
458
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
459
|
-
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean
|
|
460
|
-
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString
|
|
459
|
+
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
460
|
+
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
461
461
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
462
462
|
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
463
463
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -512,7 +512,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
512
512
|
created_at: string;
|
|
513
513
|
} | {
|
|
514
514
|
message: string;
|
|
515
|
-
warning_code: "
|
|
515
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
516
516
|
created_at: string;
|
|
517
517
|
})[];
|
|
518
518
|
display_name: string;
|
|
@@ -544,8 +544,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
544
544
|
is_issued?: boolean | undefined;
|
|
545
545
|
issued_at?: string | null | undefined;
|
|
546
546
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
547
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
548
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
547
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
548
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
549
549
|
}, {
|
|
550
550
|
created_at: string;
|
|
551
551
|
errors: {
|
|
@@ -570,7 +570,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
570
570
|
created_at: string;
|
|
571
571
|
} | {
|
|
572
572
|
message: string;
|
|
573
|
-
warning_code: "
|
|
573
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
574
574
|
created_at: string;
|
|
575
575
|
})[];
|
|
576
576
|
display_name: string;
|
|
@@ -602,8 +602,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
602
602
|
is_issued?: boolean | undefined;
|
|
603
603
|
issued_at?: string | null | undefined;
|
|
604
604
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
605
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
606
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
605
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
606
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
607
607
|
}>]>>;
|
|
608
608
|
warnings: z.ZodArray<z.ZodObject<{
|
|
609
609
|
warning_code: z.ZodUnion<[z.ZodLiteral<"acs_credential_on_encoder_out_of_sync">, z.ZodLiteral<"acs_credential_on_seam_not_found">]>;
|
|
@@ -665,7 +665,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
665
665
|
created_at: string;
|
|
666
666
|
} | {
|
|
667
667
|
message: string;
|
|
668
|
-
warning_code: "
|
|
668
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
669
669
|
created_at: string;
|
|
670
670
|
})[];
|
|
671
671
|
display_name: string;
|
|
@@ -697,8 +697,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
697
697
|
is_issued?: boolean | undefined;
|
|
698
698
|
issued_at?: string | null | undefined;
|
|
699
699
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
700
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
701
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
700
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
701
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
702
702
|
} | {
|
|
703
703
|
created_at: string;
|
|
704
704
|
errors: {
|
|
@@ -723,7 +723,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
723
723
|
created_at: string;
|
|
724
724
|
} | {
|
|
725
725
|
message: string;
|
|
726
|
-
warning_code: "
|
|
726
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
727
727
|
created_at: string;
|
|
728
728
|
})[];
|
|
729
729
|
display_name: string;
|
|
@@ -755,8 +755,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
755
755
|
is_issued?: boolean | undefined;
|
|
756
756
|
issued_at?: string | null | undefined;
|
|
757
757
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
758
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
759
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
758
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
759
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
760
760
|
} | null;
|
|
761
761
|
}, {
|
|
762
762
|
warnings: {
|
|
@@ -808,7 +808,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
808
808
|
created_at: string;
|
|
809
809
|
} | {
|
|
810
810
|
message: string;
|
|
811
|
-
warning_code: "
|
|
811
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
812
812
|
created_at: string;
|
|
813
813
|
})[];
|
|
814
814
|
display_name: string;
|
|
@@ -840,8 +840,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
840
840
|
is_issued?: boolean | undefined;
|
|
841
841
|
issued_at?: string | null | undefined;
|
|
842
842
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
843
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
844
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
843
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
844
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
845
845
|
} | {
|
|
846
846
|
created_at: string;
|
|
847
847
|
errors: {
|
|
@@ -866,7 +866,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
866
866
|
created_at: string;
|
|
867
867
|
} | {
|
|
868
868
|
message: string;
|
|
869
|
-
warning_code: "
|
|
869
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
870
870
|
created_at: string;
|
|
871
871
|
})[];
|
|
872
872
|
display_name: string;
|
|
@@ -898,8 +898,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
898
898
|
is_issued?: boolean | undefined;
|
|
899
899
|
issued_at?: string | null | undefined;
|
|
900
900
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
901
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
902
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
901
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
902
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
903
903
|
} | null;
|
|
904
904
|
}>;
|
|
905
905
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -956,7 +956,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
956
956
|
created_at: string;
|
|
957
957
|
} | {
|
|
958
958
|
message: string;
|
|
959
|
-
warning_code: "
|
|
959
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
960
960
|
created_at: string;
|
|
961
961
|
})[];
|
|
962
962
|
display_name: string;
|
|
@@ -988,8 +988,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
988
988
|
is_issued?: boolean | undefined;
|
|
989
989
|
issued_at?: string | null | undefined;
|
|
990
990
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
991
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
992
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
991
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
992
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
993
993
|
} | {
|
|
994
994
|
created_at: string;
|
|
995
995
|
errors: {
|
|
@@ -1014,7 +1014,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1014
1014
|
created_at: string;
|
|
1015
1015
|
} | {
|
|
1016
1016
|
message: string;
|
|
1017
|
-
warning_code: "
|
|
1017
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1018
1018
|
created_at: string;
|
|
1019
1019
|
})[];
|
|
1020
1020
|
display_name: string;
|
|
@@ -1046,8 +1046,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1046
1046
|
is_issued?: boolean | undefined;
|
|
1047
1047
|
issued_at?: string | null | undefined;
|
|
1048
1048
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1049
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1050
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1049
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1050
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1051
1051
|
} | null;
|
|
1052
1052
|
};
|
|
1053
1053
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -1105,7 +1105,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1105
1105
|
created_at: string;
|
|
1106
1106
|
} | {
|
|
1107
1107
|
message: string;
|
|
1108
|
-
warning_code: "
|
|
1108
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1109
1109
|
created_at: string;
|
|
1110
1110
|
})[];
|
|
1111
1111
|
display_name: string;
|
|
@@ -1137,8 +1137,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1137
1137
|
is_issued?: boolean | undefined;
|
|
1138
1138
|
issued_at?: string | null | undefined;
|
|
1139
1139
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1140
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1141
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1140
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1141
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1142
1142
|
} | {
|
|
1143
1143
|
created_at: string;
|
|
1144
1144
|
errors: {
|
|
@@ -1163,7 +1163,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1163
1163
|
created_at: string;
|
|
1164
1164
|
} | {
|
|
1165
1165
|
message: string;
|
|
1166
|
-
warning_code: "
|
|
1166
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1167
1167
|
created_at: string;
|
|
1168
1168
|
})[];
|
|
1169
1169
|
display_name: string;
|
|
@@ -1195,8 +1195,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1195
1195
|
is_issued?: boolean | undefined;
|
|
1196
1196
|
issued_at?: string | null | undefined;
|
|
1197
1197
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1198
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1199
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1198
|
+
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
1199
|
+
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1200
1200
|
} | null;
|
|
1201
1201
|
};
|
|
1202
1202
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -335,6 +335,7 @@ declare const _default: {
|
|
|
335
335
|
};
|
|
336
336
|
is_latest_desired_state_synced_with_provider: {
|
|
337
337
|
description: string;
|
|
338
|
+
nullable: boolean;
|
|
338
339
|
type: string;
|
|
339
340
|
};
|
|
340
341
|
is_managed: {
|
|
@@ -357,6 +358,7 @@ declare const _default: {
|
|
|
357
358
|
latest_desired_state_synced_with_provider_at: {
|
|
358
359
|
description: string;
|
|
359
360
|
format: string;
|
|
361
|
+
nullable: boolean;
|
|
360
362
|
type: string;
|
|
361
363
|
};
|
|
362
364
|
parent_acs_credential_id: {
|
|
@@ -1000,6 +1002,7 @@ declare const _default: {
|
|
|
1000
1002
|
type: string;
|
|
1001
1003
|
};
|
|
1002
1004
|
is_latest_desired_state_synced_with_provider: {
|
|
1005
|
+
nullable: boolean;
|
|
1003
1006
|
type: string;
|
|
1004
1007
|
'x-undocumented': string;
|
|
1005
1008
|
};
|
|
@@ -1013,6 +1016,7 @@ declare const _default: {
|
|
|
1013
1016
|
};
|
|
1014
1017
|
latest_desired_state_synced_with_provider_at: {
|
|
1015
1018
|
format: string;
|
|
1019
|
+
nullable: boolean;
|
|
1016
1020
|
type: string;
|
|
1017
1021
|
'x-undocumented': string;
|
|
1018
1022
|
};
|
|
@@ -1385,6 +1389,7 @@ declare const _default: {
|
|
|
1385
1389
|
};
|
|
1386
1390
|
is_latest_desired_state_synced_with_provider: {
|
|
1387
1391
|
description: string;
|
|
1392
|
+
nullable: boolean;
|
|
1388
1393
|
type: string;
|
|
1389
1394
|
};
|
|
1390
1395
|
is_managed: {
|
|
@@ -1407,6 +1412,7 @@ declare const _default: {
|
|
|
1407
1412
|
latest_desired_state_synced_with_provider_at: {
|
|
1408
1413
|
description: string;
|
|
1409
1414
|
format: string;
|
|
1415
|
+
nullable: boolean;
|
|
1410
1416
|
type: string;
|
|
1411
1417
|
};
|
|
1412
1418
|
parent_acs_credential_id: {
|
|
@@ -1681,6 +1687,7 @@ declare const _default: {
|
|
|
1681
1687
|
};
|
|
1682
1688
|
is_latest_desired_state_synced_with_provider: {
|
|
1683
1689
|
description: string;
|
|
1690
|
+
nullable: boolean;
|
|
1684
1691
|
type: string;
|
|
1685
1692
|
};
|
|
1686
1693
|
is_managed: {
|
|
@@ -1703,6 +1710,7 @@ declare const _default: {
|
|
|
1703
1710
|
latest_desired_state_synced_with_provider_at: {
|
|
1704
1711
|
description: string;
|
|
1705
1712
|
format: string;
|
|
1713
|
+
nullable: boolean;
|
|
1706
1714
|
type: string;
|
|
1707
1715
|
};
|
|
1708
1716
|
parent_acs_credential_id: {
|
|
@@ -10336,6 +10344,18 @@ declare const _default: {
|
|
|
10336
10344
|
description: string;
|
|
10337
10345
|
type: string;
|
|
10338
10346
|
};
|
|
10347
|
+
salto_space_metadata: {
|
|
10348
|
+
description: string;
|
|
10349
|
+
properties: {
|
|
10350
|
+
assign_new_key: {
|
|
10351
|
+
type: string;
|
|
10352
|
+
};
|
|
10353
|
+
update_current_key: {
|
|
10354
|
+
type: string;
|
|
10355
|
+
};
|
|
10356
|
+
};
|
|
10357
|
+
type: string;
|
|
10358
|
+
};
|
|
10339
10359
|
starts_at: {
|
|
10340
10360
|
description: string;
|
|
10341
10361
|
format: string;
|
|
@@ -11139,6 +11159,7 @@ declare const _default: {
|
|
|
11139
11159
|
};
|
|
11140
11160
|
is_latest_desired_state_synced_with_provider: {
|
|
11141
11161
|
description: string;
|
|
11162
|
+
nullable: boolean;
|
|
11142
11163
|
type: string;
|
|
11143
11164
|
};
|
|
11144
11165
|
is_managed: {
|
|
@@ -11161,6 +11182,7 @@ declare const _default: {
|
|
|
11161
11182
|
latest_desired_state_synced_with_provider_at: {
|
|
11162
11183
|
description: string;
|
|
11163
11184
|
format: string;
|
|
11185
|
+
nullable: boolean;
|
|
11164
11186
|
type: string;
|
|
11165
11187
|
};
|
|
11166
11188
|
parent_acs_credential_id: {
|
|
@@ -11446,6 +11468,7 @@ declare const _default: {
|
|
|
11446
11468
|
};
|
|
11447
11469
|
is_latest_desired_state_synced_with_provider: {
|
|
11448
11470
|
description: string;
|
|
11471
|
+
nullable: boolean;
|
|
11449
11472
|
type: string;
|
|
11450
11473
|
};
|
|
11451
11474
|
is_managed: {
|
|
@@ -11468,6 +11491,7 @@ declare const _default: {
|
|
|
11468
11491
|
latest_desired_state_synced_with_provider_at: {
|
|
11469
11492
|
description: string;
|
|
11470
11493
|
format: string;
|
|
11494
|
+
nullable: boolean;
|
|
11471
11495
|
type: string;
|
|
11472
11496
|
};
|
|
11473
11497
|
parent_acs_credential_id: {
|
|
@@ -13853,6 +13877,7 @@ declare const _default: {
|
|
|
13853
13877
|
type: string;
|
|
13854
13878
|
};
|
|
13855
13879
|
is_latest_desired_state_synced_with_provider: {
|
|
13880
|
+
nullable: boolean;
|
|
13856
13881
|
type: string;
|
|
13857
13882
|
'x-undocumented': string;
|
|
13858
13883
|
};
|
|
@@ -13866,6 +13891,7 @@ declare const _default: {
|
|
|
13866
13891
|
};
|
|
13867
13892
|
latest_desired_state_synced_with_provider_at: {
|
|
13868
13893
|
format: string;
|
|
13894
|
+
nullable: boolean;
|
|
13869
13895
|
type: string;
|
|
13870
13896
|
'x-undocumented': string;
|
|
13871
13897
|
};
|
|
@@ -14102,6 +14128,7 @@ declare const _default: {
|
|
|
14102
14128
|
type: string;
|
|
14103
14129
|
};
|
|
14104
14130
|
is_latest_desired_state_synced_with_provider: {
|
|
14131
|
+
nullable: boolean;
|
|
14105
14132
|
type: string;
|
|
14106
14133
|
'x-undocumented': string;
|
|
14107
14134
|
};
|
|
@@ -14115,6 +14142,7 @@ declare const _default: {
|
|
|
14115
14142
|
};
|
|
14116
14143
|
latest_desired_state_synced_with_provider_at: {
|
|
14117
14144
|
format: string;
|
|
14145
|
+
nullable: boolean;
|
|
14118
14146
|
type: string;
|
|
14119
14147
|
'x-undocumented': string;
|
|
14120
14148
|
};
|