@learncard/types 5.5.6 → 5.5.7
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/lcn.d.ts +88 -4
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +8 -4
- package/dist/types.cjs.development.js.map +2 -2
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +3 -3
- package/dist/types.esm.js +8 -4
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -1
package/dist/lcn.d.ts
CHANGED
@@ -189,6 +189,7 @@ export declare const BoostValidator: z.ZodObject<{
|
|
189
189
|
category: z.ZodOptional<z.ZodString>;
|
190
190
|
status: z.ZodOptional<z.ZodEnum<["DRAFT", "LIVE"]>>;
|
191
191
|
autoConnectRecipients: z.ZodOptional<z.ZodBoolean>;
|
192
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
192
193
|
claimPermissions: z.ZodOptional<z.ZodObject<{
|
193
194
|
role: z.ZodString;
|
194
195
|
canEdit: z.ZodBoolean;
|
@@ -232,6 +233,7 @@ export declare const BoostValidator: z.ZodObject<{
|
|
232
233
|
name?: string | undefined;
|
233
234
|
category?: string | undefined;
|
234
235
|
autoConnectRecipients?: boolean | undefined;
|
236
|
+
meta?: Record<string, any> | undefined;
|
235
237
|
claimPermissions?: {
|
236
238
|
role: string;
|
237
239
|
canEdit: boolean;
|
@@ -252,6 +254,7 @@ export declare const BoostValidator: z.ZodObject<{
|
|
252
254
|
name?: string | undefined;
|
253
255
|
category?: string | undefined;
|
254
256
|
autoConnectRecipients?: boolean | undefined;
|
257
|
+
meta?: Record<string, any> | undefined;
|
255
258
|
claimPermissions?: {
|
256
259
|
role: string;
|
257
260
|
canEdit: boolean;
|
@@ -268,35 +271,85 @@ export declare const BoostValidator: z.ZodObject<{
|
|
268
271
|
uri: string;
|
269
272
|
}>;
|
270
273
|
export type Boost = z.infer<typeof BoostValidator>;
|
274
|
+
export declare const StringQuery: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
|
275
|
+
$in: z.ZodArray<z.ZodString, "many">;
|
276
|
+
}, "strip", z.ZodTypeAny, {
|
277
|
+
$in: string[];
|
278
|
+
}, {
|
279
|
+
$in: string[];
|
280
|
+
}>]>, z.ZodObject<{
|
281
|
+
$regex: z.ZodType<RegExp, z.ZodTypeDef, RegExp>;
|
282
|
+
}, "strip", z.ZodTypeAny, {
|
283
|
+
$regex: RegExp;
|
284
|
+
}, {
|
285
|
+
$regex: RegExp;
|
286
|
+
}>]>;
|
271
287
|
export declare const BoostQueryValidator: z.ZodObject<{
|
272
|
-
uri: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
288
|
+
uri: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
|
273
289
|
$in: z.ZodArray<z.ZodString, "many">;
|
274
290
|
}, "strip", z.ZodTypeAny, {
|
275
291
|
$in: string[];
|
276
292
|
}, {
|
277
293
|
$in: string[];
|
294
|
+
}>]>, z.ZodObject<{
|
295
|
+
$regex: z.ZodType<RegExp, z.ZodTypeDef, RegExp>;
|
296
|
+
}, "strip", z.ZodTypeAny, {
|
297
|
+
$regex: RegExp;
|
298
|
+
}, {
|
299
|
+
$regex: RegExp;
|
278
300
|
}>]>>;
|
279
|
-
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
301
|
+
name: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
|
280
302
|
$in: z.ZodArray<z.ZodString, "many">;
|
281
303
|
}, "strip", z.ZodTypeAny, {
|
282
304
|
$in: string[];
|
283
305
|
}, {
|
284
306
|
$in: string[];
|
307
|
+
}>]>, z.ZodObject<{
|
308
|
+
$regex: z.ZodType<RegExp, z.ZodTypeDef, RegExp>;
|
309
|
+
}, "strip", z.ZodTypeAny, {
|
310
|
+
$regex: RegExp;
|
311
|
+
}, {
|
312
|
+
$regex: RegExp;
|
285
313
|
}>]>>;
|
286
|
-
type: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
314
|
+
type: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
|
287
315
|
$in: z.ZodArray<z.ZodString, "many">;
|
288
316
|
}, "strip", z.ZodTypeAny, {
|
289
317
|
$in: string[];
|
290
318
|
}, {
|
291
319
|
$in: string[];
|
320
|
+
}>]>, z.ZodObject<{
|
321
|
+
$regex: z.ZodType<RegExp, z.ZodTypeDef, RegExp>;
|
322
|
+
}, "strip", z.ZodTypeAny, {
|
323
|
+
$regex: RegExp;
|
324
|
+
}, {
|
325
|
+
$regex: RegExp;
|
292
326
|
}>]>>;
|
293
|
-
category: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
327
|
+
category: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
|
294
328
|
$in: z.ZodArray<z.ZodString, "many">;
|
295
329
|
}, "strip", z.ZodTypeAny, {
|
296
330
|
$in: string[];
|
297
331
|
}, {
|
298
332
|
$in: string[];
|
333
|
+
}>]>, z.ZodObject<{
|
334
|
+
$regex: z.ZodType<RegExp, z.ZodTypeDef, RegExp>;
|
335
|
+
}, "strip", z.ZodTypeAny, {
|
336
|
+
$regex: RegExp;
|
337
|
+
}, {
|
338
|
+
$regex: RegExp;
|
299
339
|
}>]>>;
|
340
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
|
341
|
+
$in: z.ZodArray<z.ZodString, "many">;
|
342
|
+
}, "strip", z.ZodTypeAny, {
|
343
|
+
$in: string[];
|
344
|
+
}, {
|
345
|
+
$in: string[];
|
346
|
+
}>]>, z.ZodObject<{
|
347
|
+
$regex: z.ZodType<RegExp, z.ZodTypeDef, RegExp>;
|
348
|
+
}, "strip", z.ZodTypeAny, {
|
349
|
+
$regex: RegExp;
|
350
|
+
}, {
|
351
|
+
$regex: RegExp;
|
352
|
+
}>]>>>;
|
300
353
|
status: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["DRAFT", "LIVE"]>, z.ZodObject<{
|
301
354
|
$in: z.ZodArray<z.ZodEnum<["DRAFT", "LIVE"]>, "many">;
|
302
355
|
}, "strip", z.ZodTypeAny, {
|
@@ -308,37 +361,63 @@ export declare const BoostQueryValidator: z.ZodObject<{
|
|
308
361
|
}, "strip", z.ZodTypeAny, {
|
309
362
|
type?: string | {
|
310
363
|
$in: string[];
|
364
|
+
} | {
|
365
|
+
$regex: RegExp;
|
311
366
|
} | undefined;
|
312
367
|
status?: "DRAFT" | "LIVE" | {
|
313
368
|
$in: ("DRAFT" | "LIVE")[];
|
314
369
|
} | undefined;
|
315
370
|
name?: string | {
|
316
371
|
$in: string[];
|
372
|
+
} | {
|
373
|
+
$regex: RegExp;
|
317
374
|
} | undefined;
|
318
375
|
uri?: string | {
|
319
376
|
$in: string[];
|
377
|
+
} | {
|
378
|
+
$regex: RegExp;
|
320
379
|
} | undefined;
|
321
380
|
category?: string | {
|
322
381
|
$in: string[];
|
382
|
+
} | {
|
383
|
+
$regex: RegExp;
|
323
384
|
} | undefined;
|
324
385
|
autoConnectRecipients?: boolean | undefined;
|
386
|
+
meta?: Record<string, string | {
|
387
|
+
$in: string[];
|
388
|
+
} | {
|
389
|
+
$regex: RegExp;
|
390
|
+
}> | undefined;
|
325
391
|
}, {
|
326
392
|
type?: string | {
|
327
393
|
$in: string[];
|
394
|
+
} | {
|
395
|
+
$regex: RegExp;
|
328
396
|
} | undefined;
|
329
397
|
status?: "DRAFT" | "LIVE" | {
|
330
398
|
$in: ("DRAFT" | "LIVE")[];
|
331
399
|
} | undefined;
|
332
400
|
name?: string | {
|
333
401
|
$in: string[];
|
402
|
+
} | {
|
403
|
+
$regex: RegExp;
|
334
404
|
} | undefined;
|
335
405
|
uri?: string | {
|
336
406
|
$in: string[];
|
407
|
+
} | {
|
408
|
+
$regex: RegExp;
|
337
409
|
} | undefined;
|
338
410
|
category?: string | {
|
339
411
|
$in: string[];
|
412
|
+
} | {
|
413
|
+
$regex: RegExp;
|
340
414
|
} | undefined;
|
341
415
|
autoConnectRecipients?: boolean | undefined;
|
416
|
+
meta?: Record<string, string | {
|
417
|
+
$in: string[];
|
418
|
+
} | {
|
419
|
+
$regex: RegExp;
|
420
|
+
}> | undefined;
|
342
421
|
}>;
|
343
422
|
export type BoostQuery = z.infer<typeof BoostQueryValidator>;
|
344
423
|
export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
@@ -352,6 +431,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
352
431
|
category: z.ZodOptional<z.ZodString>;
|
353
432
|
status: z.ZodOptional<z.ZodEnum<["DRAFT", "LIVE"]>>;
|
354
433
|
autoConnectRecipients: z.ZodOptional<z.ZodBoolean>;
|
434
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
355
435
|
claimPermissions: z.ZodOptional<z.ZodObject<{
|
356
436
|
role: z.ZodString;
|
357
437
|
canEdit: z.ZodBoolean;
|
@@ -395,6 +475,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
395
475
|
name?: string | undefined;
|
396
476
|
category?: string | undefined;
|
397
477
|
autoConnectRecipients?: boolean | undefined;
|
478
|
+
meta?: Record<string, any> | undefined;
|
398
479
|
claimPermissions?: {
|
399
480
|
role: string;
|
400
481
|
canEdit: boolean;
|
@@ -415,6 +496,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
415
496
|
name?: string | undefined;
|
416
497
|
category?: string | undefined;
|
417
498
|
autoConnectRecipients?: boolean | undefined;
|
499
|
+
meta?: Record<string, any> | undefined;
|
418
500
|
claimPermissions?: {
|
419
501
|
role: string;
|
420
502
|
canEdit: boolean;
|
@@ -439,6 +521,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
439
521
|
name?: string | undefined;
|
440
522
|
category?: string | undefined;
|
441
523
|
autoConnectRecipients?: boolean | undefined;
|
524
|
+
meta?: Record<string, any> | undefined;
|
442
525
|
claimPermissions?: {
|
443
526
|
role: string;
|
444
527
|
canEdit: boolean;
|
@@ -463,6 +546,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
|
463
546
|
name?: string | undefined;
|
464
547
|
category?: string | undefined;
|
465
548
|
autoConnectRecipients?: boolean | undefined;
|
549
|
+
meta?: Record<string, any> | undefined;
|
466
550
|
claimPermissions?: {
|
467
551
|
role: string;
|
468
552
|
canEdit: boolean;
|
package/dist/lcn.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"lcn.d.ts","sourceRoot":"","sources":["../src/lcn.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAa9B,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAE7D,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAExC,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAEjF,eAAO,MAAM,8BAA8B,+FAKzC,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AAE5F,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;EAMtC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAE7E,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYpC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAEzE,eAAO,MAAM,cAAc,8BAA4B,CAAC;AACxD,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEhE,eAAO,MAAM,cAAc
|
1
|
+
{"version":3,"file":"lcn.d.ts","sourceRoot":"","sources":["../src/lcn.ts"],"names":[],"mappings":"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"}
|
@@ -101,6 +101,7 @@ __export(src_exports, {
|
|
101
101
|
RubricCriterionValidator: () => RubricCriterionValidator,
|
102
102
|
SentCredentialInfoValidator: () => SentCredentialInfoValidator,
|
103
103
|
ServiceValidator: () => ServiceValidator,
|
104
|
+
StringQuery: () => StringQuery,
|
104
105
|
UnsignedAchievementCredentialValidator: () => UnsignedAchievementCredentialValidator,
|
105
106
|
UnsignedVCValidator: () => UnsignedVCValidator,
|
106
107
|
UnsignedVPValidator: () => UnsignedVPValidator,
|
@@ -3924,13 +3925,16 @@ var BoostValidator = mod.object({
|
|
3924
3925
|
category: mod.string().optional(),
|
3925
3926
|
status: LCNBoostStatus.optional(),
|
3926
3927
|
autoConnectRecipients: mod.boolean().optional(),
|
3928
|
+
meta: mod.record(mod.any()).optional(),
|
3927
3929
|
claimPermissions: BoostPermissionsValidator.optional()
|
3928
3930
|
});
|
3931
|
+
var StringQuery = mod.string().or(mod.object({ $in: mod.string().array() })).or(mod.object({ $regex: mod.instanceof(RegExp) }));
|
3929
3932
|
var BoostQueryValidator = mod.object({
|
3930
|
-
uri:
|
3931
|
-
name:
|
3932
|
-
type:
|
3933
|
-
category:
|
3933
|
+
uri: StringQuery,
|
3934
|
+
name: StringQuery,
|
3935
|
+
type: StringQuery,
|
3936
|
+
category: StringQuery,
|
3937
|
+
meta: mod.record(StringQuery),
|
3934
3938
|
status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
|
3935
3939
|
autoConnectRecipients: mod.boolean()
|
3936
3940
|
}).partial();
|