@seamapi/types 1.294.1 → 1.296.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 +760 -50
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3342 -298
- package/lib/seam/connect/models/acs/acs-credential.d.ts +264 -24
- package/lib/seam/connect/models/acs/acs-credential.js +59 -6
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +2 -1
- package/lib/seam/connect/models/acs/acs-encoder.js +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +516 -84
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +226 -36
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +290 -48
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +115 -45
- package/lib/seam/connect/openapi.js +721 -42
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2496 -93
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +80 -12
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +851 -42
- package/src/lib/seam/connect/route-types.ts +3338 -488
|
@@ -2,6 +2,107 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const acs_credential_external_type: z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>;
|
|
3
3
|
export declare const acs_credential_access_method_type: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
4
4
|
export type AcsCredentialExternalType = z.infer<typeof acs_credential_external_type>;
|
|
5
|
+
declare const acs_credential_warning_map: z.ZodObject<{
|
|
6
|
+
waiting_to_be_issued: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
7
|
+
created_at: z.ZodString;
|
|
8
|
+
message: z.ZodString;
|
|
9
|
+
}, {
|
|
10
|
+
warning_code: z.ZodLiteral<"waiting_to_be_issued">;
|
|
11
|
+
}>, "strip", z.ZodTypeAny, {
|
|
12
|
+
message: string;
|
|
13
|
+
warning_code: "waiting_to_be_issued";
|
|
14
|
+
created_at: string;
|
|
15
|
+
}, {
|
|
16
|
+
message: string;
|
|
17
|
+
warning_code: "waiting_to_be_issued";
|
|
18
|
+
created_at: string;
|
|
19
|
+
}>>>;
|
|
20
|
+
schedule_externally_modified: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
21
|
+
created_at: z.ZodString;
|
|
22
|
+
message: z.ZodString;
|
|
23
|
+
}, {
|
|
24
|
+
warning_code: z.ZodLiteral<"schedule_externally_modified">;
|
|
25
|
+
}>, "strip", z.ZodTypeAny, {
|
|
26
|
+
message: string;
|
|
27
|
+
warning_code: "schedule_externally_modified";
|
|
28
|
+
created_at: string;
|
|
29
|
+
}, {
|
|
30
|
+
message: string;
|
|
31
|
+
warning_code: "schedule_externally_modified";
|
|
32
|
+
created_at: string;
|
|
33
|
+
}>>>;
|
|
34
|
+
schedule_modified: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
35
|
+
created_at: z.ZodString;
|
|
36
|
+
message: z.ZodString;
|
|
37
|
+
}, {
|
|
38
|
+
warning_code: z.ZodLiteral<"schedule_modified">;
|
|
39
|
+
}>, "strip", z.ZodTypeAny, {
|
|
40
|
+
message: string;
|
|
41
|
+
warning_code: "schedule_modified";
|
|
42
|
+
created_at: string;
|
|
43
|
+
}, {
|
|
44
|
+
message: string;
|
|
45
|
+
warning_code: "schedule_modified";
|
|
46
|
+
created_at: string;
|
|
47
|
+
}>>>;
|
|
48
|
+
being_deleted: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
49
|
+
created_at: z.ZodString;
|
|
50
|
+
message: z.ZodString;
|
|
51
|
+
}, {
|
|
52
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
53
|
+
}>, "strip", z.ZodTypeAny, {
|
|
54
|
+
message: string;
|
|
55
|
+
warning_code: "being_deleted";
|
|
56
|
+
created_at: string;
|
|
57
|
+
}, {
|
|
58
|
+
message: string;
|
|
59
|
+
warning_code: "being_deleted";
|
|
60
|
+
created_at: string;
|
|
61
|
+
}>>>;
|
|
62
|
+
}, "strip", z.ZodTypeAny, {
|
|
63
|
+
waiting_to_be_issued?: {
|
|
64
|
+
message: string;
|
|
65
|
+
warning_code: "waiting_to_be_issued";
|
|
66
|
+
created_at: string;
|
|
67
|
+
} | null | undefined;
|
|
68
|
+
schedule_externally_modified?: {
|
|
69
|
+
message: string;
|
|
70
|
+
warning_code: "schedule_externally_modified";
|
|
71
|
+
created_at: string;
|
|
72
|
+
} | null | undefined;
|
|
73
|
+
schedule_modified?: {
|
|
74
|
+
message: string;
|
|
75
|
+
warning_code: "schedule_modified";
|
|
76
|
+
created_at: string;
|
|
77
|
+
} | null | undefined;
|
|
78
|
+
being_deleted?: {
|
|
79
|
+
message: string;
|
|
80
|
+
warning_code: "being_deleted";
|
|
81
|
+
created_at: string;
|
|
82
|
+
} | null | undefined;
|
|
83
|
+
}, {
|
|
84
|
+
waiting_to_be_issued?: {
|
|
85
|
+
message: string;
|
|
86
|
+
warning_code: "waiting_to_be_issued";
|
|
87
|
+
created_at: string;
|
|
88
|
+
} | null | undefined;
|
|
89
|
+
schedule_externally_modified?: {
|
|
90
|
+
message: string;
|
|
91
|
+
warning_code: "schedule_externally_modified";
|
|
92
|
+
created_at: string;
|
|
93
|
+
} | null | undefined;
|
|
94
|
+
schedule_modified?: {
|
|
95
|
+
message: string;
|
|
96
|
+
warning_code: "schedule_modified";
|
|
97
|
+
created_at: string;
|
|
98
|
+
} | null | undefined;
|
|
99
|
+
being_deleted?: {
|
|
100
|
+
message: string;
|
|
101
|
+
warning_code: "being_deleted";
|
|
102
|
+
created_at: string;
|
|
103
|
+
} | null | undefined;
|
|
104
|
+
}>;
|
|
105
|
+
export type AcsCredentialWarningMap = z.infer<typeof acs_credential_warning_map>;
|
|
5
106
|
export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
6
107
|
acs_credential_id: z.ZodString;
|
|
7
108
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -30,16 +131,59 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
30
131
|
message: string;
|
|
31
132
|
error_code: string;
|
|
32
133
|
}>, "many">;
|
|
33
|
-
warnings: z.ZodArray<z.ZodObject<{
|
|
34
|
-
|
|
134
|
+
warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
135
|
+
created_at: z.ZodString;
|
|
35
136
|
message: z.ZodString;
|
|
36
|
-
},
|
|
137
|
+
}, {
|
|
138
|
+
warning_code: z.ZodLiteral<"waiting_to_be_issued">;
|
|
139
|
+
}>, "strip", z.ZodTypeAny, {
|
|
37
140
|
message: string;
|
|
38
|
-
warning_code:
|
|
141
|
+
warning_code: "waiting_to_be_issued";
|
|
142
|
+
created_at: string;
|
|
39
143
|
}, {
|
|
40
144
|
message: string;
|
|
41
|
-
warning_code:
|
|
42
|
-
|
|
145
|
+
warning_code: "waiting_to_be_issued";
|
|
146
|
+
created_at: string;
|
|
147
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
148
|
+
created_at: z.ZodString;
|
|
149
|
+
message: z.ZodString;
|
|
150
|
+
}, {
|
|
151
|
+
warning_code: z.ZodLiteral<"schedule_externally_modified">;
|
|
152
|
+
}>, "strip", z.ZodTypeAny, {
|
|
153
|
+
message: string;
|
|
154
|
+
warning_code: "schedule_externally_modified";
|
|
155
|
+
created_at: string;
|
|
156
|
+
}, {
|
|
157
|
+
message: string;
|
|
158
|
+
warning_code: "schedule_externally_modified";
|
|
159
|
+
created_at: string;
|
|
160
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
161
|
+
created_at: z.ZodString;
|
|
162
|
+
message: z.ZodString;
|
|
163
|
+
}, {
|
|
164
|
+
warning_code: z.ZodLiteral<"schedule_modified">;
|
|
165
|
+
}>, "strip", z.ZodTypeAny, {
|
|
166
|
+
message: string;
|
|
167
|
+
warning_code: "schedule_modified";
|
|
168
|
+
created_at: string;
|
|
169
|
+
}, {
|
|
170
|
+
message: string;
|
|
171
|
+
warning_code: "schedule_modified";
|
|
172
|
+
created_at: string;
|
|
173
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
174
|
+
created_at: z.ZodString;
|
|
175
|
+
message: z.ZodString;
|
|
176
|
+
}, {
|
|
177
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
178
|
+
}>, "strip", z.ZodTypeAny, {
|
|
179
|
+
message: string;
|
|
180
|
+
warning_code: "being_deleted";
|
|
181
|
+
created_at: string;
|
|
182
|
+
}, {
|
|
183
|
+
message: string;
|
|
184
|
+
warning_code: "being_deleted";
|
|
185
|
+
created_at: string;
|
|
186
|
+
}>]>, "many">;
|
|
43
187
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
44
188
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
45
189
|
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString>;
|
|
@@ -79,10 +223,23 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
79
223
|
message: string;
|
|
80
224
|
error_code: string;
|
|
81
225
|
}[];
|
|
82
|
-
warnings: {
|
|
226
|
+
warnings: ({
|
|
83
227
|
message: string;
|
|
84
|
-
warning_code:
|
|
85
|
-
|
|
228
|
+
warning_code: "waiting_to_be_issued";
|
|
229
|
+
created_at: string;
|
|
230
|
+
} | {
|
|
231
|
+
message: string;
|
|
232
|
+
warning_code: "schedule_externally_modified";
|
|
233
|
+
created_at: string;
|
|
234
|
+
} | {
|
|
235
|
+
message: string;
|
|
236
|
+
warning_code: "schedule_modified";
|
|
237
|
+
created_at: string;
|
|
238
|
+
} | {
|
|
239
|
+
message: string;
|
|
240
|
+
warning_code: "being_deleted";
|
|
241
|
+
created_at: string;
|
|
242
|
+
})[];
|
|
86
243
|
display_name: string;
|
|
87
244
|
workspace_id: string;
|
|
88
245
|
is_managed: true;
|
|
@@ -119,10 +276,23 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
119
276
|
message: string;
|
|
120
277
|
error_code: string;
|
|
121
278
|
}[];
|
|
122
|
-
warnings: {
|
|
279
|
+
warnings: ({
|
|
123
280
|
message: string;
|
|
124
|
-
warning_code:
|
|
125
|
-
|
|
281
|
+
warning_code: "waiting_to_be_issued";
|
|
282
|
+
created_at: string;
|
|
283
|
+
} | {
|
|
284
|
+
message: string;
|
|
285
|
+
warning_code: "schedule_externally_modified";
|
|
286
|
+
created_at: string;
|
|
287
|
+
} | {
|
|
288
|
+
message: string;
|
|
289
|
+
warning_code: "schedule_modified";
|
|
290
|
+
created_at: string;
|
|
291
|
+
} | {
|
|
292
|
+
message: string;
|
|
293
|
+
warning_code: "being_deleted";
|
|
294
|
+
created_at: string;
|
|
295
|
+
})[];
|
|
126
296
|
display_name: string;
|
|
127
297
|
workspace_id: string;
|
|
128
298
|
is_managed: true;
|
|
@@ -182,16 +352,59 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
182
352
|
message: string;
|
|
183
353
|
error_code: string;
|
|
184
354
|
}>, "many">;
|
|
185
|
-
warnings: z.ZodArray<z.ZodObject<{
|
|
186
|
-
|
|
355
|
+
warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
356
|
+
created_at: z.ZodString;
|
|
187
357
|
message: z.ZodString;
|
|
188
|
-
},
|
|
358
|
+
}, {
|
|
359
|
+
warning_code: z.ZodLiteral<"waiting_to_be_issued">;
|
|
360
|
+
}>, "strip", z.ZodTypeAny, {
|
|
189
361
|
message: string;
|
|
190
|
-
warning_code:
|
|
362
|
+
warning_code: "waiting_to_be_issued";
|
|
363
|
+
created_at: string;
|
|
191
364
|
}, {
|
|
192
365
|
message: string;
|
|
193
|
-
warning_code:
|
|
194
|
-
|
|
366
|
+
warning_code: "waiting_to_be_issued";
|
|
367
|
+
created_at: string;
|
|
368
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
369
|
+
created_at: z.ZodString;
|
|
370
|
+
message: z.ZodString;
|
|
371
|
+
}, {
|
|
372
|
+
warning_code: z.ZodLiteral<"schedule_externally_modified">;
|
|
373
|
+
}>, "strip", z.ZodTypeAny, {
|
|
374
|
+
message: string;
|
|
375
|
+
warning_code: "schedule_externally_modified";
|
|
376
|
+
created_at: string;
|
|
377
|
+
}, {
|
|
378
|
+
message: string;
|
|
379
|
+
warning_code: "schedule_externally_modified";
|
|
380
|
+
created_at: string;
|
|
381
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
382
|
+
created_at: z.ZodString;
|
|
383
|
+
message: z.ZodString;
|
|
384
|
+
}, {
|
|
385
|
+
warning_code: z.ZodLiteral<"schedule_modified">;
|
|
386
|
+
}>, "strip", z.ZodTypeAny, {
|
|
387
|
+
message: string;
|
|
388
|
+
warning_code: "schedule_modified";
|
|
389
|
+
created_at: string;
|
|
390
|
+
}, {
|
|
391
|
+
message: string;
|
|
392
|
+
warning_code: "schedule_modified";
|
|
393
|
+
created_at: string;
|
|
394
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
395
|
+
created_at: z.ZodString;
|
|
396
|
+
message: z.ZodString;
|
|
397
|
+
}, {
|
|
398
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
399
|
+
}>, "strip", z.ZodTypeAny, {
|
|
400
|
+
message: string;
|
|
401
|
+
warning_code: "being_deleted";
|
|
402
|
+
created_at: string;
|
|
403
|
+
}, {
|
|
404
|
+
message: string;
|
|
405
|
+
warning_code: "being_deleted";
|
|
406
|
+
created_at: string;
|
|
407
|
+
}>]>, "many">;
|
|
195
408
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
196
409
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
197
410
|
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString>;
|
|
@@ -231,10 +444,23 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
231
444
|
message: string;
|
|
232
445
|
error_code: string;
|
|
233
446
|
}[];
|
|
234
|
-
warnings: {
|
|
447
|
+
warnings: ({
|
|
235
448
|
message: string;
|
|
236
|
-
warning_code:
|
|
237
|
-
|
|
449
|
+
warning_code: "waiting_to_be_issued";
|
|
450
|
+
created_at: string;
|
|
451
|
+
} | {
|
|
452
|
+
message: string;
|
|
453
|
+
warning_code: "schedule_externally_modified";
|
|
454
|
+
created_at: string;
|
|
455
|
+
} | {
|
|
456
|
+
message: string;
|
|
457
|
+
warning_code: "schedule_modified";
|
|
458
|
+
created_at: string;
|
|
459
|
+
} | {
|
|
460
|
+
message: string;
|
|
461
|
+
warning_code: "being_deleted";
|
|
462
|
+
created_at: string;
|
|
463
|
+
})[];
|
|
238
464
|
display_name: string;
|
|
239
465
|
workspace_id: string;
|
|
240
466
|
is_managed: false;
|
|
@@ -271,10 +497,23 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
271
497
|
message: string;
|
|
272
498
|
error_code: string;
|
|
273
499
|
}[];
|
|
274
|
-
warnings: {
|
|
500
|
+
warnings: ({
|
|
275
501
|
message: string;
|
|
276
|
-
warning_code:
|
|
277
|
-
|
|
502
|
+
warning_code: "waiting_to_be_issued";
|
|
503
|
+
created_at: string;
|
|
504
|
+
} | {
|
|
505
|
+
message: string;
|
|
506
|
+
warning_code: "schedule_externally_modified";
|
|
507
|
+
created_at: string;
|
|
508
|
+
} | {
|
|
509
|
+
message: string;
|
|
510
|
+
warning_code: "schedule_modified";
|
|
511
|
+
created_at: string;
|
|
512
|
+
} | {
|
|
513
|
+
message: string;
|
|
514
|
+
warning_code: "being_deleted";
|
|
515
|
+
created_at: string;
|
|
516
|
+
})[];
|
|
278
517
|
display_name: string;
|
|
279
518
|
workspace_id: string;
|
|
280
519
|
is_managed: false;
|
|
@@ -396,3 +635,4 @@ export declare const acs_credential_on_encoder: z.ZodObject<{
|
|
|
396
635
|
export type AcsCredential = z.output<typeof acs_credential>;
|
|
397
636
|
export type UnmanagedAcsCredential = z.output<typeof unmanaged_acs_credential>;
|
|
398
637
|
export type AcsCredentialOnEncoder = z.output<typeof acs_credential_on_encoder>;
|
|
638
|
+
export {};
|
|
@@ -13,6 +13,58 @@ export const acs_credential_access_method_type = z.enum([
|
|
|
13
13
|
'card',
|
|
14
14
|
'mobile_key',
|
|
15
15
|
]);
|
|
16
|
+
const common_acs_credential_warning = z.object({
|
|
17
|
+
created_at: z
|
|
18
|
+
.string()
|
|
19
|
+
.datetime()
|
|
20
|
+
.describe('Date and time at which Seam created the warning.'),
|
|
21
|
+
message: z
|
|
22
|
+
.string()
|
|
23
|
+
.describe('Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.'),
|
|
24
|
+
});
|
|
25
|
+
const warning_code_description = 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.';
|
|
26
|
+
const waiting_to_be_issued = common_acs_credential_warning
|
|
27
|
+
.extend({
|
|
28
|
+
warning_code: z
|
|
29
|
+
.literal('waiting_to_be_issued')
|
|
30
|
+
.describe(warning_code_description),
|
|
31
|
+
})
|
|
32
|
+
.describe('Indicates that the credential is waiting to be issued.');
|
|
33
|
+
const schedule_externally_modified = common_acs_credential_warning
|
|
34
|
+
.extend({
|
|
35
|
+
warning_code: z
|
|
36
|
+
.literal('schedule_externally_modified')
|
|
37
|
+
.describe(warning_code_description),
|
|
38
|
+
})
|
|
39
|
+
.describe("Indicates that the schedule of one of the credential's children was modified externally.");
|
|
40
|
+
const schedule_modified = common_acs_credential_warning
|
|
41
|
+
.extend({
|
|
42
|
+
warning_code: z
|
|
43
|
+
.literal('schedule_modified')
|
|
44
|
+
.describe(warning_code_description),
|
|
45
|
+
})
|
|
46
|
+
.describe('Indicates that the schedule of this credential was modified to avoid creating a credential with a start date in the past.');
|
|
47
|
+
const being_deleted = common_acs_credential_warning
|
|
48
|
+
.extend({
|
|
49
|
+
warning_code: z.literal('being_deleted').describe(warning_code_description),
|
|
50
|
+
})
|
|
51
|
+
.describe('Indicates that this credential is being deleted.');
|
|
52
|
+
const acs_credential_warning = z
|
|
53
|
+
.union([
|
|
54
|
+
waiting_to_be_issued,
|
|
55
|
+
schedule_externally_modified,
|
|
56
|
+
schedule_modified,
|
|
57
|
+
being_deleted,
|
|
58
|
+
])
|
|
59
|
+
.describe('Warning associated with the `acs_credential`.');
|
|
60
|
+
const acs_credential_warning_map = z.object({
|
|
61
|
+
waiting_to_be_issued: waiting_to_be_issued.optional().nullable(),
|
|
62
|
+
schedule_externally_modified: schedule_externally_modified
|
|
63
|
+
.optional()
|
|
64
|
+
.nullable(),
|
|
65
|
+
schedule_modified: schedule_modified.optional().nullable(),
|
|
66
|
+
being_deleted: being_deleted.optional().nullable(),
|
|
67
|
+
});
|
|
16
68
|
const common_acs_credential = z.object({
|
|
17
69
|
acs_credential_id: z.string().uuid().describe('ID of the credential.'),
|
|
18
70
|
acs_user_id: z
|
|
@@ -66,14 +118,15 @@ const common_acs_credential = z.object({
|
|
|
66
118
|
.string()
|
|
67
119
|
.optional()
|
|
68
120
|
.describe('Date and time at which the credential validity ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`.'),
|
|
69
|
-
errors: z
|
|
121
|
+
errors: z
|
|
122
|
+
.array(z.object({
|
|
70
123
|
error_code: z.string(),
|
|
71
124
|
message: z.string(),
|
|
72
|
-
}))
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
125
|
+
}))
|
|
126
|
+
.describe('Errors associated with the `acs_credential`.'),
|
|
127
|
+
warnings: z
|
|
128
|
+
.array(acs_credential_warning)
|
|
129
|
+
.describe('Warnings associated with the `acs_credential`.'),
|
|
77
130
|
is_multi_phone_sync_credential: z
|
|
78
131
|
.boolean()
|
|
79
132
|
.optional()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,kCAAkC,EAAE,MAAM,qBAAqB,CAAA;AAExE,wEAAwE;AACxE,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;IACjB,qBAAqB;CACtB,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,IAAI,CAAC;IACtD,MAAM;IACN,MAAM;IACN,YAAY;CACb,CAAC,CAAA;AAMF,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,uBAAuB,CAAC;IACtE,WAAW,EAAE,CAAC;SACX,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,oDAAoD,CAAC;IACjE,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACpD,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,+DAA+D,CAAC;IAC5E,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,8BAA8B,CAAC;IAC3C,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,CAAC,uDAAuD,CAAC;IACpE,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,uCAAuC,CAAC;IACpD,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC7C,SAAS,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACjC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtD,aAAa,EAAE,iCAAiC,CAAC,QAAQ,CACvD,mFAAmF,CACpF;IACD,aAAa,EAAE,4BAA4B;SACxC,QAAQ,EAAE;SACV,QAAQ,CACP,4IAA4I,CAC7I;IACH,0BAA0B,EAAE,CAAC;SAC1B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,0FAA0F,CAC3F;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,oDAAoD,CAAC;IACjE,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,2GAA2G,CAC5G;IACH,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,sIAAsI,CACvI;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,wLAAwL,CACzL;IACH,MAAM,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
|
|
2
|
+
declare const acs_encoder_error_map: z.ZodObject<{
|
|
3
3
|
acs_encoder_removed: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
4
4
|
created_at: z.ZodString;
|
|
5
5
|
message: z.ZodString;
|
|
@@ -82,3 +82,4 @@ export declare const acs_encoder: z.ZodObject<{
|
|
|
82
82
|
acs_encoder_id: string;
|
|
83
83
|
}>;
|
|
84
84
|
export type AcsEncoder = z.infer<typeof acs_encoder>;
|
|
85
|
+
export {};
|
|
@@ -21,7 +21,7 @@ const acs_encoder_error =
|
|
|
21
21
|
acs_encoder_removed
|
|
22
22
|
// ])
|
|
23
23
|
.describe('Error associated with the `acs_encoder`.');
|
|
24
|
-
|
|
24
|
+
const acs_encoder_error_map = z.object({
|
|
25
25
|
acs_encoder_removed: acs_encoder_removed.optional().nullable(),
|
|
26
26
|
});
|
|
27
27
|
export const acs_encoder = z.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-encoder.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-encoder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAC1B,oGAAoG,CAAA;AAEtG,MAAM,mBAAmB,GAAG,wBAAwB,CAAC,MAAM,CAAC;IAC1D,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,QAAQ,CAAC,sBAAsB,CAAC;IAC7E,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,sEAAsE,CACvE;CACJ,CAAC,CAAA;AAEF,MAAM,iBAAiB;AACrB,YAAY;AACZ,mBAAmB;IACjB,KAAK;KACJ,QAAQ,CAAC,0CAA0C,CAAC,CAAA;AAEzD,MAAM,
|
|
1
|
+
{"version":3,"file":"acs-encoder.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-encoder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAC1B,oGAAoG,CAAA;AAEtG,MAAM,mBAAmB,GAAG,wBAAwB,CAAC,MAAM,CAAC;IAC1D,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,QAAQ,CAAC,sBAAsB,CAAC;IAC7E,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,sEAAsE,CACvE;CACJ,CAAC,CAAA;AAEF,MAAM,iBAAiB;AACrB,YAAY;AACZ,mBAAmB;IACjB,KAAK;KACJ,QAAQ,CAAC,0CAA0C,CAAC,CAAA;AAEzD,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,mBAAmB,EAAE,mBAAmB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC/D,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAClC,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IACtE,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,kEAAkE,CACnE;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,6GAA6G,CAC9G;IACH,MAAM,EAAE,CAAC;SACN,KAAK,CAAC,iBAAiB,CAAC;SACxB,QAAQ,CAAC,2CAA2C,CAAC;IACxD,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qCAAqC,CAAC;CACzE,CAAC,CAAA"}
|