@learncard/types 5.5.4 → 5.5.6

Sign up to get free protection for your applications and to get access to all the features.
package/dist/lcn.d.ts CHANGED
@@ -142,6 +142,44 @@ export declare const SentCredentialInfoValidator: z.ZodObject<{
142
142
  sent: string;
143
143
  }>;
144
144
  export type SentCredentialInfo = z.infer<typeof SentCredentialInfoValidator>;
145
+ export declare const BoostPermissionsValidator: z.ZodObject<{
146
+ role: z.ZodString;
147
+ canEdit: z.ZodBoolean;
148
+ canIssue: z.ZodBoolean;
149
+ canRevoke: z.ZodBoolean;
150
+ canManagePermissions: z.ZodBoolean;
151
+ canIssueChildren: z.ZodString;
152
+ canCreateChildren: z.ZodString;
153
+ canEditChildren: z.ZodString;
154
+ canRevokeChildren: z.ZodString;
155
+ canManageChildrenPermissions: z.ZodString;
156
+ canViewAnalytics: z.ZodBoolean;
157
+ }, "strip", z.ZodTypeAny, {
158
+ role: string;
159
+ canEdit: boolean;
160
+ canIssue: boolean;
161
+ canRevoke: boolean;
162
+ canManagePermissions: boolean;
163
+ canIssueChildren: string;
164
+ canCreateChildren: string;
165
+ canEditChildren: string;
166
+ canRevokeChildren: string;
167
+ canManageChildrenPermissions: string;
168
+ canViewAnalytics: boolean;
169
+ }, {
170
+ role: string;
171
+ canEdit: boolean;
172
+ canIssue: boolean;
173
+ canRevoke: boolean;
174
+ canManagePermissions: boolean;
175
+ canIssueChildren: string;
176
+ canCreateChildren: string;
177
+ canEditChildren: string;
178
+ canRevokeChildren: string;
179
+ canManageChildrenPermissions: string;
180
+ canViewAnalytics: boolean;
181
+ }>;
182
+ export type BoostPermissions = z.infer<typeof BoostPermissionsValidator>;
145
183
  export declare const LCNBoostStatus: z.ZodEnum<["DRAFT", "LIVE"]>;
146
184
  export type LCNBoostStatusEnum = z.infer<typeof LCNBoostStatus>;
