@learncard/types 5.3.1 → 5.3.3
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/learncloud.d.ts +516 -6
- package/dist/obv3.d.ts +1149 -830
- package/dist/types.cjs.development.js +86 -189
- package/dist/types.cjs.development.js.map +3 -3
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +4 -4
- package/dist/types.esm.js +11 -7
- package/dist/types.esm.js.map +2 -2
- package/dist/vc.d.ts +117 -43
- package/package.json +1 -1
package/dist/learncloud.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { z } from 'zod';
|
2
|
-
export declare const
|
2
|
+
export declare const EncryptedRecordValidator: z.ZodObject<{
|
3
3
|
encryptedRecord: z.ZodObject<{
|
4
4
|
protected: z.ZodString;
|
5
5
|
iv: z.ZodString;
|
@@ -157,8 +157,516 @@ export declare const EncryptedCredentialRecordValidator: z.ZodObject<{
|
|
157
157
|
ciphertext: string;
|
158
158
|
}>;
|
159
159
|
fields: z.ZodArray<z.ZodString, "many">;
|
160
|
-
id: z.ZodString;
|
161
160
|
}, "strip", z.ZodAny, {
|
161
|
+
[x: string]: any;
|
162
|
+
encryptedRecord: {
|
163
|
+
aad?: string | undefined;
|
164
|
+
recipients?: {
|
165
|
+
header: {
|
166
|
+
epk?: {
|
167
|
+
kty?: string | undefined;
|
168
|
+
crv?: string | undefined;
|
169
|
+
x?: string | undefined;
|
170
|
+
y?: string | undefined;
|
171
|
+
n?: string | undefined;
|
172
|
+
d?: string | undefined;
|
173
|
+
} | undefined;
|
174
|
+
kid?: string | undefined;
|
175
|
+
apv?: string | undefined;
|
176
|
+
apu?: string | undefined;
|
177
|
+
alg: string;
|
178
|
+
iv: string;
|
179
|
+
tag: string;
|
180
|
+
};
|
181
|
+
encrypted_key: string;
|
182
|
+
}[] | undefined;
|
183
|
+
iv: string;
|
184
|
+
tag: string;
|
185
|
+
protected: string;
|
186
|
+
ciphertext: string;
|
187
|
+
};
|
188
|
+
fields: string[];
|
189
|
+
}, {
|
190
|
+
[x: string]: any;
|
191
|
+
encryptedRecord: {
|
192
|
+
aad?: string | undefined;
|
193
|
+
recipients?: {
|
194
|
+
header: {
|
195
|
+
epk?: {
|
196
|
+
kty?: string | undefined;
|
197
|
+
crv?: string | undefined;
|
198
|
+
x?: string | undefined;
|
199
|
+
y?: string | undefined;
|
200
|
+
n?: string | undefined;
|
201
|
+
d?: string | undefined;
|
202
|
+
} | undefined;
|
203
|
+
kid?: string | undefined;
|
204
|
+
apv?: string | undefined;
|
205
|
+
apu?: string | undefined;
|
206
|
+
alg: string;
|
207
|
+
iv: string;
|
208
|
+
tag: string;
|
209
|
+
};
|
210
|
+
encrypted_key: string;
|
211
|
+
}[] | undefined;
|
212
|
+
iv: string;
|
213
|
+
tag: string;
|
214
|
+
protected: string;
|
215
|
+
ciphertext: string;
|
216
|
+
};
|
217
|
+
fields: string[];
|
218
|
+
}>;
|
219
|
+
export type EncryptedRecord = z.infer<typeof EncryptedRecordValidator>;
|
220
|
+
export declare const PaginatedEncryptedRecordsValidator: z.ZodObject<z.extendShape<{
|
221
|
+
cursor: z.ZodOptional<z.ZodString>;
|
222
|
+
hasMore: z.ZodBoolean;
|
223
|
+
}, {
|
224
|
+
records: z.ZodArray<z.ZodObject<{
|
225
|
+
encryptedRecord: z.ZodObject<{
|
226
|
+
protected: z.ZodString;
|
227
|
+
iv: z.ZodString;
|
228
|
+
ciphertext: z.ZodString;
|
229
|
+
tag: z.ZodString;
|
230
|
+
aad: z.ZodOptional<z.ZodString>;
|
231
|
+
recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
232
|
+
header: z.ZodObject<{
|
233
|
+
alg: z.ZodString;
|
234
|
+
iv: z.ZodString;
|
235
|
+
tag: z.ZodString;
|
236
|
+
epk: z.ZodOptional<z.ZodObject<{
|
237
|
+
kty: z.ZodOptional<z.ZodString>;
|
238
|
+
crv: z.ZodOptional<z.ZodString>;
|
239
|
+
x: z.ZodOptional<z.ZodString>;
|
240
|
+
y: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
241
|
+
n: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
242
|
+
d: z.ZodOptional<z.ZodString>;
|
243
|
+
}, "strip", z.ZodTypeAny, {
|
244
|
+
kty?: string | undefined;
|
245
|
+
crv?: string | undefined;
|
246
|
+
x?: string | undefined;
|
247
|
+
y?: string | undefined;
|
248
|
+
n?: string | undefined;
|
249
|
+
d?: string | undefined;
|
250
|
+
}, {
|
251
|
+
kty?: string | undefined;
|
252
|
+
crv?: string | undefined;
|
253
|
+
x?: string | undefined;
|
254
|
+
y?: string | undefined;
|
255
|
+
n?: string | undefined;
|
256
|
+
d?: string | undefined;
|
257
|
+
}>>;
|
258
|
+
kid: z.ZodOptional<z.ZodString>;
|
259
|
+
apv: z.ZodOptional<z.ZodString>;
|
260
|
+
apu: z.ZodOptional<z.ZodString>;
|
261
|
+
}, "strip", z.ZodTypeAny, {
|
262
|
+
epk?: {
|
263
|
+
kty?: string | undefined;
|
264
|
+
crv?: string | undefined;
|
265
|
+
x?: string | undefined;
|
266
|
+
y?: string | undefined;
|
267
|
+
n?: string | undefined;
|
268
|
+
d?: string | undefined;
|
269
|
+
} | undefined;
|
270
|
+
kid?: string | undefined;
|
271
|
+
apv?: string | undefined;
|
272
|
+
apu?: string | undefined;
|
273
|
+
alg: string;
|
274
|
+
iv: string;
|
275
|
+
tag: string;
|
276
|
+
}, {
|
277
|
+
epk?: {
|
278
|
+
kty?: string | undefined;
|
279
|
+
crv?: string | undefined;
|
280
|
+
x?: string | undefined;
|
281
|
+
y?: string | undefined;
|
282
|
+
n?: string | undefined;
|
283
|
+
d?: string | undefined;
|
284
|
+
} | undefined;
|
285
|
+
kid?: string | undefined;
|
286
|
+
apv?: string | undefined;
|
287
|
+
apu?: string | undefined;
|
288
|
+
alg: string;
|
289
|
+
iv: string;
|
290
|
+
tag: string;
|
291
|
+
}>;
|
292
|
+
encrypted_key: z.ZodString;
|
293
|
+
}, "strip", z.ZodTypeAny, {
|
294
|
+
header: {
|
295
|
+
epk?: {
|
296
|
+
kty?: string | undefined;
|
297
|
+
crv?: string | undefined;
|
298
|
+
x?: string | undefined;
|
299
|
+
y?: string | undefined;
|
300
|
+
n?: string | undefined;
|
301
|
+
d?: string | undefined;
|
302
|
+
} | undefined;
|
303
|
+
kid?: string | undefined;
|
304
|
+
apv?: string | undefined;
|
305
|
+
apu?: string | undefined;
|
306
|
+
alg: string;
|
307
|
+
iv: string;
|
308
|
+
tag: string;
|
309
|
+
};
|
310
|
+
encrypted_key: string;
|
311
|
+
}, {
|
312
|
+
header: {
|
313
|
+
epk?: {
|
314
|
+
kty?: string | undefined;
|
315
|
+
crv?: string | undefined;
|
316
|
+
x?: string | undefined;
|
317
|
+
y?: string | undefined;
|
318
|
+
n?: string | undefined;
|
319
|
+
d?: string | undefined;
|
320
|
+
} | undefined;
|
321
|
+
kid?: string | undefined;
|
322
|
+
apv?: string | undefined;
|
323
|
+
apu?: string | undefined;
|
324
|
+
alg: string;
|
325
|
+
iv: string;
|
326
|
+
tag: string;
|
327
|
+
};
|
328
|
+
encrypted_key: string;
|
329
|
+
}>, "many">>;
|
330
|
+
}, "strip", z.ZodTypeAny, {
|
331
|
+
aad?: string | undefined;
|
332
|
+
recipients?: {
|
333
|
+
header: {
|
334
|
+
epk?: {
|
335
|
+
kty?: string | undefined;
|
336
|
+
crv?: string | undefined;
|
337
|
+
x?: string | undefined;
|
338
|
+
y?: string | undefined;
|
339
|
+
n?: string | undefined;
|
340
|
+
d?: string | undefined;
|
341
|
+
} | undefined;
|
342
|
+
kid?: string | undefined;
|
343
|
+
apv?: string | undefined;
|
344
|
+
apu?: string | undefined;
|
345
|
+
alg: string;
|
346
|
+
iv: string;
|
347
|
+
tag: string;
|
348
|
+
};
|
349
|
+
encrypted_key: string;
|
350
|
+
}[] | undefined;
|
351
|
+
iv: string;
|
352
|
+
tag: string;
|
353
|
+
protected: string;
|
354
|
+
ciphertext: string;
|
355
|
+
}, {
|
356
|
+
aad?: string | undefined;
|
357
|
+
recipients?: {
|
358
|
+
header: {
|
359
|
+
epk?: {
|
360
|
+
kty?: string | undefined;
|
361
|
+
crv?: string | undefined;
|
362
|
+
x?: string | undefined;
|
363
|
+
y?: string | undefined;
|
364
|
+
n?: string | undefined;
|
365
|
+
d?: string | undefined;
|
366
|
+
} | undefined;
|
367
|
+
kid?: string | undefined;
|
368
|
+
apv?: string | undefined;
|
369
|
+
apu?: string | undefined;
|
370
|
+
alg: string;
|
371
|
+
iv: string;
|
372
|
+
tag: string;
|
373
|
+
};
|
374
|
+
encrypted_key: string;
|
375
|
+
}[] | undefined;
|
376
|
+
iv: string;
|
377
|
+
tag: string;
|
378
|
+
protected: string;
|
379
|
+
ciphertext: string;
|
380
|
+
}>;
|
381
|
+
fields: z.ZodArray<z.ZodString, "many">;
|
382
|
+
}, "strip", z.ZodAny, {
|
383
|
+
[x: string]: any;
|
384
|
+
encryptedRecord: {
|
385
|
+
aad?: string | undefined;
|
386
|
+
recipients?: {
|
387
|
+
header: {
|
388
|
+
epk?: {
|
389
|
+
kty?: string | undefined;
|
390
|
+
crv?: string | undefined;
|
391
|
+
x?: string | undefined;
|
392
|
+
y?: string | undefined;
|
393
|
+
n?: string | undefined;
|
394
|
+
d?: string | undefined;
|
395
|
+
} | undefined;
|
396
|
+
kid?: string | undefined;
|
397
|
+
apv?: string | undefined;
|
398
|
+
apu?: string | undefined;
|
399
|
+
alg: string;
|
400
|
+
iv: string;
|
401
|
+
tag: string;
|
402
|
+
};
|
403
|
+
encrypted_key: string;
|
404
|
+
}[] | undefined;
|
405
|
+
iv: string;
|
406
|
+
tag: string;
|
407
|
+
protected: string;
|
408
|
+
ciphertext: string;
|
409
|
+
};
|
410
|
+
fields: string[];
|
411
|
+
}, {
|
412
|
+
[x: string]: any;
|
413
|
+
encryptedRecord: {
|
414
|
+
aad?: string | undefined;
|
415
|
+
recipients?: {
|
416
|
+
header: {
|
417
|
+
epk?: {
|
418
|
+
kty?: string | undefined;
|
419
|
+
crv?: string | undefined;
|
420
|
+
x?: string | undefined;
|
421
|
+
y?: string | undefined;
|
422
|
+
n?: string | undefined;
|
423
|
+
d?: string | undefined;
|
424
|
+
} | undefined;
|
425
|
+
kid?: string | undefined;
|
426
|
+
apv?: string | undefined;
|
427
|
+
apu?: string | undefined;
|
428
|
+
alg: string;
|
429
|
+
iv: string;
|
430
|
+
tag: string;
|
431
|
+
};
|
432
|
+
encrypted_key: string;
|
433
|
+
}[] | undefined;
|
434
|
+
iv: string;
|
435
|
+
tag: string;
|
436
|
+
protected: string;
|
437
|
+
ciphertext: string;
|
438
|
+
};
|
439
|
+
fields: string[];
|
440
|
+
}>, "many">;
|
441
|
+
}>, "strip", z.ZodTypeAny, {
|
442
|
+
cursor?: string | undefined;
|
443
|
+
hasMore: boolean;
|
444
|
+
records: {
|
445
|
+
[x: string]: any;
|
446
|
+
encryptedRecord: {
|
447
|
+
aad?: string | undefined;
|
448
|
+
recipients?: {
|
449
|
+
header: {
|
450
|
+
epk?: {
|
451
|
+
kty?: string | undefined;
|
452
|
+
crv?: string | undefined;
|
453
|
+
x?: string | undefined;
|
454
|
+
y?: string | undefined;
|
455
|
+
n?: string | undefined;
|
456
|
+
d?: string | undefined;
|
457
|
+
} | undefined;
|
458
|
+
kid?: string | undefined;
|
459
|
+
apv?: string | undefined;
|
460
|
+
apu?: string | undefined;
|
461
|
+
alg: string;
|
462
|
+
iv: string;
|
463
|
+
tag: string;
|
464
|
+
};
|
465
|
+
encrypted_key: string;
|
466
|
+
}[] | undefined;
|
467
|
+
iv: string;
|
468
|
+
tag: string;
|
469
|
+
protected: string;
|
470
|
+
ciphertext: string;
|
471
|
+
};
|
472
|
+
fields: string[];
|
473
|
+
}[];
|
474
|
+
}, {
|
475
|
+
cursor?: string | undefined;
|
476
|
+
hasMore: boolean;
|
477
|
+
records: {
|
478
|
+
[x: string]: any;
|
479
|
+
encryptedRecord: {
|
480
|
+
aad?: string | undefined;
|
481
|
+
recipients?: {
|
482
|
+
header: {
|
483
|
+
epk?: {
|
484
|
+
kty?: string | undefined;
|
485
|
+
crv?: string | undefined;
|
486
|
+
x?: string | undefined;
|
487
|
+
y?: string | undefined;
|
488
|
+
n?: string | undefined;
|
489
|
+
d?: string | undefined;
|
490
|
+
} | undefined;
|
491
|
+
kid?: string | undefined;
|
492
|
+
apv?: string | undefined;
|
493
|
+
apu?: string | undefined;
|
494
|
+
alg: string;
|
495
|
+
iv: string;
|
496
|
+
tag: string;
|
497
|
+
};
|
498
|
+
encrypted_key: string;
|
499
|
+
}[] | undefined;
|
500
|
+
iv: string;
|
501
|
+
tag: string;
|
502
|
+
protected: string;
|
503
|
+
ciphertext: string;
|
504
|
+
};
|
505
|
+
fields: string[];
|
506
|
+
}[];
|
507
|
+
}>;
|
508
|
+
export type PaginatedEncryptedRecordsType = z.infer<typeof PaginatedEncryptedRecordsValidator>;
|
509
|
+
export declare const EncryptedCredentialRecordValidator: z.ZodObject<z.extendShape<{
|
510
|
+
encryptedRecord: z.ZodObject<{
|
511
|
+
protected: z.ZodString;
|
512
|
+
iv: z.ZodString;
|
513
|
+
ciphertext: z.ZodString;
|
514
|
+
tag: z.ZodString;
|
515
|
+
aad: z.ZodOptional<z.ZodString>;
|
516
|
+
recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
517
|
+
header: z.ZodObject<{
|
518
|
+
alg: z.ZodString;
|
519
|
+
iv: z.ZodString;
|
520
|
+
tag: z.ZodString;
|
521
|
+
epk: z.ZodOptional<z.ZodObject<{
|
522
|
+
kty: z.ZodOptional<z.ZodString>;
|
523
|
+
crv: z.ZodOptional<z.ZodString>;
|
524
|
+
x: z.ZodOptional<z.ZodString>;
|
525
|
+
y: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
526
|
+
n: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
527
|
+
d: z.ZodOptional<z.ZodString>;
|
528
|
+
}, "strip", z.ZodTypeAny, {
|
529
|
+
kty?: string | undefined;
|
530
|
+
crv?: string | undefined;
|
531
|
+
x?: string | undefined;
|
532
|
+
y?: string | undefined;
|
533
|
+
n?: string | undefined;
|
534
|
+
d?: string | undefined;
|
535
|
+
}, {
|
536
|
+
kty?: string | undefined;
|
537
|
+
crv?: string | undefined;
|
538
|
+
x?: string | undefined;
|
539
|
+
y?: string | undefined;
|
540
|
+
n?: string | undefined;
|
541
|
+
d?: string | undefined;
|
542
|
+
}>>;
|
543
|
+
kid: z.ZodOptional<z.ZodString>;
|
544
|
+
apv: z.ZodOptional<z.ZodString>;
|
545
|
+
apu: z.ZodOptional<z.ZodString>;
|
546
|
+
}, "strip", z.ZodTypeAny, {
|
547
|
+
epk?: {
|
548
|
+
kty?: string | undefined;
|
549
|
+
crv?: string | undefined;
|
550
|
+
x?: string | undefined;
|
551
|
+
y?: string | undefined;
|
552
|
+
n?: string | undefined;
|
553
|
+
d?: string | undefined;
|
554
|
+
} | undefined;
|
555
|
+
kid?: string | undefined;
|
556
|
+
apv?: string | undefined;
|
557
|
+
apu?: string | undefined;
|
558
|
+
alg: string;
|
559
|
+
iv: string;
|
560
|
+
tag: string;
|
561
|
+
}, {
|
562
|
+
epk?: {
|
563
|
+
kty?: string | undefined;
|
564
|
+
crv?: string | undefined;
|
565
|
+
x?: string | undefined;
|
566
|
+
y?: string | undefined;
|
567
|
+
n?: string | undefined;
|
568
|
+
d?: string | undefined;
|
569
|
+
} | undefined;
|
570
|
+
kid?: string | undefined;
|
571
|
+
apv?: string | undefined;
|
572
|
+
apu?: string | undefined;
|
573
|
+
alg: string;
|
574
|
+
iv: string;
|
575
|
+
tag: string;
|
576
|
+
}>;
|
577
|
+
encrypted_key: z.ZodString;
|
578
|
+
}, "strip", z.ZodTypeAny, {
|
579
|
+
header: {
|
580
|
+
epk?: {
|
581
|
+
kty?: string | undefined;
|
582
|
+
crv?: string | undefined;
|
583
|
+
x?: string | undefined;
|
584
|
+
y?: string | undefined;
|
585
|
+
n?: string | undefined;
|
586
|
+
d?: string | undefined;
|
587
|
+
} | undefined;
|
588
|
+
kid?: string | undefined;
|
589
|
+
apv?: string | undefined;
|
590
|
+
apu?: string | undefined;
|
591
|
+
alg: string;
|
592
|
+
iv: string;
|
593
|
+
tag: string;
|
594
|
+
};
|
595
|
+
encrypted_key: string;
|
596
|
+
}, {
|
597
|
+
header: {
|
598
|
+
epk?: {
|
599
|
+
kty?: string | undefined;
|
600
|
+
crv?: string | undefined;
|
601
|
+
x?: string | undefined;
|
602
|
+
y?: string | undefined;
|
603
|
+
n?: string | undefined;
|
604
|
+
d?: string | undefined;
|
605
|
+
} | undefined;
|
606
|
+
kid?: string | undefined;
|
607
|
+
apv?: string | undefined;
|
608
|
+
apu?: string | undefined;
|
609
|
+
alg: string;
|
610
|
+
iv: string;
|
611
|
+
tag: string;
|
612
|
+
};
|
613
|
+
encrypted_key: string;
|
614
|
+
}>, "many">>;
|
615
|
+
}, "strip", z.ZodTypeAny, {
|
616
|
+
aad?: string | undefined;
|
617
|
+
recipients?: {
|
618
|
+
header: {
|
619
|
+
epk?: {
|
620
|
+
kty?: string | undefined;
|
621
|
+
crv?: string | undefined;
|
622
|
+
x?: string | undefined;
|
623
|
+
y?: string | undefined;
|
624
|
+
n?: string | undefined;
|
625
|
+
d?: string | undefined;
|
626
|
+
} | undefined;
|
627
|
+
kid?: string | undefined;
|
628
|
+
apv?: string | undefined;
|
629
|
+
apu?: string | undefined;
|
630
|
+
alg: string;
|
631
|
+
iv: string;
|
632
|
+
tag: string;
|
633
|
+
};
|
634
|
+
encrypted_key: string;
|
635
|
+
}[] | undefined;
|
636
|
+
iv: string;
|
637
|
+
tag: string;
|
638
|
+
protected: string;
|
639
|
+
ciphertext: string;
|
640
|
+
}, {
|
641
|
+
aad?: string | undefined;
|
642
|
+
recipients?: {
|
643
|
+
header: {
|
644
|
+
epk?: {
|
645
|
+
kty?: string | undefined;
|
646
|
+
crv?: string | undefined;
|
647
|
+
x?: string | undefined;
|
648
|
+
y?: string | undefined;
|
649
|
+
n?: string | undefined;
|
650
|
+
d?: string | undefined;
|
651
|
+
} | undefined;
|
652
|
+
kid?: string | undefined;
|
653
|
+
apv?: string | undefined;
|
654
|
+
apu?: string | undefined;
|
655
|
+
alg: string;
|
656
|
+
iv: string;
|
657
|
+
tag: string;
|
658
|
+
};
|
659
|
+
encrypted_key: string;
|
660
|
+
}[] | undefined;
|
661
|
+
iv: string;
|
662
|
+
tag: string;
|
663
|
+
protected: string;
|
664
|
+
ciphertext: string;
|
665
|
+
}>;
|
666
|
+
fields: z.ZodArray<z.ZodString, "many">;
|
667
|
+
}, {
|
668
|
+
id: z.ZodString;
|
669
|
+
}>, "strip", z.ZodAny, {
|
162
670
|
[x: string]: any;
|
163
671
|
id: string;
|
164
672
|
encryptedRecord: {
|
@@ -220,10 +728,11 @@ export declare const EncryptedCredentialRecordValidator: z.ZodObject<{
|
|
220
728
|
fields: string[];
|
221
729
|
}>;
|
222
730
|
export type EncryptedCredentialRecord = z.infer<typeof EncryptedCredentialRecordValidator>;
|
223
|
-
export declare const PaginatedEncryptedCredentialRecordsValidator: z.ZodObject<{
|
731
|
+
export declare const PaginatedEncryptedCredentialRecordsValidator: z.ZodObject<z.extendShape<{
|
224
732
|
cursor: z.ZodOptional<z.ZodString>;
|
225
733
|
hasMore: z.ZodBoolean;
|
226
|
-
|
734
|
+
}, {
|
735
|
+
records: z.ZodArray<z.ZodObject<z.extendShape<{
|
227
736
|
encryptedRecord: z.ZodObject<{
|
228
737
|
protected: z.ZodString;
|
229
738
|
iv: z.ZodString;
|
@@ -381,8 +890,9 @@ export declare const PaginatedEncryptedCredentialRecordsValidator: z.ZodObject<{
|
|
381
890
|
ciphertext: string;
|
382
891
|
}>;
|
383
892
|
fields: z.ZodArray<z.ZodString, "many">;
|
893
|
+
}, {
|
384
894
|
id: z.ZodString;
|
385
|
-
}
|
895
|
+
}>, "strip", z.ZodAny, {
|
386
896
|
[x: string]: any;
|
387
897
|
id: string;
|
388
898
|
encryptedRecord: {
|
@@ -443,7 +953,7 @@ export declare const PaginatedEncryptedCredentialRecordsValidator: z.ZodObject<{
|
|
443
953
|
};
|
444
954
|
fields: string[];
|
445
955
|
}>, "many">;
|
446
|
-
}
|
956
|
+
}>, "strip", z.ZodTypeAny, {
|
447
957
|
cursor?: string | undefined;
|
448
958
|
hasMore: boolean;
|
449
959
|
records: {
|