@learncard/types 5.5.1 → 5.5.3
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/lcn.d.ts +176 -0
- package/dist/lcn.d.ts.map +1 -1
- package/dist/obv3.d.ts +1209 -10501
- package/dist/obv3.d.ts.map +1 -1
- package/dist/types.cjs.development.js +12 -2
- 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 +12 -2
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -4
package/dist/lcn.d.ts
CHANGED
@@ -167,6 +167,56 @@ export declare const BoostValidator: z.ZodObject<{
|
|
167
167
|
uri: string;
|
168
168
|
}>;
|
169
169
|
export type Boost = z.infer<typeof BoostValidator>;
|
170
|
+
export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
|
171
|
+
cursor: z.ZodOptional<z.ZodString>;
|
172
|
+
hasMore: z.ZodBoolean;
|
173
|
+
}, {
|
174
|
+
records: z.ZodArray<z.ZodObject<{
|
175
|
+
uri: z.ZodString;
|
176
|
+
name: z.ZodOptional<z.ZodString>;
|
177
|
+
type: z.ZodOptional<z.ZodString>;
|
178
|
+
category: z.ZodOptional<z.ZodString>;
|
179
|
+
status: z.ZodOptional<z.ZodEnum<["DRAFT", "LIVE"]>>;
|
180
|
+
autoConnectRecipients: z.ZodOptional<z.ZodBoolean>;
|
181
|
+
}, "strip", z.ZodTypeAny, {
|
182
|
+
type?: string | undefined;
|
183
|
+
status?: "DRAFT" | "LIVE" | undefined;
|
184
|
+
name?: string | undefined;
|
185
|
+
category?: string | undefined;
|
186
|
+
autoConnectRecipients?: boolean | undefined;
|
187
|
+
uri: string;
|
188
|
+
}, {
|
189
|
+
type?: string | undefined;
|
190
|
+
status?: "DRAFT" | "LIVE" | undefined;
|
191
|
+
name?: string | undefined;
|
192
|
+
category?: string | undefined;
|
193
|
+
autoConnectRecipients?: boolean | undefined;
|
194
|
+
uri: string;
|
195
|
+
}>, "many">;
|
196
|
+
}>, "strip", z.ZodTypeAny, {
|
197
|
+
cursor?: string | undefined;
|
198
|
+
hasMore: boolean;
|
199
|
+
records: {
|
200
|
+
type?: string | undefined;
|
201
|
+
status?: "DRAFT" | "LIVE" | undefined;
|
202
|
+
name?: string | undefined;
|
203
|
+
category?: string | undefined;
|
204
|
+
autoConnectRecipients?: boolean | undefined;
|
205
|
+
uri: string;
|
206
|
+
}[];
|
207
|
+
}, {
|
208
|
+
cursor?: string | undefined;
|
209
|
+
hasMore: boolean;
|
210
|
+
records: {
|
211
|
+
type?: string | undefined;
|
212
|
+
status?: "DRAFT" | "LIVE" | undefined;
|
213
|
+
name?: string | undefined;
|
214
|
+
category?: string | undefined;
|
215
|
+
autoConnectRecipients?: boolean | undefined;
|
216
|
+
uri: string;
|
217
|
+
}[];
|
218
|
+
}>;
|
219
|
+
export type PaginatedBoostsType = z.infer<typeof PaginatedBoostsValidator>;
|
170
220
|
export declare const BoostRecipientValidator: z.ZodObject<{
|
171
221
|
to: z.ZodObject<{
|
172
222
|
profileId: z.ZodString;
|
@@ -246,6 +296,132 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
246
296
|
from: string;
|
247
297
|
}>;
|
248
298
|
export type BoostRecipientInfo = z.infer<typeof BoostRecipientValidator>;
|
299
|
+
export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShape<{
|
300
|
+
cursor: z.ZodOptional<z.ZodString>;
|
301
|
+
hasMore: z.ZodBoolean;
|
302
|
+
}, {
|
303
|
+
records: z.ZodArray<z.ZodObject<{
|
304
|
+
to: z.ZodObject<{
|
305
|
+
profileId: z.ZodString;
|
306
|
+
displayName: z.ZodDefault<z.ZodString>;
|
307
|
+
shortBio: z.ZodDefault<z.ZodString>;
|
308
|
+
bio: z.ZodDefault<z.ZodString>;
|
309
|
+
did: z.ZodString;
|
310
|
+
email: z.ZodOptional<z.ZodString>;
|
311
|
+
image: z.ZodOptional<z.ZodString>;
|
312
|
+
heroImage: z.ZodOptional<z.ZodString>;
|
313
|
+
websiteLink: z.ZodOptional<z.ZodString>;
|
314
|
+
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
315
|
+
type: z.ZodOptional<z.ZodString>;
|
316
|
+
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
317
|
+
}, "strip", z.ZodTypeAny, {
|
318
|
+
type?: string | undefined;
|
319
|
+
image?: string | undefined;
|
320
|
+
email?: string | undefined;
|
321
|
+
heroImage?: string | undefined;
|
322
|
+
websiteLink?: string | undefined;
|
323
|
+
isServiceProfile?: boolean | undefined;
|
324
|
+
notificationsWebhook?: string | undefined;
|
325
|
+
profileId: string;
|
326
|
+
displayName: string;
|
327
|
+
shortBio: string;
|
328
|
+
bio: string;
|
329
|
+
did: string;
|
330
|
+
}, {
|
331
|
+
type?: string | undefined;
|
332
|
+
image?: string | undefined;
|
333
|
+
email?: string | undefined;
|
334
|
+
displayName?: string | undefined;
|
335
|
+
shortBio?: string | undefined;
|
336
|
+
bio?: string | undefined;
|
337
|
+
heroImage?: string | undefined;
|
338
|
+
websiteLink?: string | undefined;
|
339
|
+
isServiceProfile?: boolean | undefined;
|
340
|
+
notificationsWebhook?: string | undefined;
|
341
|
+
profileId: string;
|
342
|
+
did: string;
|
343
|
+
}>;
|
344
|
+
from: z.ZodString;
|
345
|
+
received: z.ZodOptional<z.ZodString>;
|
346
|
+
}, "strip", z.ZodTypeAny, {
|
347
|
+
received?: string | undefined;
|
348
|
+
to: {
|
349
|
+
type?: string | undefined;
|
350
|
+
image?: string | undefined;
|
351
|
+
email?: string | undefined;
|
352
|
+
heroImage?: string | undefined;
|
353
|
+
websiteLink?: string | undefined;
|
354
|
+
isServiceProfile?: boolean | undefined;
|
355
|
+
notificationsWebhook?: string | undefined;
|
356
|
+
profileId: string;
|
357
|
+
displayName: string;
|
358
|
+
shortBio: string;
|
359
|
+
bio: string;
|
360
|
+
did: string;
|
361
|
+
};
|
362
|
+
from: string;
|
363
|
+
}, {
|
364
|
+
received?: string | undefined;
|
365
|
+
to: {
|
366
|
+
type?: string | undefined;
|
367
|
+
image?: string | undefined;
|
368
|
+
email?: string | undefined;
|
369
|
+
displayName?: string | undefined;
|
370
|
+
shortBio?: string | undefined;
|
371
|
+
bio?: string | undefined;
|
372
|
+
heroImage?: string | undefined;
|
373
|
+
websiteLink?: string | undefined;
|
374
|
+
isServiceProfile?: boolean | undefined;
|
375
|
+
notificationsWebhook?: string | undefined;
|
376
|
+
profileId: string;
|
377
|
+
did: string;
|
378
|
+
};
|
379
|
+
from: string;
|
380
|
+
}>, "many">;
|
381
|
+
}>, "strip", z.ZodTypeAny, {
|
382
|
+
cursor?: string | undefined;
|
383
|
+
hasMore: boolean;
|
384
|
+
records: {
|
385
|
+
received?: string | undefined;
|
386
|
+
to: {
|
387
|
+
type?: string | undefined;
|
388
|
+
image?: string | undefined;
|
389
|
+
email?: string | undefined;
|
390
|
+
heroImage?: string | undefined;
|
391
|
+
websiteLink?: string | undefined;
|
392
|
+
isServiceProfile?: boolean | undefined;
|
393
|
+
notificationsWebhook?: string | undefined;
|
394
|
+
profileId: string;
|
395
|
+
displayName: string;
|
396
|
+
shortBio: string;
|
397
|
+
bio: string;
|
398
|
+
did: string;
|
399
|
+
};
|
400
|
+
from: string;
|
401
|
+
}[];
|
402
|
+
}, {
|
403
|
+
cursor?: string | undefined;
|
404
|
+
hasMore: boolean;
|
405
|
+
records: {
|
406
|
+
received?: string | undefined;
|
407
|
+
to: {
|
408
|
+
type?: string | undefined;
|
409
|
+
image?: string | undefined;
|
410
|
+
email?: string | undefined;
|
411
|
+
displayName?: string | undefined;
|
412
|
+
shortBio?: string | undefined;
|
413
|
+
bio?: string | undefined;
|
414
|
+
heroImage?: string | undefined;
|
415
|
+
websiteLink?: string | undefined;
|
416
|
+
isServiceProfile?: boolean | undefined;
|
417
|
+
notificationsWebhook?: string | undefined;
|
418
|
+
profileId: string;
|
419
|
+
did: string;
|
420
|
+
};
|
421
|
+
from: string;
|
422
|
+
}[];
|
423
|
+
}>;
|
424
|
+
export type PaginatedBoostRecipientsType = z.infer<typeof PaginatedBoostRecipientsValidator>;
|
249
425
|
export declare const LCNBoostClaimLinkSigningAuthorityValidator: z.ZodObject<{
|
250
426
|
endpoint: z.ZodString;
|
251
427
|
name: z.ZodString;
|
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,cAAc,8BAA4B,CAAC;AACxD,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEhE,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;EAOzB,CAAC;AACH,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEnD,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIlC,CAAC;
|
1
|
+
{"version":3,"file":"lcn.d.ts","sourceRoot":"","sources":["../src/lcn.ts"],"names":[],"mappings":"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"}
|