147
185
  export declare const BoostValidator: z.ZodObject<{
@@ -151,12 +189,62 @@ export declare const BoostValidator: z.ZodObject<{
151
189
  category: z.ZodOptional<z.ZodString>;
152
190
  status: z.ZodOptional<z.ZodEnum<["DRAFT", "LIVE"]>>;
153
191
  autoConnectRecipients: z.ZodOptional<z.ZodBoolean>;
192
+ claimPermissions: z.ZodOptional<z.ZodObject<{
193
+ role: z.ZodString;
194
+ canEdit: z.ZodBoolean;
195
+ canIssue: z.ZodBoolean;
196
+ canRevoke: z.ZodBoolean;
197
+ canManagePermissions: z.ZodBoolean;
198
+ canIssueChildren: z.ZodString;
199
+ canCreateChildren: z.ZodString;
200
+ canEditChildren: z.ZodString;
201
+ canRevokeChildren: z.ZodString;
202
+ canManageChildrenPermissions: z.ZodString;
203
+ canViewAnalytics: z.ZodBoolean;
204
+ }, "strip", z.ZodTypeAny, {
205
+ role: string;
206
+ canEdit: boolean;
207
+ canIssue: boolean;
208
+ canRevoke: boolean;
209
+ canManagePermissions: boolean;
210
+ canIssueChildren: string;
211
+ canCreateChildren: string;
212
+ canEditChildren: string;
213
+ canRevokeChildren: string;
214
+ canManageChildrenPermissions: string;
215
+ canViewAnalytics: boolean;
216
+ }, {
217
+ role: string;
218
+ canEdit: boolean;
219
+ canIssue: boolean;
220
+ canRevoke: boolean;
221
+ canManagePermissions: boolean;
222
+ canIssueChildren: string;
223
+ canCreateChildren: string;
224
+ canEditChildren: string;
225
+ canRevokeChildren: string;
226
+ canManageChildrenPermissions: string;
227
+ canViewAnalytics: boolean;
228
+ }>>;
154
229
  }, "strip", z.ZodTypeAny, {
155
230
  type?: string | undefined;
156
231
  status?: "DRAFT" | "LIVE" | undefined;
157
232
  name?: string | undefined;
158
233
  category?: string | undefined;
159
234
  autoConnectRecipients?: boolean | undefined;
235
+ claimPermissions?: {
236
+ role: string;
237
+ canEdit: boolean;
238
+ canIssue: boolean;
239
+ canRevoke: boolean;
240
+ canManagePermissions: boolean;
241
+ canIssueChildren: string;
242
+ canCreateChildren: string;
243
+ canEditChildren: string;
244
+ canRevokeChildren: string;
245
+ canManageChildrenPermissions: string;
246
+ canViewAnalytics: boolean;
247
+ } | undefined;
160
248
  uri: string;
161
249
  }, {
162
250
  type?: string | undefined;
@@ -164,9 +252,95 @@ export declare const BoostValidator: z.ZodObject<{
164
252
  name?: string | undefined;
165
253
  category?: string | undefined;
166
254
  autoConnectRecipients?: boolean | undefined;
255
+ claimPermissions?: {
256
+ role: string;
257
+ canEdit: boolean;
258
+ canIssue: boolean;
259
+ canRevoke: boolean;
260
+ canManagePermissions: boolean;
261
+ canIssueChildren: string;
262
+ canCreateChildren: string;
263
+ canEditChildren: string;
264
+ canRevokeChildren: string;
265
+ canManageChildrenPermissions: string;
266
+ canViewAnalytics: boolean;
267
+ } | undefined;
167
268
  uri: string;
168
269
  }>;
169
270
  export type Boost = z.infer<typeof BoostValidator>;
271
+ export declare const BoostQueryValidator: z.ZodObject<{
272
+ uri: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
273
+ $in: z.ZodArray<z.ZodString, "many">;
274
+ }, "strip", z.ZodTypeAny, {
275
+ $in: string[];
276
+ }, {
277
+ $in: string[];
278
+ }>]>>;
279
+ name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
280
+ $in: z.ZodArray<z.ZodString, "many">;
281
+ }, "strip", z.ZodTypeAny, {
282
+ $in: string[];
283
+ }, {
284
+ $in: string[];
285
+ }>]>>;
286
+ type: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
287
+ $in: z.ZodArray<z.ZodString, "many">;
288
+ }, "strip", z.ZodTypeAny, {
289
+ $in: string[];
290
+ }, {
291
+ $in: string[];
292
+ }>]>>;
293
+ category: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
294
+ $in: z.ZodArray<z.ZodString, "many">;
295
+ }, "strip", z.ZodTypeAny, {
296
+ $in: string[];
297
+ }, {
298
+ $in: string[];
299
+ }>]>>;
300
+ status: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["DRAFT", "LIVE"]>, z.ZodObject<{
301
+ $in: z.ZodArray<z.ZodEnum<["DRAFT", "LIVE"]>, "many">;
302
+ }, "strip", z.ZodTypeAny, {
303
+ $in: ("DRAFT" | "LIVE")[];
304
+ }, {
305
+ $in: ("DRAFT" | "LIVE")[];
306
+ }>]>>;
307
+ autoConnectRecipients: z.ZodOptional<z.ZodBoolean>;
308
+ }, "strip", z.ZodTypeAny, {
309
+ type?: string | {
310
+ $in: string[];
311
+ } | undefined;
312
+ status?: "DRAFT" | "LIVE" | {
313
+ $in: ("DRAFT" | "LIVE")[];
314
+ } | undefined;
315
+ name?: string | {
316
+ $in: string[];
317
+ } | undefined;
318
+ uri?: string | {
319
+ $in: string[];
320
+ } | undefined;
321
+ category?: string | {
322
+ $in: string[];
323
+ } | undefined;
324
+ autoConnectRecipients?: boolean | undefined;
325
+ }, {
326
+ type?: string | {
327
+ $in: string[];
328
+ } | undefined;
329
+ status?: "DRAFT" | "LIVE" | {
330
+ $in: ("DRAFT" | "LIVE")[];
331
+ } | undefined;
332
+ name?: string | {
333
+ $in: string[];
334
+ } | undefined;
335
+ uri?: string | {
336
+ $in: string[];
337
+ } | undefined;
338
+ category?: string | {
339
+ $in: string[];
340
+ } | undefined;
341
+ autoConnectRecipients?: boolean | undefined;
342
+ }>;
343
+ export type BoostQuery = z.infer<typeof BoostQueryValidator>;
170
344
  export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
