@ewanc26/atproto 0.2.8 → 0.2.10

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/src/types.ts CHANGED
@@ -322,3 +322,130 @@ export interface PopfeedReview {
322
322
  containsSpoilers?: boolean;
323
323
  isRevisit?: boolean;
324
324
  }
325
+
326
+ // Sifa Professional Profile Types
327
+
328
+ export interface SifaLocation {
329
+ countryCode: string;
330
+ region?: string;
331
+ city?: string;
332
+ }
333
+
334
+ export interface SifaProfileData {
335
+ headline: string;
336
+ about: string;
337
+ industry?: string;
338
+ location?: SifaLocation;
339
+ openTo: string[];
340
+ preferredWorkplace: string[];
341
+ langs: string[];
342
+ createdAt: string;
343
+ }
344
+
345
+ export interface SifaSkill {
346
+ name: string;
347
+ category: string;
348
+ uri: string;
349
+ }
350
+
351
+ export interface SifaProject {
352
+ name: string;
353
+ description?: string;
354
+ url?: string;
355
+ startedAt?: string;
356
+ uri: string;
357
+ }
358
+
359
+ export interface SifaLanguage {
360
+ name: string;
361
+ proficiency: string;
362
+ uri: string;
363
+ }
364
+
365
+ export interface SifaCertification {
366
+ name: string;
367
+ authority?: string;
368
+ issuedAt?: string;
369
+ uri: string;
370
+ }
371
+
372
+ export interface SifaExternalAccount {
373
+ platform: string;
374
+ url: string;
375
+ label?: string;
376
+ feedUrl?: string;
377
+ isPrimary?: boolean;
378
+ uri: string;
379
+ }
380
+
381
+ export interface SifaPosition {
382
+ company: string;
383
+ companyDid?: string;
384
+ title: string;
385
+ description?: string;
386
+ employmentType?: string;
387
+ workplaceType?: string;
388
+ location?: SifaLocation;
389
+ startedAt: string;
390
+ endedAt?: string;
391
+ skills?: string[];
392
+ isPrimary?: boolean;
393
+ uri: string;
394
+ }
395
+
396
+ export interface SifaEducation {
397
+ institution: string;
398
+ institutionDid?: string;
399
+ degree?: string;
400
+ fieldOfStudy?: string;
401
+ grade?: string;
402
+ activities?: string;
403
+ description?: string;
404
+ location?: SifaLocation;
405
+ startedAt?: string;
406
+ endedAt?: string;
407
+ uri: string;
408
+ }
409
+
410
+ export interface SifaVolunteering {
411
+ organization: string;
412
+ organizationDid?: string;
413
+ role?: string;
414
+ cause?: string;
415
+ description?: string;
416
+ startedAt?: string;
417
+ endedAt?: string;
418
+ uri: string;
419
+ }
420
+
421
+ export interface SifaHonor {
422
+ title: string;
423
+ issuer?: string;
424
+ issuerDid?: string;
425
+ description?: string;
426
+ awardedAt?: string;
427
+ uri: string;
428
+ }
429
+
430
+ export interface SifaCourse {
431
+ name: string;
432
+ number?: string;
433
+ institution?: string;
434
+ education?: string;
435
+ uri: string;
436
+ }
437
+
438
+ export interface SifaPublicationAuthor {
439
+ name: string;
440
+ did?: string;
441
+ }
442
+
443
+ export interface SifaPublication {
444
+ title: string;
445
+ publisher?: string;
446
+ url?: string;
447
+ description?: string;
448
+ authors?: SifaPublicationAuthor[];
449
+ publishedAt?: string;
450
+ uri: string;
451
+ }