@seamapi/types 1.962.0 → 1.963.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 +560 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +976 -4
- package/dist/index.cjs +560 -21
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +143 -0
- package/lib/seam/connect/models/access-grants/access-method.js +36 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +63 -0
- package/lib/seam/connect/models/action-attempts/assign-credential.d.ts +63 -0
- package/lib/seam/connect/models/events/access-methods.d.ts +130 -0
- package/lib/seam/connect/models/events/access-methods.js +18 -0
- package/lib/seam/connect/models/events/access-methods.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +65 -1
- package/lib/seam/connect/openapi.js +490 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +804 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +53 -0
- package/src/lib/seam/connect/models/events/access-methods.ts +20 -0
- package/src/lib/seam/connect/openapi.ts +558 -0
- package/src/lib/seam/connect/route-types.ts +857 -0
|
@@ -45,6 +45,20 @@ declare const _access_method_warning_map: z.ZodObject<{
|
|
|
45
45
|
warning_code: "pulled_backup_access_code";
|
|
46
46
|
original_access_method_id?: string | undefined;
|
|
47
47
|
}>>>;
|
|
48
|
+
delay_in_issuing: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
49
|
+
created_at: z.ZodString;
|
|
50
|
+
message: z.ZodString;
|
|
51
|
+
} & {
|
|
52
|
+
warning_code: z.ZodLiteral<"delay_in_issuing">;
|
|
53
|
+
}, "strip", z.ZodTypeAny, {
|
|
54
|
+
message: string;
|
|
55
|
+
created_at: string;
|
|
56
|
+
warning_code: "delay_in_issuing";
|
|
57
|
+
}, {
|
|
58
|
+
message: string;
|
|
59
|
+
created_at: string;
|
|
60
|
+
warning_code: "delay_in_issuing";
|
|
61
|
+
}>>>;
|
|
48
62
|
}, "strip", z.ZodTypeAny, {
|
|
49
63
|
being_deleted?: {
|
|
50
64
|
message: string;
|
|
@@ -62,6 +76,11 @@ declare const _access_method_warning_map: z.ZodObject<{
|
|
|
62
76
|
warning_code: "pulled_backup_access_code";
|
|
63
77
|
original_access_method_id?: string | undefined;
|
|
64
78
|
} | null | undefined;
|
|
79
|
+
delay_in_issuing?: {
|
|
80
|
+
message: string;
|
|
81
|
+
created_at: string;
|
|
82
|
+
warning_code: "delay_in_issuing";
|
|
83
|
+
} | null | undefined;
|
|
65
84
|
}, {
|
|
66
85
|
being_deleted?: {
|
|
67
86
|
message: string;
|
|
@@ -79,8 +98,42 @@ declare const _access_method_warning_map: z.ZodObject<{
|
|
|
79
98
|
warning_code: "pulled_backup_access_code";
|
|
80
99
|
original_access_method_id?: string | undefined;
|
|
81
100
|
} | null | undefined;
|
|
101
|
+
delay_in_issuing?: {
|
|
102
|
+
message: string;
|
|
103
|
+
created_at: string;
|
|
104
|
+
warning_code: "delay_in_issuing";
|
|
105
|
+
} | null | undefined;
|
|
82
106
|
}>;
|
|
83
107
|
export type AccessMethodWarningMap = z.infer<typeof _access_method_warning_map>;
|
|
108
|
+
declare const _access_method_error_map: z.ZodObject<{
|
|
109
|
+
failed_to_issue: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
110
|
+
created_at: z.ZodString;
|
|
111
|
+
message: z.ZodString;
|
|
112
|
+
} & {
|
|
113
|
+
error_code: z.ZodLiteral<"failed_to_issue">;
|
|
114
|
+
}, "strip", z.ZodTypeAny, {
|
|
115
|
+
message: string;
|
|
116
|
+
created_at: string;
|
|
117
|
+
error_code: "failed_to_issue";
|
|
118
|
+
}, {
|
|
119
|
+
message: string;
|
|
120
|
+
created_at: string;
|
|
121
|
+
error_code: "failed_to_issue";
|
|
122
|
+
}>>>;
|
|
123
|
+
}, "strip", z.ZodTypeAny, {
|
|
124
|
+
failed_to_issue?: {
|
|
125
|
+
message: string;
|
|
126
|
+
created_at: string;
|
|
127
|
+
error_code: "failed_to_issue";
|
|
128
|
+
} | null | undefined;
|
|
129
|
+
}, {
|
|
130
|
+
failed_to_issue?: {
|
|
131
|
+
message: string;
|
|
132
|
+
created_at: string;
|
|
133
|
+
error_code: "failed_to_issue";
|
|
134
|
+
} | null | undefined;
|
|
135
|
+
}>;
|
|
136
|
+
export type AccessMethodErrorMap = z.infer<typeof _access_method_error_map>;
|
|
84
137
|
export declare const access_method_pending_mutations: z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<{
|
|
85
138
|
created_at: z.ZodString;
|
|
86
139
|
message: z.ZodString;
|
|
@@ -501,6 +554,33 @@ export declare const access_method: z.ZodObject<{
|
|
|
501
554
|
created_at: string;
|
|
502
555
|
warning_code: "pulled_backup_access_code";
|
|
503
556
|
original_access_method_id?: string | undefined;
|
|
557
|
+
}>, z.ZodObject<{
|
|
558
|
+
created_at: z.ZodString;
|
|
559
|
+
message: z.ZodString;
|
|
560
|
+
} & {
|
|
561
|
+
warning_code: z.ZodLiteral<"delay_in_issuing">;
|
|
562
|
+
}, "strip", z.ZodTypeAny, {
|
|
563
|
+
message: string;
|
|
564
|
+
created_at: string;
|
|
565
|
+
warning_code: "delay_in_issuing";
|
|
566
|
+
}, {
|
|
567
|
+
message: string;
|
|
568
|
+
created_at: string;
|
|
569
|
+
warning_code: "delay_in_issuing";
|
|
570
|
+
}>]>, "many">;
|
|
571
|
+
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
572
|
+
created_at: z.ZodString;
|
|
573
|
+
message: z.ZodString;
|
|
574
|
+
} & {
|
|
575
|
+
error_code: z.ZodLiteral<"failed_to_issue">;
|
|
576
|
+
}, "strip", z.ZodTypeAny, {
|
|
577
|
+
message: string;
|
|
578
|
+
created_at: string;
|
|
579
|
+
error_code: "failed_to_issue";
|
|
580
|
+
}, {
|
|
581
|
+
message: string;
|
|
582
|
+
created_at: string;
|
|
583
|
+
error_code: "failed_to_issue";
|
|
504
584
|
}>]>, "many">;
|
|
505
585
|
pending_mutations: z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<{
|
|
506
586
|
created_at: z.ZodString;
|
|
@@ -635,6 +715,11 @@ export declare const access_method: z.ZodObject<{
|
|
|
635
715
|
display_name: string;
|
|
636
716
|
workspace_id: string;
|
|
637
717
|
created_at: string;
|
|
718
|
+
errors: {
|
|
719
|
+
message: string;
|
|
720
|
+
created_at: string;
|
|
721
|
+
error_code: "failed_to_issue";
|
|
722
|
+
}[];
|
|
638
723
|
warnings: ({
|
|
639
724
|
message: string;
|
|
640
725
|
created_at: string;
|
|
@@ -648,6 +733,10 @@ export declare const access_method: z.ZodObject<{
|
|
|
648
733
|
created_at: string;
|
|
649
734
|
warning_code: "pulled_backup_access_code";
|
|
650
735
|
original_access_method_id?: string | undefined;
|
|
736
|
+
} | {
|
|
737
|
+
message: string;
|
|
738
|
+
created_at: string;
|
|
739
|
+
warning_code: "delay_in_issuing";
|
|
651
740
|
})[];
|
|
652
741
|
pending_mutations: ({
|
|
653
742
|
message: string;
|
|
@@ -698,6 +787,11 @@ export declare const access_method: z.ZodObject<{
|
|
|
698
787
|
display_name: string;
|
|
699
788
|
workspace_id: string;
|
|
700
789
|
created_at: string;
|
|
790
|
+
errors: {
|
|
791
|
+
message: string;
|
|
792
|
+
created_at: string;
|
|
793
|
+
error_code: "failed_to_issue";
|
|
794
|
+
}[];
|
|
701
795
|
warnings: ({
|
|
702
796
|
message: string;
|
|
703
797
|
created_at: string;
|
|
@@ -711,6 +805,10 @@ export declare const access_method: z.ZodObject<{
|
|
|
711
805
|
created_at: string;
|
|
712
806
|
warning_code: "pulled_backup_access_code";
|
|
713
807
|
original_access_method_id?: string | undefined;
|
|
808
|
+
} | {
|
|
809
|
+
message: string;
|
|
810
|
+
created_at: string;
|
|
811
|
+
warning_code: "delay_in_issuing";
|
|
714
812
|
})[];
|
|
715
813
|
pending_mutations: ({
|
|
716
814
|
message: string;
|
|
@@ -816,6 +914,33 @@ export declare const unmanaged_access_method: z.ZodObject<Omit<{
|
|
|
816
914
|
created_at: string;
|
|
817
915
|
warning_code: "pulled_backup_access_code";
|
|
818
916
|
original_access_method_id?: string | undefined;
|
|
917
|
+
}>, z.ZodObject<{
|
|
918
|
+
created_at: z.ZodString;
|
|
919
|
+
message: z.ZodString;
|
|
920
|
+
} & {
|
|
921
|
+
warning_code: z.ZodLiteral<"delay_in_issuing">;
|
|
922
|
+
}, "strip", z.ZodTypeAny, {
|
|
923
|
+
message: string;
|
|
924
|
+
created_at: string;
|
|
925
|
+
warning_code: "delay_in_issuing";
|
|
926
|
+
}, {
|
|
927
|
+
message: string;
|
|
928
|
+
created_at: string;
|
|
929
|
+
warning_code: "delay_in_issuing";
|
|
930
|
+
}>]>, "many">;
|
|
931
|
+
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
932
|
+
created_at: z.ZodString;
|
|
933
|
+
message: z.ZodString;
|
|
934
|
+
} & {
|
|
935
|
+
error_code: z.ZodLiteral<"failed_to_issue">;
|
|
936
|
+
}, "strip", z.ZodTypeAny, {
|
|
937
|
+
message: string;
|
|
938
|
+
created_at: string;
|
|
939
|
+
error_code: "failed_to_issue";
|
|
940
|
+
}, {
|
|
941
|
+
message: string;
|
|
942
|
+
created_at: string;
|
|
943
|
+
error_code: "failed_to_issue";
|
|
819
944
|
}>]>, "many">;
|
|
820
945
|
pending_mutations: z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<{
|
|
821
946
|
created_at: z.ZodString;
|
|
@@ -950,6 +1075,11 @@ export declare const unmanaged_access_method: z.ZodObject<Omit<{
|
|
|
950
1075
|
display_name: string;
|
|
951
1076
|
workspace_id: string;
|
|
952
1077
|
created_at: string;
|
|
1078
|
+
errors: {
|
|
1079
|
+
message: string;
|
|
1080
|
+
created_at: string;
|
|
1081
|
+
error_code: "failed_to_issue";
|
|
1082
|
+
}[];
|
|
953
1083
|
warnings: ({
|
|
954
1084
|
message: string;
|
|
955
1085
|
created_at: string;
|
|
@@ -963,6 +1093,10 @@ export declare const unmanaged_access_method: z.ZodObject<Omit<{
|
|
|
963
1093
|
created_at: string;
|
|
964
1094
|
warning_code: "pulled_backup_access_code";
|
|
965
1095
|
original_access_method_id?: string | undefined;
|
|
1096
|
+
} | {
|
|
1097
|
+
message: string;
|
|
1098
|
+
created_at: string;
|
|
1099
|
+
warning_code: "delay_in_issuing";
|
|
966
1100
|
})[];
|
|
967
1101
|
pending_mutations: ({
|
|
968
1102
|
message: string;
|
|
@@ -1010,6 +1144,11 @@ export declare const unmanaged_access_method: z.ZodObject<Omit<{
|
|
|
1010
1144
|
display_name: string;
|
|
1011
1145
|
workspace_id: string;
|
|
1012
1146
|
created_at: string;
|
|
1147
|
+
errors: {
|
|
1148
|
+
message: string;
|
|
1149
|
+
created_at: string;
|
|
1150
|
+
error_code: "failed_to_issue";
|
|
1151
|
+
}[];
|
|
1013
1152
|
warnings: ({
|
|
1014
1153
|
message: string;
|
|
1015
1154
|
created_at: string;
|
|
@@ -1023,6 +1162,10 @@ export declare const unmanaged_access_method: z.ZodObject<Omit<{
|
|
|
1023
1162
|
created_at: string;
|
|
1024
1163
|
warning_code: "pulled_backup_access_code";
|
|
1025
1164
|
original_access_method_id?: string | undefined;
|
|
1165
|
+
} | {
|
|
1166
|
+
message: string;
|
|
1167
|
+
created_at: string;
|
|
1168
|
+
warning_code: "delay_in_issuing";
|
|
1026
1169
|
})[];
|
|
1027
1170
|
pending_mutations: ({
|
|
1028
1171
|
message: string;
|
|
@@ -33,11 +33,19 @@ const pulled_backup_access_code_warning = common_access_method_warning
|
|
|
33
33
|
.describe('ID of the original access method from which this backup access method was split, if applicable.'),
|
|
34
34
|
})
|
|
35
35
|
.describe('Indicates that all attempts to create an access code on this device before the start time failed and a backup access code was used to ensure access was provided in time.');
|
|
36
|
+
const delay_in_issuing_warning = common_access_method_warning
|
|
37
|
+
.extend({
|
|
38
|
+
warning_code: z
|
|
39
|
+
.literal('delay_in_issuing')
|
|
40
|
+
.describe(warning_code_description),
|
|
41
|
+
})
|
|
42
|
+
.describe('Indicates that Seam has not yet issued this [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant), even though its access grant is about to begin, so access may not be ready when the recipient arrives. Seam is still attempting to issue it, and this warning clears automatically once issuance succeeds.');
|
|
36
43
|
const access_method_warning = z
|
|
37
44
|
.discriminatedUnion('warning_code', [
|
|
38
45
|
being_deleted,
|
|
39
46
|
updating_access_times_warning,
|
|
40
47
|
pulled_backup_access_code_warning,
|
|
48
|
+
delay_in_issuing_warning,
|
|
41
49
|
])
|
|
42
50
|
.describe('Warning associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant).');
|
|
43
51
|
const _access_method_warning_map = z.object({
|
|
@@ -46,6 +54,31 @@ const _access_method_warning_map = z.object({
|
|
|
46
54
|
pulled_backup_access_code: pulled_backup_access_code_warning
|
|
47
55
|
.optional()
|
|
48
56
|
.nullable(),
|
|
57
|
+
delay_in_issuing: delay_in_issuing_warning.optional().nullable(),
|
|
58
|
+
});
|
|
59
|
+
const common_access_method_error = z.object({
|
|
60
|
+
created_at: z
|
|
61
|
+
.string()
|
|
62
|
+
.datetime()
|
|
63
|
+
.describe('Date and time at which Seam created the error.'),
|
|
64
|
+
message: z
|
|
65
|
+
.string()
|
|
66
|
+
.describe('Detailed description of the error. Provides insights into the issue and potentially how to rectify it.'),
|
|
67
|
+
});
|
|
68
|
+
const error_code_description = 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.';
|
|
69
|
+
const failed_to_issue_error = common_access_method_error.extend({
|
|
70
|
+
error_code: z.literal('failed_to_issue').describe(error_code_description),
|
|
71
|
+
}).describe(`
|
|
72
|
+
---
|
|
73
|
+
resource_type: access_method
|
|
74
|
+
---
|
|
75
|
+
Indicates that Seam was unable to issue this [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant) before its access grant started, so the recipient may be unable to access the space. This usually points to a problem that needs attention, such as an offline or disconnected device. Seam keeps retrying, and this error clears automatically if the access method is eventually issued.
|
|
76
|
+
`);
|
|
77
|
+
const access_method_error = z
|
|
78
|
+
.discriminatedUnion('error_code', [failed_to_issue_error])
|
|
79
|
+
.describe('Error associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant).');
|
|
80
|
+
const _access_method_error_map = z.object({
|
|
81
|
+
failed_to_issue: failed_to_issue_error.optional().nullable(),
|
|
49
82
|
});
|
|
50
83
|
// Pending mutations for access methods
|
|
51
84
|
const common_pending_mutation = z.object({
|
|
@@ -210,6 +243,9 @@ export const access_method = z.object({
|
|
|
210
243
|
warnings: z
|
|
211
244
|
.array(access_method_warning)
|
|
212
245
|
.describe('Warnings associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant).'),
|
|
246
|
+
errors: z
|
|
247
|
+
.array(access_method_error)
|
|
248
|
+
.describe('Errors associated with the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant).'),
|
|
213
249
|
pending_mutations: z
|
|
214
250
|
.array(access_method_pending_mutations)
|
|
215
251
|
.describe('Pending mutations for the [access method](https://docs.seam.co/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress.'),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-method.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-grants/access-method.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,4BAA4B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,0GAA0G,CAC3G;CACJ,CAAC,CAAA;AAEF,MAAM,wBAAwB,GAC5B,sGAAsG,CAAA;AAExG,MAAM,aAAa,GAAG,4BAA4B;KAC/C,MAAM,CAAC;IACN,YAAY,EAAE,CAAC,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,QAAQ,CAAC,wBAAwB,CAAC;CAC5E,CAAC;KACD,QAAQ,CACP,+HAA+H,CAChI,CAAA;AAEH,MAAM,6BAA6B,GAAG,4BAA4B;KAC/D,MAAM,CAAC;IACN,YAAY,EAAE,CAAC;SACZ,OAAO,CAAC,uBAAuB,CAAC;SAChC,QAAQ,CAAC,wBAAwB,CAAC;CACtC,CAAC;KACD,QAAQ,CACP,sJAAsJ,CACvJ,CAAA;AAEH,MAAM,iCAAiC,GAAG,4BAA4B;KACnE,MAAM,CAAC;IACN,YAAY,EAAE,CAAC;SACZ,OAAO,CAAC,2BAA2B,CAAC;SACpC,QAAQ,CAAC,wBAAwB,CAAC;IACrC,yBAAyB,EAAE,CAAC;SACzB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,EAAE;SACV,QAAQ,CACP,iGAAiG,CAClG;CACJ,CAAC;KACD,QAAQ,CACP,2KAA2K,CAC5K,CAAA;AAEH,MAAM,qBAAqB,GAAG,CAAC;KAC5B,kBAAkB,CAAC,cAAc,EAAE;IAClC,aAAa;IACb,6BAA6B;IAC7B,iCAAiC;
|
|
1
|
+
{"version":3,"file":"access-method.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-grants/access-method.ts"],"names":[],"mappings":"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"}
|
|
@@ -3478,6 +3478,33 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3478
3478
|
created_at: string;
|
|
3479
3479
|
warning_code: "pulled_backup_access_code";
|
|
3480
3480
|
original_access_method_id?: string | undefined;
|
|
3481
|
+
}>, z.ZodObject<{
|
|
3482
|
+
created_at: z.ZodString;
|
|
3483
|
+
message: z.ZodString;
|
|
3484
|
+
} & {
|
|
3485
|
+
warning_code: z.ZodLiteral<"delay_in_issuing">;
|
|
3486
|
+
}, "strip", z.ZodTypeAny, {
|
|
3487
|
+
message: string;
|
|
3488
|
+
created_at: string;
|
|
3489
|
+
warning_code: "delay_in_issuing";
|
|
3490
|
+
}, {
|
|
3491
|
+
message: string;
|
|
3492
|
+
created_at: string;
|
|
3493
|
+
warning_code: "delay_in_issuing";
|
|
3494
|
+
}>]>, "many">;
|
|
3495
|
+
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
3496
|
+
created_at: z.ZodString;
|
|
3497
|
+
message: z.ZodString;
|
|
3498
|
+
} & {
|
|
3499
|
+
error_code: z.ZodLiteral<"failed_to_issue">;
|
|
3500
|
+
}, "strip", z.ZodTypeAny, {
|
|
3501
|
+
message: string;
|
|
3502
|
+
created_at: string;
|
|
3503
|
+
error_code: "failed_to_issue";
|
|
3504
|
+
}, {
|
|
3505
|
+
message: string;
|
|
3506
|
+
created_at: string;
|
|
3507
|
+
error_code: "failed_to_issue";
|
|
3481
3508
|
}>]>, "many">;
|
|
3482
3509
|
pending_mutations: z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<{
|
|
3483
3510
|
created_at: z.ZodString;
|
|
@@ -3612,6 +3639,11 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3612
3639
|
display_name: string;
|
|
3613
3640
|
workspace_id: string;
|
|
3614
3641
|
created_at: string;
|
|
3642
|
+
errors: {
|
|
3643
|
+
message: string;
|
|
3644
|
+
created_at: string;
|
|
3645
|
+
error_code: "failed_to_issue";
|
|
3646
|
+
}[];
|
|
3615
3647
|
warnings: ({
|
|
3616
3648
|
message: string;
|
|
3617
3649
|
created_at: string;
|
|
@@ -3625,6 +3657,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3625
3657
|
created_at: string;
|
|
3626
3658
|
warning_code: "pulled_backup_access_code";
|
|
3627
3659
|
original_access_method_id?: string | undefined;
|
|
3660
|
+
} | {
|
|
3661
|
+
message: string;
|
|
3662
|
+
created_at: string;
|
|
3663
|
+
warning_code: "delay_in_issuing";
|
|
3628
3664
|
})[];
|
|
3629
3665
|
pending_mutations: ({
|
|
3630
3666
|
message: string;
|
|
@@ -3675,6 +3711,11 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3675
3711
|
display_name: string;
|
|
3676
3712
|
workspace_id: string;
|
|
3677
3713
|
created_at: string;
|
|
3714
|
+
errors: {
|
|
3715
|
+
message: string;
|
|
3716
|
+
created_at: string;
|
|
3717
|
+
error_code: "failed_to_issue";
|
|
3718
|
+
}[];
|
|
3678
3719
|
warnings: ({
|
|
3679
3720
|
message: string;
|
|
3680
3721
|
created_at: string;
|
|
@@ -3688,6 +3729,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3688
3729
|
created_at: string;
|
|
3689
3730
|
warning_code: "pulled_backup_access_code";
|
|
3690
3731
|
original_access_method_id?: string | undefined;
|
|
3732
|
+
} | {
|
|
3733
|
+
message: string;
|
|
3734
|
+
created_at: string;
|
|
3735
|
+
warning_code: "delay_in_issuing";
|
|
3691
3736
|
})[];
|
|
3692
3737
|
pending_mutations: ({
|
|
3693
3738
|
message: string;
|
|
@@ -3743,6 +3788,11 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3743
3788
|
display_name: string;
|
|
3744
3789
|
workspace_id: string;
|
|
3745
3790
|
created_at: string;
|
|
3791
|
+
errors: {
|
|
3792
|
+
message: string;
|
|
3793
|
+
created_at: string;
|
|
3794
|
+
error_code: "failed_to_issue";
|
|
3795
|
+
}[];
|
|
3746
3796
|
warnings: ({
|
|
3747
3797
|
message: string;
|
|
3748
3798
|
created_at: string;
|
|
@@ -3756,6 +3806,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3756
3806
|
created_at: string;
|
|
3757
3807
|
warning_code: "pulled_backup_access_code";
|
|
3758
3808
|
original_access_method_id?: string | undefined;
|
|
3809
|
+
} | {
|
|
3810
|
+
message: string;
|
|
3811
|
+
created_at: string;
|
|
3812
|
+
warning_code: "delay_in_issuing";
|
|
3759
3813
|
})[];
|
|
3760
3814
|
pending_mutations: ({
|
|
3761
3815
|
message: string;
|
|
@@ -3812,6 +3866,11 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3812
3866
|
display_name: string;
|
|
3813
3867
|
workspace_id: string;
|
|
3814
3868
|
created_at: string;
|
|
3869
|
+
errors: {
|
|
3870
|
+
message: string;
|
|
3871
|
+
created_at: string;
|
|
3872
|
+
error_code: "failed_to_issue";
|
|
3873
|
+
}[];
|
|
3815
3874
|
warnings: ({
|
|
3816
3875
|
message: string;
|
|
3817
3876
|
created_at: string;
|
|
@@ -3825,6 +3884,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3825
3884
|
created_at: string;
|
|
3826
3885
|
warning_code: "pulled_backup_access_code";
|
|
3827
3886
|
original_access_method_id?: string | undefined;
|
|
3887
|
+
} | {
|
|
3888
|
+
message: string;
|
|
3889
|
+
created_at: string;
|
|
3890
|
+
warning_code: "delay_in_issuing";
|
|
3828
3891
|
})[];
|
|
3829
3892
|
pending_mutations: ({
|
|
3830
3893
|
message: string;
|
|
@@ -83,6 +83,33 @@ export declare const assign_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
83
83
|
created_at: string;
|
|
84
84
|
warning_code: "pulled_backup_access_code";
|
|
85
85
|
original_access_method_id?: string | undefined;
|
|
86
|
+
}>, z.ZodObject<{
|
|
87
|
+
created_at: z.ZodString;
|
|
88
|
+
message: z.ZodString;
|
|
89
|
+
} & {
|
|
90
|
+
warning_code: z.ZodLiteral<"delay_in_issuing">;
|
|
91
|
+
}, "strip", z.ZodTypeAny, {
|
|
92
|
+
message: string;
|
|
93
|
+
created_at: string;
|
|
94
|
+
warning_code: "delay_in_issuing";
|
|
95
|
+
}, {
|
|
96
|
+
message: string;
|
|
97
|
+
created_at: string;
|
|
98
|
+
warning_code: "delay_in_issuing";
|
|
99
|
+
}>]>, "many">;
|
|
100
|
+
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
101
|
+
created_at: z.ZodString;
|
|
102
|
+
message: z.ZodString;
|
|
103
|
+
} & {
|
|
104
|
+
error_code: z.ZodLiteral<"failed_to_issue">;
|
|
105
|
+
}, "strip", z.ZodTypeAny, {
|
|
106
|
+
message: string;
|
|
107
|
+
created_at: string;
|
|
108
|
+
error_code: "failed_to_issue";
|
|
109
|
+
}, {
|
|
110
|
+
message: string;
|
|
111
|
+
created_at: string;
|
|
112
|
+
error_code: "failed_to_issue";
|
|
86
113
|
}>]>, "many">;
|
|
87
114
|
pending_mutations: z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<{
|
|
88
115
|
created_at: z.ZodString;
|
|
@@ -217,6 +244,11 @@ export declare const assign_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
217
244
|
display_name: string;
|
|
218
245
|
workspace_id: string;
|
|
219
246
|
created_at: string;
|
|
247
|
+
errors: {
|
|
248
|
+
message: string;
|
|
249
|
+
created_at: string;
|
|
250
|
+
error_code: "failed_to_issue";
|
|
251
|
+
}[];
|
|
220
252
|
warnings: ({
|
|
221
253
|
message: string;
|
|
222
254
|
created_at: string;
|
|
@@ -230,6 +262,10 @@ export declare const assign_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
230
262
|
created_at: string;
|
|
231
263
|
warning_code: "pulled_backup_access_code";
|
|
232
264
|
original_access_method_id?: string | undefined;
|
|
265
|
+
} | {
|
|
266
|
+
message: string;
|
|
267
|
+
created_at: string;
|
|
268
|
+
warning_code: "delay_in_issuing";
|
|
233
269
|
})[];
|
|
234
270
|
pending_mutations: ({
|
|
235
271
|
message: string;
|
|
@@ -280,6 +316,11 @@ export declare const assign_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
280
316
|
display_name: string;
|
|
281
317
|
workspace_id: string;
|
|
282
318
|
created_at: string;
|
|
319
|
+
errors: {
|
|
320
|
+
message: string;
|
|
321
|
+
created_at: string;
|
|
322
|
+
error_code: "failed_to_issue";
|
|
323
|
+
}[];
|
|
283
324
|
warnings: ({
|
|
284
325
|
message: string;
|
|
285
326
|
created_at: string;
|
|
@@ -293,6 +334,10 @@ export declare const assign_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
293
334
|
created_at: string;
|
|
294
335
|
warning_code: "pulled_backup_access_code";
|
|
295
336
|
original_access_method_id?: string | undefined;
|
|
337
|
+
} | {
|
|
338
|
+
message: string;
|
|
339
|
+
created_at: string;
|
|
340
|
+
warning_code: "delay_in_issuing";
|
|
296
341
|
})[];
|
|
297
342
|
pending_mutations: ({
|
|
298
343
|
message: string;
|
|
@@ -348,6 +393,11 @@ export declare const assign_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
348
393
|
display_name: string;
|
|
349
394
|
workspace_id: string;
|
|
350
395
|
created_at: string;
|
|
396
|
+
errors: {
|
|
397
|
+
message: string;
|
|
398
|
+
created_at: string;
|
|
399
|
+
error_code: "failed_to_issue";
|
|
400
|
+
}[];
|
|
351
401
|
warnings: ({
|
|
352
402
|
message: string;
|
|
353
403
|
created_at: string;
|
|
@@ -361,6 +411,10 @@ export declare const assign_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
361
411
|
created_at: string;
|
|
362
412
|
warning_code: "pulled_backup_access_code";
|
|
363
413
|
original_access_method_id?: string | undefined;
|
|
414
|
+
} | {
|
|
415
|
+
message: string;
|
|
416
|
+
created_at: string;
|
|
417
|
+
warning_code: "delay_in_issuing";
|
|
364
418
|
})[];
|
|
365
419
|
pending_mutations: ({
|
|
366
420
|
message: string;
|
|
@@ -417,6 +471,11 @@ export declare const assign_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
417
471
|
display_name: string;
|
|
418
472
|
workspace_id: string;
|
|
419
473
|
created_at: string;
|
|
474
|
+
errors: {
|
|
475
|
+
message: string;
|
|
476
|
+
created_at: string;
|
|
477
|
+
error_code: "failed_to_issue";
|
|
478
|
+
}[];
|
|
420
479
|
warnings: ({
|
|
421
480
|
message: string;
|
|
422
481
|
created_at: string;
|
|
@@ -430,6 +489,10 @@ export declare const assign_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
430
489
|
created_at: string;
|
|
431
490
|
warning_code: "pulled_backup_access_code";
|
|
432
491
|
original_access_method_id?: string | undefined;
|
|
492
|
+
} | {
|
|
493
|
+
message: string;
|
|
494
|
+
created_at: string;
|
|
495
|
+
warning_code: "delay_in_issuing";
|
|
433
496
|
})[];
|
|
434
497
|
pending_mutations: ({
|
|
435
498
|
message: string;
|