171
345
  cursor: z.ZodOptional<z.ZodString>;
172
346
  hasMore: z.ZodBoolean;
@@ -178,12 +352,62 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
178
352
  category: z.ZodOptional<z.ZodString>;
179
353
  status: z.ZodOptional<z.ZodEnum<["DRAFT", "LIVE"]>>;
180
354
  autoConnectRecipients: z.ZodOptional<z.ZodBoolean>;
355
+ claimPermissions: z.ZodOptional<z.ZodObject<{
356
+ role: z.ZodString;
357
+ canEdit: z.ZodBoolean;
358
+ canIssue: z.ZodBoolean;
359
+ canRevoke: z.ZodBoolean;
360
+ canManagePermissions: z.ZodBoolean;
361
+ canIssueChildren: z.ZodString;
362
+ canCreateChildren: z.ZodString;
363
+ canEditChildren: z.ZodString;
364
+ canRevokeChildren: z.ZodString;
365
+ canManageChildrenPermissions: z.ZodString;
366
+ canViewAnalytics: z.ZodBoolean;
367
+ }, "strip", z.ZodTypeAny, {
368
+ role: string;
369
+ canEdit: boolean;
370
+ canIssue: boolean;
371
+ canRevoke: boolean;
372
+ canManagePermissions: boolean;
373
+ canIssueChildren: string;
374
+ canCreateChildren: string;
375
+ canEditChildren: string;
376
+ canRevokeChildren: string;
377
+ canManageChildrenPermissions: string;
378
+ canViewAnalytics: boolean;
379
+ }, {
380
+ role: string;
381
+ canEdit: boolean;
382
+ canIssue: boolean;
383
+ canRevoke: boolean;
384
+ canManagePermissions: boolean;
385
+ canIssueChildren: string;
386
+ canCreateChildren: string;
387
+ canEditChildren: string;
388
+ canRevokeChildren: string;
389
+ canManageChildrenPermissions: string;
390
+ canViewAnalytics: boolean;
391
+ }>>;
181
392
  }, "strip", z.ZodTypeAny, {
182
393
  type?: string | undefined;
183
394
  status?: "DRAFT" | "LIVE" | undefined;
184
395
  name?: string | undefined;
185
396
  category?: string | undefined;
186
397
  autoConnectRecipients?: boolean | undefined;
398
+ claimPermissions?: {
399
+ role: string;
400
+ canEdit: boolean;
401
+ canIssue: boolean;
402
+ canRevoke: boolean;
403
+ canManagePermissions: boolean;
404
+ canIssueChildren: string;
405
+ canCreateChildren: string;
406
+ canEditChildren: string;
407
+ canRevokeChildren: string;
408
+ canManageChildrenPermissions: string;
409
+ canViewAnalytics: boolean;
410
+ } | undefined;
187
411
  uri: string;
188
412
  }, {
189
413
  type?: string | undefined;
@@ -191,6 +415,19 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
191
415
  name?: string | undefined;
192
416
  category?: string | undefined;
193
417
  autoConnectRecipients?: boolean | undefined;
418
+ claimPermissions?: {
419
+ role: string;
420
+ canEdit: boolean;
421
+ canIssue: boolean;
422
+ canRevoke: boolean;
423
+ canManagePermissions: boolean;
424
+ canIssueChildren: string;
425
+ canCreateChildren: string;
426
+ canEditChildren: string;
427
+ canRevokeChildren: string;
428
+ canManageChildrenPermissions: string;
429
+ canViewAnalytics: boolean;
430
+ } | undefined;
194
431
  uri: string;
195
432
  }>, "many">;
