@seamapi/types 1.554.0 → 1.556.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 +128 -108
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +376 -403
- package/dist/index.cjs +128 -108
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +54 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +24 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +54 -0
- package/lib/seam/connect/models/access-grants/access-method.js +24 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +10 -10
- package/lib/seam/connect/models/batch.d.ts +140 -110
- package/lib/seam/connect/models/events/access-methods.d.ts +4 -71
- package/lib/seam/connect/models/events/access-methods.js +2 -22
- package/lib/seam/connect/models/events/access-methods.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +3 -36
- package/lib/seam/connect/openapi.d.ts +62 -110
- package/lib/seam/connect/openapi.js +65 -69
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +85 -94
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +40 -0
- package/src/lib/seam/connect/models/access-grants/access-method.ts +40 -0
- package/src/lib/seam/connect/models/events/access-methods.ts +2 -29
- package/src/lib/seam/connect/openapi.ts +77 -74
- package/src/lib/seam/connect/route-types.ts +81 -99
|
@@ -1,4 +1,33 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
declare const _access_grant_warning_map: z.ZodObject<{
|
|
3
|
+
being_deleted: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
4
|
+
created_at: z.ZodString;
|
|
5
|
+
message: z.ZodString;
|
|
6
|
+
} & {
|
|
7
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
|
9
|
+
message: string;
|
|
10
|
+
created_at: string;
|
|
11
|
+
warning_code: "being_deleted";
|
|
12
|
+
}, {
|
|
13
|
+
message: string;
|
|
14
|
+
created_at: string;
|
|
15
|
+
warning_code: "being_deleted";
|
|
16
|
+
}>>>;
|
|
17
|
+
}, "strip", z.ZodTypeAny, {
|
|
18
|
+
being_deleted?: {
|
|
19
|
+
message: string;
|
|
20
|
+
created_at: string;
|
|
21
|
+
warning_code: "being_deleted";
|
|
22
|
+
} | null | undefined;
|
|
23
|
+
}, {
|
|
24
|
+
being_deleted?: {
|
|
25
|
+
message: string;
|
|
26
|
+
created_at: string;
|
|
27
|
+
warning_code: "being_deleted";
|
|
28
|
+
} | null | undefined;
|
|
29
|
+
}>;
|
|
30
|
+
export type AccessGrantWarningMap = z.infer<typeof _access_grant_warning_map>;
|
|
2
31
|
export declare const access_grant: z.ZodObject<{
|
|
3
32
|
workspace_id: z.ZodString;
|
|
4
33
|
access_grant_id: z.ZodString;
|
|
@@ -33,6 +62,20 @@ export declare const access_grant: z.ZodObject<{
|
|
|
33
62
|
created_at: z.ZodString;
|
|
34
63
|
starts_at: z.ZodString;
|
|
35
64
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
65
|
+
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
66
|
+
created_at: z.ZodString;
|
|
67
|
+
message: z.ZodString;
|
|
68
|
+
} & {
|
|
69
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
70
|
+
}, "strip", z.ZodTypeAny, {
|
|
71
|
+
message: string;
|
|
72
|
+
created_at: string;
|
|
73
|
+
warning_code: "being_deleted";
|
|
74
|
+
}, {
|
|
75
|
+
message: string;
|
|
76
|
+
created_at: string;
|
|
77
|
+
warning_code: "being_deleted";
|
|
78
|
+
}>]>, "many">;
|
|
36
79
|
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
37
80
|
}, "strip", z.ZodTypeAny, {
|
|
38
81
|
name: string | null;
|
|
@@ -41,6 +84,11 @@ export declare const access_grant: z.ZodObject<{
|
|
|
41
84
|
created_at: string;
|
|
42
85
|
starts_at: string;
|
|
43
86
|
ends_at: string | null;
|
|
87
|
+
warnings: {
|
|
88
|
+
message: string;
|
|
89
|
+
created_at: string;
|
|
90
|
+
warning_code: "being_deleted";
|
|
91
|
+
}[];
|
|
44
92
|
access_grant_id: string;
|
|
45
93
|
user_identity_id: string;
|
|
46
94
|
location_ids: string[];
|
|
@@ -64,6 +112,11 @@ export declare const access_grant: z.ZodObject<{
|
|
|
64
112
|
created_at: string;
|
|
65
113
|
starts_at: string;
|
|
66
114
|
ends_at: string | null;
|
|
115
|
+
warnings: {
|
|
116
|
+
message: string;
|
|
117
|
+
created_at: string;
|
|
118
|
+
warning_code: "being_deleted";
|
|
119
|
+
}[];
|
|
67
120
|
access_grant_id: string;
|
|
68
121
|
user_identity_id: string;
|
|
69
122
|
location_ids: string[];
|
|
@@ -82,3 +135,4 @@ export declare const access_grant: z.ZodObject<{
|
|
|
82
135
|
customization_profile_id?: string | undefined;
|
|
83
136
|
}>;
|
|
84
137
|
export type AccessGrant = z.infer<typeof access_grant>;
|
|
138
|
+
export {};
|
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { requested_access_method } from './requested-access-method.js';
|
|
3
|
+
const common_access_grant_warning = z.object({
|
|
4
|
+
created_at: z
|
|
5
|
+
.string()
|
|
6
|
+
.datetime()
|
|
7
|
+
.describe('Date and time at which Seam created the warning.'),
|
|
8
|
+
message: z
|
|
9
|
+
.string()
|
|
10
|
+
.describe('Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.'),
|
|
11
|
+
});
|
|
12
|
+
const warning_code_description = 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.';
|
|
13
|
+
const being_deleted = common_access_grant_warning
|
|
14
|
+
.extend({
|
|
15
|
+
warning_code: z.literal('being_deleted').describe(warning_code_description),
|
|
16
|
+
})
|
|
17
|
+
.describe('Indicates that the [access grant](https://docs.seam.co/latest/capability-guides/access-grants) is being deleted.');
|
|
18
|
+
const access_grant_warning = z
|
|
19
|
+
.discriminatedUnion('warning_code', [being_deleted])
|
|
20
|
+
.describe('Warning associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants).');
|
|
21
|
+
const _access_grant_warning_map = z.object({
|
|
22
|
+
being_deleted: being_deleted.optional().nullable(),
|
|
23
|
+
});
|
|
3
24
|
export const access_grant = z.object({
|
|
4
25
|
workspace_id: z
|
|
5
26
|
.string()
|
|
@@ -55,6 +76,9 @@ export const access_grant = z.object({
|
|
|
55
76
|
.datetime()
|
|
56
77
|
.nullable()
|
|
57
78
|
.describe('Date and time at which the Access Grant ends.'),
|
|
79
|
+
warnings: z
|
|
80
|
+
.array(access_grant_warning)
|
|
81
|
+
.describe('Warnings associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants).'),
|
|
58
82
|
customization_profile_id: z
|
|
59
83
|
.string()
|
|
60
84
|
.uuid()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-grant.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-grants/access-grant.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAA;AAEtE,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,4DAA4D,CAAC;IACzE,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IACtE,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC;;;;GAIjD,CAAC;IACF,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;SACxB,QAAQ,CAAC,2DAA2D,CAAC;IACxE,wBAAwB,EAAE,CAAC;SACxB,KAAK,CAAC,uBAAuB,CAAC;SAC9B,QAAQ,CAAC,8DAA8D,CAAC;IAC3E,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;SACxB,QAAQ,CAAC,yDAAyD,CAAC;IACtE,oBAAoB,EAAE,CAAC;SACpB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yFAAyF,CAC1F;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,+EAA+E,CAChF;IACH,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC;IACtE,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,EAAE;SACV,QAAQ,CACP,4FAA4F,CAC7F;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,sDAAsD,CAAC;IACnE,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,iDAAiD,CAAC;IAC9D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,+CAA+C,CAAC;IAC5D,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,EAAE;SACV,QAAQ,CACP,mEAAmE,CACpE;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;;GAMT,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"access-grant.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-grants/access-grant.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,33 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
declare const _access_method_warning_map: z.ZodObject<{
|
|
3
|
+
being_deleted: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
4
|
+
created_at: z.ZodString;
|
|
5
|
+
message: z.ZodString;
|
|
6
|
+
} & {
|
|
7
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
|
9
|
+
message: string;
|
|
10
|
+
created_at: string;
|
|
11
|
+
warning_code: "being_deleted";
|
|
12
|
+
}, {
|
|
13
|
+
message: string;
|
|
14
|
+
created_at: string;
|
|
15
|
+
warning_code: "being_deleted";
|
|
16
|
+
}>>>;
|
|
17
|
+
}, "strip", z.ZodTypeAny, {
|
|
18
|
+
being_deleted?: {
|
|
19
|
+
message: string;
|
|
20
|
+
created_at: string;
|
|
21
|
+
warning_code: "being_deleted";
|
|
22
|
+
} | null | undefined;
|
|
23
|
+
}, {
|
|
24
|
+
being_deleted?: {
|
|
25
|
+
message: string;
|
|
26
|
+
created_at: string;
|
|
27
|
+
warning_code: "being_deleted";
|
|
28
|
+
} | null | undefined;
|
|
29
|
+
}>;
|
|
30
|
+
export type AccessMethodWarningMap = z.infer<typeof _access_method_warning_map>;
|
|
2
31
|
export declare const access_method: z.ZodObject<{
|
|
3
32
|
workspace_id: z.ZodString;
|
|
4
33
|
access_method_id: z.ZodString;
|
|
@@ -11,11 +40,30 @@ export declare const access_method: z.ZodObject<{
|
|
|
11
40
|
client_session_token: z.ZodOptional<z.ZodString>;
|
|
12
41
|
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
13
42
|
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
43
|
+
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
44
|
+
created_at: z.ZodString;
|
|
45
|
+
message: z.ZodString;
|
|
46
|
+
} & {
|
|
47
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
48
|
+
}, "strip", z.ZodTypeAny, {
|
|
49
|
+
message: string;
|
|
50
|
+
created_at: string;
|
|
51
|
+
warning_code: "being_deleted";
|
|
52
|
+
}, {
|
|
53
|
+
message: string;
|
|
54
|
+
created_at: string;
|
|
55
|
+
warning_code: "being_deleted";
|
|
56
|
+
}>]>, "many">;
|
|
14
57
|
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
15
58
|
}, "strip", z.ZodTypeAny, {
|
|
16
59
|
display_name: string;
|
|
17
60
|
workspace_id: string;
|
|
18
61
|
created_at: string;
|
|
62
|
+
warnings: {
|
|
63
|
+
message: string;
|
|
64
|
+
created_at: string;
|
|
65
|
+
warning_code: "being_deleted";
|
|
66
|
+
}[];
|
|
19
67
|
mode: "code" | "card" | "mobile_key";
|
|
20
68
|
access_method_id: string;
|
|
21
69
|
issued_at: string | null;
|
|
@@ -29,6 +77,11 @@ export declare const access_method: z.ZodObject<{
|
|
|
29
77
|
display_name: string;
|
|
30
78
|
workspace_id: string;
|
|
31
79
|
created_at: string;
|
|
80
|
+
warnings: {
|
|
81
|
+
message: string;
|
|
82
|
+
created_at: string;
|
|
83
|
+
warning_code: "being_deleted";
|
|
84
|
+
}[];
|
|
32
85
|
mode: "code" | "card" | "mobile_key";
|
|
33
86
|
access_method_id: string;
|
|
34
87
|
issued_at: string | null;
|
|
@@ -40,3 +93,4 @@ export declare const access_method: z.ZodObject<{
|
|
|
40
93
|
is_encoding_required?: boolean | undefined;
|
|
41
94
|
}>;
|
|
42
95
|
export type AccessMethod = z.infer<typeof access_method>;
|
|
96
|
+
export {};
|
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
const common_access_method_warning = z.object({
|
|
3
|
+
created_at: z
|
|
4
|
+
.string()
|
|
5
|
+
.datetime()
|
|
6
|
+
.describe('Date and time at which Seam created the warning.'),
|
|
7
|
+
message: z
|
|
8
|
+
.string()
|
|
9
|
+
.describe('Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.'),
|
|
10
|
+
});
|
|
11
|
+
const warning_code_description = 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.';
|
|
12
|
+
const being_deleted = common_access_method_warning
|
|
13
|
+
.extend({
|
|
14
|
+
warning_code: z.literal('being_deleted').describe(warning_code_description),
|
|
15
|
+
})
|
|
16
|
+
.describe('Indicates that the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods) is being deleted.');
|
|
17
|
+
const access_method_warning = z
|
|
18
|
+
.discriminatedUnion('warning_code', [being_deleted])
|
|
19
|
+
.describe('Warning associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods).');
|
|
20
|
+
const _access_method_warning_map = z.object({
|
|
21
|
+
being_deleted: being_deleted.optional().nullable(),
|
|
22
|
+
});
|
|
2
23
|
export const access_method = z.object({
|
|
3
24
|
workspace_id: z
|
|
4
25
|
.string()
|
|
@@ -39,6 +60,9 @@ export const access_method = z.object({
|
|
|
39
60
|
.nullable()
|
|
40
61
|
.optional()
|
|
41
62
|
.describe('The actual PIN code for code access methods.'),
|
|
63
|
+
warnings: z
|
|
64
|
+
.array(access_method_warning)
|
|
65
|
+
.describe('Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods).'),
|
|
42
66
|
customization_profile_id: z
|
|
43
67
|
.string()
|
|
44
68
|
.uuid()
|
|
@@ -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,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IACxE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oCAAoC,CAAC;IACvE,IAAI,EAAE,CAAC;SACJ,IAAI,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,YAAY,CAAC,CAAC;SACpC,QAAQ,CACP,qEAAqE,CACtE;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,sDAAsD,CAAC;IACnE,SAAS,EAAE,CAAC;SACT,OAAO,EAAE;SACT,QAAQ,CAAC,sDAAsD,CAAC;IACnE,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,oBAAoB,EAAE,CAAC;SACpB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gEAAgE,CAAC;IAC7E,oBAAoB,EAAE,CAAC;SACpB,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,qIAAqI,CACtI;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,8CAA8C,CAAC;IAC3D,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,EAAE;SACV,QAAQ,CACP,oEAAoE,CACrE;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;;GAMT,CAAC,CAAA"}
|
|
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,6IAA6I,CAC9I,CAAA;AAEH,MAAM,qBAAqB,GAAG,CAAC;KAC5B,kBAAkB,CAAC,cAAc,EAAE,CAAC,aAAa,CAAC,CAAC;KACnD,QAAQ,CACP,qIAAqI,CACtI,CAAA;AAEH,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,aAAa,EAAE,aAAa,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CACnD,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IACxE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oCAAoC,CAAC;IACvE,IAAI,EAAE,CAAC;SACJ,IAAI,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,YAAY,CAAC,CAAC;SACpC,QAAQ,CACP,qEAAqE,CACtE;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,sDAAsD,CAAC;IACnE,SAAS,EAAE,CAAC;SACT,OAAO,EAAE;SACT,QAAQ,CAAC,sDAAsD,CAAC;IACnE,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,oBAAoB,EAAE,CAAC;SACpB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gEAAgE,CAAC;IAC7E,oBAAoB,EAAE,CAAC;SACpB,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,qIAAqI,CACtI;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,8CAA8C,CAAC;IAC3D,QAAQ,EAAE,CAAC;SACR,KAAK,CAAC,qBAAqB,CAAC;SAC5B,QAAQ,CACP,sIAAsI,CACvI;IACH,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,EAAE;SACV,QAAQ,CACP,oEAAoE,CACrE;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;;GAMT,CAAC,CAAA"}
|
|
@@ -102,6 +102,11 @@ declare const _acs_credential_warning_map: z.ZodObject<{
|
|
|
102
102
|
warning_code: "needs_to_be_reissued";
|
|
103
103
|
}>>>;
|
|
104
104
|
}, "strip", z.ZodTypeAny, {
|
|
105
|
+
being_deleted?: {
|
|
106
|
+
message: string;
|
|
107
|
+
created_at: string;
|
|
108
|
+
warning_code: "being_deleted";
|
|
109
|
+
} | null | undefined;
|
|
105
110
|
waiting_to_be_issued?: {
|
|
106
111
|
message: string;
|
|
107
112
|
created_at: string;
|
|
@@ -117,11 +122,6 @@ declare const _acs_credential_warning_map: z.ZodObject<{
|
|
|
117
122
|
created_at: string;
|
|
118
123
|
warning_code: "schedule_modified";
|
|
119
124
|
} | null | undefined;
|
|
120
|
-
being_deleted?: {
|
|
121
|
-
message: string;
|
|
122
|
-
created_at: string;
|
|
123
|
-
warning_code: "being_deleted";
|
|
124
|
-
} | null | undefined;
|
|
125
125
|
unknown_issue_with_acs_credential?: {
|
|
126
126
|
message: string;
|
|
127
127
|
created_at: string;
|
|
@@ -133,6 +133,11 @@ declare const _acs_credential_warning_map: z.ZodObject<{
|
|
|
133
133
|
warning_code: "needs_to_be_reissued";
|
|
134
134
|
} | null | undefined;
|
|
135
135
|
}, {
|
|
136
|
+
being_deleted?: {
|
|
137
|
+
message: string;
|
|
138
|
+
created_at: string;
|
|
139
|
+
warning_code: "being_deleted";
|
|
140
|
+
} | null | undefined;
|
|
136
141
|
waiting_to_be_issued?: {
|
|
137
142
|
message: string;
|
|
138
143
|
created_at: string;
|
|
@@ -148,11 +153,6 @@ declare const _acs_credential_warning_map: z.ZodObject<{
|
|
|
148
153
|
created_at: string;
|
|
149
154
|
warning_code: "schedule_modified";
|
|
150
155
|
} | null | undefined;
|
|
151
|
-
being_deleted?: {
|
|
152
|
-
message: string;
|
|
153
|
-
created_at: string;
|
|
154
|
-
warning_code: "being_deleted";
|
|
155
|
-
} | null | undefined;
|
|
156
156
|
unknown_issue_with_acs_credential?: {
|
|
157
157
|
message: string;
|
|
158
158
|
created_at: string;
|