196
433
  }>, "strip", z.ZodTypeAny, {
@@ -202,6 +439,19 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
202
439
  name?: string | undefined;
203
440
  category?: string | undefined;
204
441
  autoConnectRecipients?: boolean | undefined;
442
+ claimPermissions?: {
443
+ role: string;
444
+ canEdit: boolean;
445
+ canIssue: boolean;
446
+ canRevoke: boolean;
447
+ canManagePermissions: boolean;
448
+ canIssueChildren: string;
449
+ canCreateChildren: string;
450
+ canEditChildren: string;
451
+ canRevokeChildren: string;
452
+ canManageChildrenPermissions: string;
453
+ canViewAnalytics: boolean;
454
+ } | undefined;
205
455
  uri: string;
206
456
  }[];
207
457
  }, {
@@ -213,6 +463,19 @@ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
213
463
  name?: string | undefined;
214
464
  category?: string | undefined;
215
465
  autoConnectRecipients?: boolean | undefined;
466
+ claimPermissions?: {
467
+ role: string;
468
+ canEdit: boolean;
469
+ canIssue: boolean;
470
+ canRevoke: boolean;
471
+ canManagePermissions: boolean;
472
+ canIssueChildren: string;
473
+ canCreateChildren: string;
474
+ canEditChildren: string;
475
+ canRevokeChildren: string;
476
+ canManageChildrenPermissions: string;
477
+ canViewAnalytics: boolean;
478
+ } | undefined;
216
479
  uri: string;
217
480
  }[];
218
481
  }>;
@@ -447,44 +710,6 @@ export declare const LCNBoostClaimLinkOptionsValidator: z.ZodObject<{
447
710
  totalUses?: number | undefined;
448
711
  }>;
449
712
  export type LCNBoostClaimLinkOptionsType = z.infer<typeof LCNBoostClaimLinkOptionsValidator>;
450
- export declare const BoostPermissionsValidator: z.ZodObject<{
451
- role: z.ZodString;
452
- canEdit: z.ZodBoolean;
453
- canIssue: z.ZodBoolean;
454
- canRevoke: z.ZodBoolean;
455
- canManagePermissions: z.ZodBoolean;
456
- canIssueChildren: z.ZodString;
457
- canCreateChildren: z.ZodString;
458
- canEditChildren: z.ZodString;
459
- canRevokeChildren: z.ZodString;
460
- canManageChildrenPermissions: z.ZodString;
461
- canViewAnalytics: z.ZodBoolean;
462
- }, "strip", z.ZodTypeAny, {
463
- role: string;
464
- canEdit: boolean;
465
- canIssue: boolean;
466
- canRevoke: boolean;
467
- canManagePermissions: boolean;
468
- canIssueChildren: string;
469
- canCreateChildren: string;
470
- canEditChildren: string;
471
- canRevokeChildren: string;
472
- canManageChildrenPermissions: string;
473
- canViewAnalytics: boolean;
474
- }, {
475
- role: string;
476
- canEdit: boolean;
477
- canIssue: boolean;
478
- canRevoke: boolean;
479
- canManagePermissions: boolean;
480
- canIssueChildren: string;
481
- canCreateChildren: string;
482
- canEditChildren: string;
483
- canRevokeChildren: string;
484
- canManageChildrenPermissions: string;
485
- canViewAnalytics: boolean;
486
- }>;
487
- export type BoostPermissions = z.infer<typeof BoostPermissionsValidator>;
488
713
  export declare const LCNSigningAuthorityValidator: z.ZodObject<{
489
714
  endpoint: z.ZodString;
490
715
  }, "strip", z.ZodTypeAny, {
package/dist/lcn.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"lcn.d.ts","sourceRoot":"","sources":["../src/lcn.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"lcn.d.ts","sourceRoot":"","sources":["../src/lcn.ts"],"names":[],"mappings":"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"}
@@ -30,6 +30,7 @@ __export(src_exports, {
30
30
  AlignmentTargetTypeValidator: () => AlignmentTargetTypeValidator,
31
31
  AlignmentValidator: () => AlignmentValidator,
32
32
  BoostPermissionsValidator: () => BoostPermissionsValidator,
33
+ BoostQueryValidator: () => BoostQueryValidator,
33
34
  BoostRecipientValidator: () => BoostRecipientValidator,
34
35
  BoostValidator: () => BoostValidator,
35
36
  ConsentFlowContractDataValidator: () => ConsentFlowContractDataValidator,
@@ -3902,6 +3903,19 @@ var SentCredentialInfoValidator = mod.object({
3902
3903
  sent: mod.string().datetime(),
3903
3904
  received: mod.string().datetime().optional()
3904
3905
  });
3906
+ var BoostPermissionsValidator = mod.object({
3907
+ role: mod.string(),
3908
+ canEdit: mod.boolean(),
3909
+ canIssue: mod.boolean(),
3910
+ canRevoke: mod.boolean(),
3911
+ canManagePermissions: mod.boolean(),
3912
+ canIssueChildren: mod.string(),
3913
+ canCreateChildren: mod.string(),
3914
+ canEditChildren: mod.string(),
3915
+ canRevokeChildren: mod.string(),
3916
+ canManageChildrenPermissions: mod.string(),
3917
+ canViewAnalytics: mod.boolean()
3918
+ });
3905
3919
  var LCNBoostStatus = mod.enum(["DRAFT", "LIVE"]);
3906
3920
  var BoostValidator = mod.object({
3907
3921
  uri: mod.string(),
@@ -3909,8 +3923,17 @@ var BoostValidator = mod.object({
3909
3923
  type: mod.string().optional(),
3910
3924
  category: mod.string().optional(),
3911
3925
  status: LCNBoostStatus.optional(),
3912
- autoConnectRecipients: mod.boolean().optional()
3926
+ autoConnectRecipients: mod.boolean().optional(),
3927
+ claimPermissions: BoostPermissionsValidator.optional()
3913
3928
  });
3929
+ var BoostQueryValidator = mod.object({
3930
+ uri: mod.string().or(mod.object({ $in: mod.string().array() })),
3931
+ name: mod.string().or(mod.object({ $in: mod.string().array() })),
3932
+ type: mod.string().or(mod.object({ $in: mod.string().array() })),
3933
+ category: mod.string().or(mod.object({ $in: mod.string().array() })),
3934
+ status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
3935
+ autoConnectRecipients: mod.boolean()
3936
+ }).partial();
3914
3937
  var PaginatedBoostsValidator = PaginationResponseValidator.extend({
3915
3938
  records: BoostValidator.array()
3916
3939
  });
@@ -3931,19 +3954,6 @@ var LCNBoostClaimLinkOptionsValidator = mod.object({
3931
3954
  ttlSeconds: mod.number().optional(),
3932
3955
  totalUses: mod.number().optional()
3933
3956
  });
3934
- var BoostPermissionsValidator = mod.object({
3935
- role: mod.string(),
3936
- canEdit: mod.boolean(),
3937
- canIssue: mod.boolean(),
3938
- canRevoke: mod.boolean(),
3939
- canManagePermissions: mod.boolean(),
3940
- canIssueChildren: mod.string(),
3941
- canCreateChildren: mod.string(),
3942
- canEditChildren: mod.string(),
3943
- canRevokeChildren: mod.string(),
3944
- canManageChildrenPermissions: mod.string(),
3945
- canViewAnalytics: mod.boolean()
3946
- });
3947
3957
  var LCNSigningAuthorityValidator = mod.object({
3948
3958
  endpoint: mod.string()
3949
3959
  });