@hypercerts-org/lexicon 0.11.2 → 0.13.0

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +92 -9
  3. package/SCHEMAS.md +36 -18
  4. package/dist/exports.d.ts +49 -2
  5. package/dist/exports.d.ts.map +1 -1
  6. package/dist/generated/exports.d.ts +49 -2
  7. package/dist/generated/exports.d.ts.map +1 -1
  8. package/dist/generated/lexicons.d.ts +90 -6
  9. package/dist/generated/lexicons.d.ts.map +1 -1
  10. package/dist/generated/types/app/certified/actor/organization.d.ts +8 -0
  11. package/dist/generated/types/app/certified/actor/organization.d.ts.map +1 -1
  12. package/dist/generated/types/app/certified/graph/follow.d.ts +18 -0
  13. package/dist/generated/types/app/certified/graph/follow.d.ts.map +1 -0
  14. package/dist/generated/types/app/certified/location.d.ts +1 -1
  15. package/dist/generated/types/app/certified/location.d.ts.map +1 -1
  16. package/dist/generated/types/org/hypercerts/workscope/tag.d.ts +2 -2
  17. package/dist/generated/types/org/hypercerts/workscope/tag.d.ts.map +1 -1
  18. package/dist/index.cjs +350 -220
  19. package/dist/index.cjs.map +1 -1
  20. package/dist/index.mjs +342 -216
  21. package/dist/index.mjs.map +1 -1
  22. package/dist/lexicons.cjs +50 -3
  23. package/dist/lexicons.cjs.map +1 -1
  24. package/dist/lexicons.d.ts +90 -6
  25. package/dist/lexicons.d.ts.map +1 -1
  26. package/dist/lexicons.mjs +50 -3
  27. package/dist/lexicons.mjs.map +1 -1
  28. package/dist/types/app/certified/actor/organization.d.ts +8 -0
  29. package/dist/types/app/certified/actor/organization.d.ts.map +1 -1
  30. package/dist/types/app/certified/graph/follow.d.ts +18 -0
  31. package/dist/types/app/certified/graph/follow.d.ts.map +1 -0
  32. package/dist/types/app/certified/location.d.ts +1 -1
  33. package/dist/types/app/certified/location.d.ts.map +1 -1
  34. package/dist/types/org/hypercerts/workscope/tag.d.ts +2 -2
  35. package/dist/types/org/hypercerts/workscope/tag.d.ts.map +1 -1
  36. package/lexicons/app/certified/actor/organization.json +14 -0
  37. package/lexicons/app/certified/graph/follow.json +32 -0
  38. package/lexicons/app/certified/location.json +1 -1
  39. package/lexicons/org/hypercerts/workscope/tag.json +2 -2
  40. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -16,7 +16,7 @@ function is$type($type, id, hash) {
16
16
  $type.startsWith(id) &&
17
17
  $type.endsWith(hash);
18
18
  }
19
- function is$typed$G(v, id, hash) {
19
+ function is$typed$H(v, id, hash) {
20
20
  return isObject(v) && '$type' in v && is$type(v.$type, id, hash);
21
21
  }
22
22
  function maybe$typed(v, id, hash) {
@@ -154,6 +154,20 @@ const schemaDict = {
154
154
  format: 'datetime',
155
155
  description: "When the organization was established. Stored as datetime per ATProto conventions (no date-only format exists). Clients should use midnight UTC (e.g., '2005-01-01T00:00:00.000Z'); consumers should treat only the date portion as canonical.",
156
156
  },
157
+ longDescription: {
158
+ type: 'union',
159
+ refs: [
160
+ 'lex:org.hypercerts.defs#descriptionString',
161
+ 'lex:pub.leaflet.pages.linearDocument',
162
+ 'lex:com.atproto.repo.strongRef',
163
+ ],
164
+ description: 'Long-form description of the organization, such as its mission, history, or detailed project narrative. An inline string for plain text or markdown, a Leaflet linear document record embedded directly, or a strong reference to an existing document record.',
165
+ },
166
+ visibility: {
167
+ type: 'string',
168
+ knownValues: ['public', 'unlisted'],
169
+ description: 'Controls whether the organization or project is publicly discoverable on platforms that honor this setting.',
170
+ },
157
171
  createdAt: {
158
172
  type: 'string',
159
173
  format: 'datetime',
@@ -414,6 +428,38 @@ const schemaDict = {
414
428
  },
415
429
  },
416
430
  },
431
+ AppCertifiedGraphFollow: {
432
+ lexicon: 1,
433
+ id: 'app.certified.graph.follow',
434
+ defs: {
435
+ main: {
436
+ type: 'record',
437
+ description: "Record declaring a social 'follow' relationship of another account. Duplicate follows will be ignored by the AppView.",
438
+ key: 'tid',
439
+ record: {
440
+ type: 'object',
441
+ required: ['subject', 'createdAt'],
442
+ properties: {
443
+ subject: {
444
+ type: 'string',
445
+ format: 'did',
446
+ description: 'DID of the account being followed.',
447
+ },
448
+ createdAt: {
449
+ type: 'string',
450
+ format: 'datetime',
451
+ description: 'Client-declared timestamp when this record was originally created.',
452
+ },
453
+ via: {
454
+ type: 'ref',
455
+ ref: 'lex:com.atproto.repo.strongRef',
456
+ description: 'Optional strong reference to a record that mediated this follow (e.g. a starter pack or other curated list). Mirrors the optional `via` field on app.bsky.graph.follow; the referenced record may conform with any lexicon.',
457
+ },
458
+ },
459
+ },
460
+ },
461
+ },
462
+ },
417
463
  AppCertifiedLinkEvm: {
418
464
  lexicon: 1,
419
465
  id: 'app.certified.link.evm',
@@ -533,7 +579,7 @@ const schemaDict = {
533
579
  },
534
580
  locationType: {
535
581
  type: 'string',
536
- description: 'An identifier for the format of the location data (e.g., coordinate-decimal, geojson-point). See the Location Protocol spec for the full registry: https://spec.decentralizedgeo.org/specification/location-types/#location-type-registry',
582
+ description: "An identifier for the format of the location data. Use `geojson-point` for a single GeoJSON Point; use `geojson` as the catch-all for any other GeoJSON geometry (Polygon, MultiPolygon, FeatureCollection, etc.) — the inner payload's own GeoJSON `type` field carries the specifics. Values beyond the known set are permitted; see the Location Protocol spec for the canonical registry: https://spec.decentralizedgeo.org/specification/location-types/#location-type-registry",
537
583
  knownValues: [
538
584
  'coordinate-decimal',
539
585
  'geojson-point',
@@ -1837,7 +1883,7 @@ const schemaDict = {
1837
1883
  },
1838
1884
  category: {
1839
1885
  type: 'string',
1840
- description: 'Category type of this scope.',
1886
+ description: 'Category type of this scope. Values beyond the known set are permitted.',
1841
1887
  knownValues: ['topic', 'language', 'domain', 'method'],
1842
1888
  maxLength: 50,
1843
1889
  },
@@ -1854,7 +1900,7 @@ const schemaDict = {
1854
1900
  },
1855
1901
  status: {
1856
1902
  type: 'string',
1857
- description: 'Lifecycle status of this tag. Communities propose tags, curators accept them, deprecated tags point to replacements via supersededBy.',
1903
+ description: 'Lifecycle status of this tag. Communities propose tags, curators accept them, deprecated tags point to replacements via supersededBy. Values beyond the known set are permitted.',
1858
1904
  knownValues: ['proposed', 'accepted', 'deprecated'],
1859
1905
  maxLength: 20,
1860
1906
  },
@@ -2534,8 +2580,8 @@ const schemaDict = {
2534
2580
  };
2535
2581
  const schemas = Object.values(schemaDict);
2536
2582
  const lexicons = new Lexicons(schemas);
2537
- function validate$G(v, id, hash, requiredType) {
2538
- return (requiredType ? is$typed$G : maybe$typed)(v, id, hash)
2583
+ function validate$H(v, id, hash, requiredType) {
2584
+ return (requiredType ? is$typed$H : maybe$typed)(v, id, hash)
2539
2585
  ? lexicons.validate(`${id}#${hash}`, v)
2540
2586
  : {
2541
2587
  success: false,
@@ -2550,6 +2596,7 @@ const ids = {
2550
2596
  AppCertifiedBadgeDefinition: 'app.certified.badge.definition',
2551
2597
  AppCertifiedBadgeResponse: 'app.certified.badge.response',
2552
2598
  AppCertifiedDefs: 'app.certified.defs',
2599
+ AppCertifiedGraphFollow: 'app.certified.graph.follow',
2553
2600
  AppCertifiedLinkEvm: 'app.certified.link.evm',
2554
2601
  AppCertifiedLocation: 'app.certified.location',
2555
2602
  ComAtprotoRepoStrongRef: 'com.atproto.repo.strongRef',
@@ -2587,9 +2634,9 @@ const ids = {
2587
2634
  PubLeafletRichtextFacet: 'pub.leaflet.richtext.facet',
2588
2635
  };
2589
2636
 
2590
- var lexicon$F = 1;
2591
- var id$1j = "app.bsky.richtext.facet";
2592
- var defs$H = {
2637
+ var lexicon$G = 1;
2638
+ var id$1l = "app.bsky.richtext.facet";
2639
+ var defs$I = {
2593
2640
  main: {
2594
2641
  type: "object",
2595
2642
  description: "Annotation of a sub-string within rich text.",
@@ -2675,14 +2722,14 @@ var defs$H = {
2675
2722
  }
2676
2723
  };
2677
2724
  var BSKY_RICHTEXT_FACET_LEXICON_JSON = {
2678
- lexicon: lexicon$F,
2679
- id: id$1j,
2680
- defs: defs$H
2725
+ lexicon: lexicon$G,
2726
+ id: id$1l,
2727
+ defs: defs$I
2681
2728
  };
2682
2729
 
2683
- var lexicon$E = 1;
2684
- var id$1i = "app.certified.actor.organization";
2685
- var defs$G = {
2730
+ var lexicon$F = 1;
2731
+ var id$1k = "app.certified.actor.organization";
2732
+ var defs$H = {
2686
2733
  main: {
2687
2734
  type: "record",
2688
2735
  description: "Extended metadata for an organization actor. Complements the base actor profile with organization-specific fields like legal structure and reference links.",
@@ -2721,6 +2768,23 @@ var defs$G = {
2721
2768
  format: "datetime",
2722
2769
  description: "When the organization was established. Stored as datetime per ATProto conventions (no date-only format exists). Clients should use midnight UTC (e.g., '2005-01-01T00:00:00.000Z'); consumers should treat only the date portion as canonical."
2723
2770
  },
2771
+ longDescription: {
2772
+ type: "union",
2773
+ refs: [
2774
+ "org.hypercerts.defs#descriptionString",
2775
+ "pub.leaflet.pages.linearDocument",
2776
+ "com.atproto.repo.strongRef"
2777
+ ],
2778
+ description: "Long-form description of the organization, such as its mission, history, or detailed project narrative. An inline string for plain text or markdown, a Leaflet linear document record embedded directly, or a strong reference to an existing document record."
2779
+ },
2780
+ visibility: {
2781
+ type: "string",
2782
+ knownValues: [
2783
+ "public",
2784
+ "unlisted"
2785
+ ],
2786
+ description: "Controls whether the organization or project is publicly discoverable on platforms that honor this setting."
2787
+ },
2724
2788
  createdAt: {
2725
2789
  type: "string",
2726
2790
  format: "datetime",
@@ -2753,14 +2817,14 @@ var defs$G = {
2753
2817
  }
2754
2818
  };
2755
2819
  var ACTOR_ORGANIZATION_LEXICON_JSON = {
2756
- lexicon: lexicon$E,
2757
- id: id$1i,
2758
- defs: defs$G
2820
+ lexicon: lexicon$F,
2821
+ id: id$1k,
2822
+ defs: defs$H
2759
2823
  };
2760
2824
 
2761
- var lexicon$D = 1;
2762
- var id$1h = "app.certified.actor.profile";
2763
- var defs$F = {
2825
+ var lexicon$E = 1;
2826
+ var id$1j = "app.certified.actor.profile";
2827
+ var defs$G = {
2764
2828
  main: {
2765
2829
  type: "record",
2766
2830
  description: "A declaration of a Certified account profile.",
@@ -2820,14 +2884,14 @@ var defs$F = {
2820
2884
  }
2821
2885
  };
2822
2886
  var ACTOR_PROFILE_LEXICON_JSON = {
2823
- lexicon: lexicon$D,
2824
- id: id$1h,
2825
- defs: defs$F
2887
+ lexicon: lexicon$E,
2888
+ id: id$1j,
2889
+ defs: defs$G
2826
2890
  };
2827
2891
 
2828
- var lexicon$C = 1;
2829
- var id$1g = "app.certified.badge.award";
2830
- var defs$E = {
2892
+ var lexicon$D = 1;
2893
+ var id$1i = "app.certified.badge.award";
2894
+ var defs$F = {
2831
2895
  main: {
2832
2896
  type: "record",
2833
2897
  description: "Records a badge award to a user, project, or activity claim.",
@@ -2874,14 +2938,14 @@ var defs$E = {
2874
2938
  }
2875
2939
  };
2876
2940
  var BADGE_AWARD_LEXICON_JSON = {
2877
- lexicon: lexicon$C,
2878
- id: id$1g,
2879
- defs: defs$E
2941
+ lexicon: lexicon$D,
2942
+ id: id$1i,
2943
+ defs: defs$F
2880
2944
  };
2881
2945
 
2882
- var lexicon$B = 1;
2883
- var id$1f = "app.certified.badge.definition";
2884
- var defs$D = {
2946
+ var lexicon$C = 1;
2947
+ var id$1h = "app.certified.badge.definition";
2948
+ var defs$E = {
2885
2949
  main: {
2886
2950
  type: "record",
2887
2951
  description: "Defines a badge that can be awarded via badge award records to users, projects, or activity claims.",
@@ -2948,14 +3012,14 @@ var defs$D = {
2948
3012
  }
2949
3013
  };
2950
3014
  var BADGE_DEFINITION_LEXICON_JSON = {
2951
- lexicon: lexicon$B,
2952
- id: id$1f,
2953
- defs: defs$D
3015
+ lexicon: lexicon$C,
3016
+ id: id$1h,
3017
+ defs: defs$E
2954
3018
  };
2955
3019
 
2956
- var lexicon$A = 1;
2957
- var id$1e = "app.certified.badge.response";
2958
- var defs$C = {
3020
+ var lexicon$B = 1;
3021
+ var id$1g = "app.certified.badge.response";
3022
+ var defs$D = {
2959
3023
  main: {
2960
3024
  type: "record",
2961
3025
  description: "Recipient response to a badge award.",
@@ -2996,15 +3060,15 @@ var defs$C = {
2996
3060
  }
2997
3061
  };
2998
3062
  var BADGE_RESPONSE_LEXICON_JSON = {
2999
- lexicon: lexicon$A,
3000
- id: id$1e,
3001
- defs: defs$C
3063
+ lexicon: lexicon$B,
3064
+ id: id$1g,
3065
+ defs: defs$D
3002
3066
  };
3003
3067
 
3004
- var lexicon$z = 1;
3005
- var id$1d = "app.certified.defs";
3068
+ var lexicon$A = 1;
3069
+ var id$1f = "app.certified.defs";
3006
3070
  var description$2 = "Common type definitions used across certified protocols.";
3007
- var defs$B = {
3071
+ var defs$C = {
3008
3072
  did: {
3009
3073
  type: "object",
3010
3074
  description: "A Decentralized Identifier (DID) string.",
@@ -3022,14 +3086,53 @@ var defs$B = {
3022
3086
  }
3023
3087
  };
3024
3088
  var CERTIFIED_DEFS_LEXICON_JSON = {
3025
- lexicon: lexicon$z,
3026
- id: id$1d,
3089
+ lexicon: lexicon$A,
3090
+ id: id$1f,
3027
3091
  description: description$2,
3092
+ defs: defs$C
3093
+ };
3094
+
3095
+ var lexicon$z = 1;
3096
+ var id$1e = "app.certified.graph.follow";
3097
+ var defs$B = {
3098
+ main: {
3099
+ type: "record",
3100
+ description: "Record declaring a social 'follow' relationship of another account. Duplicate follows will be ignored by the AppView.",
3101
+ key: "tid",
3102
+ record: {
3103
+ type: "object",
3104
+ required: [
3105
+ "subject",
3106
+ "createdAt"
3107
+ ],
3108
+ properties: {
3109
+ subject: {
3110
+ type: "string",
3111
+ format: "did",
3112
+ description: "DID of the account being followed."
3113
+ },
3114
+ createdAt: {
3115
+ type: "string",
3116
+ format: "datetime",
3117
+ description: "Client-declared timestamp when this record was originally created."
3118
+ },
3119
+ via: {
3120
+ type: "ref",
3121
+ ref: "com.atproto.repo.strongRef",
3122
+ description: "Optional strong reference to a record that mediated this follow (e.g. a starter pack or other curated list). Mirrors the optional `via` field on app.bsky.graph.follow; the referenced record may conform with any lexicon."
3123
+ }
3124
+ }
3125
+ }
3126
+ }
3127
+ };
3128
+ var GRAPH_FOLLOW_LEXICON_JSON = {
3129
+ lexicon: lexicon$z,
3130
+ id: id$1e,
3028
3131
  defs: defs$B
3029
3132
  };
3030
3133
 
3031
3134
  var lexicon$y = 1;
3032
- var id$1c = "app.certified.link.evm";
3135
+ var id$1d = "app.certified.link.evm";
3033
3136
  var defs$A = {
3034
3137
  main: {
3035
3138
  type: "record",
@@ -3131,12 +3234,12 @@ var defs$A = {
3131
3234
  };
3132
3235
  var LINK_EVM_LEXICON_JSON = {
3133
3236
  lexicon: lexicon$y,
3134
- id: id$1c,
3237
+ id: id$1d,
3135
3238
  defs: defs$A
3136
3239
  };
3137
3240
 
3138
3241
  var lexicon$x = 1;
3139
- var id$1b = "app.certified.location";
3242
+ var id$1c = "app.certified.location";
3140
3243
  var defs$z = {
3141
3244
  main: {
3142
3245
  type: "record",
@@ -3165,7 +3268,7 @@ var defs$z = {
3165
3268
  },
3166
3269
  locationType: {
3167
3270
  type: "string",
3168
- description: "An identifier for the format of the location data (e.g., coordinate-decimal, geojson-point). See the Location Protocol spec for the full registry: https://spec.decentralizedgeo.org/specification/location-types/#location-type-registry",
3271
+ description: "An identifier for the format of the location data. Use `geojson-point` for a single GeoJSON Point; use `geojson` as the catch-all for any other GeoJSON geometry (Polygon, MultiPolygon, FeatureCollection, etc.) — the inner payload's own GeoJSON `type` field carries the specifics. Values beyond the known set are permitted; see the Location Protocol spec for the canonical registry: https://spec.decentralizedgeo.org/specification/location-types/#location-type-registry",
3169
3272
  knownValues: [
3170
3273
  "coordinate-decimal",
3171
3274
  "geojson-point",
@@ -3225,12 +3328,12 @@ var defs$z = {
3225
3328
  };
3226
3329
  var LOCATION_LEXICON_JSON = {
3227
3330
  lexicon: lexicon$x,
3228
- id: id$1b,
3331
+ id: id$1c,
3229
3332
  defs: defs$z
3230
3333
  };
3231
3334
 
3232
3335
  var lexicon$w = 1;
3233
- var id$1a = "com.atproto.repo.strongRef";
3336
+ var id$1b = "com.atproto.repo.strongRef";
3234
3337
  var description$1 = "A URI with a content-hash fingerprint.";
3235
3338
  var defs$y = {
3236
3339
  main: {
@@ -3253,13 +3356,13 @@ var defs$y = {
3253
3356
  };
3254
3357
  var STRONG_REF_LEXICON_JSON = {
3255
3358
  lexicon: lexicon$w,
3256
- id: id$1a,
3359
+ id: id$1b,
3257
3360
  description: description$1,
3258
3361
  defs: defs$y
3259
3362
  };
3260
3363
 
3261
3364
  var lexicon$v = 1;
3262
- var id$19 = "org.hyperboards.board";
3365
+ var id$1a = "org.hyperboards.board";
3263
3366
  var defs$x = {
3264
3367
  main: {
3265
3368
  type: "record",
@@ -3437,12 +3540,12 @@ var defs$x = {
3437
3540
  };
3438
3541
  var HYPERBOARDS_BOARD_LEXICON_JSON = {
3439
3542
  lexicon: lexicon$v,
3440
- id: id$19,
3543
+ id: id$1a,
3441
3544
  defs: defs$x
3442
3545
  };
3443
3546
 
3444
3547
  var lexicon$u = 1;
3445
- var id$18 = "org.hyperboards.displayProfile";
3548
+ var id$19 = "org.hyperboards.displayProfile";
3446
3549
  var defs$w = {
3447
3550
  main: {
3448
3551
  type: "record",
@@ -3507,12 +3610,12 @@ var defs$w = {
3507
3610
  };
3508
3611
  var HYPERBOARDS_DISPLAY_PROFILE_LEXICON_JSON = {
3509
3612
  lexicon: lexicon$u,
3510
- id: id$18,
3613
+ id: id$19,
3511
3614
  defs: defs$w
3512
3615
  };
3513
3616
 
3514
3617
  var lexicon$t = 1;
3515
- var id$17 = "org.hypercerts.claim.activity";
3618
+ var id$18 = "org.hypercerts.claim.activity";
3516
3619
  var defs$v = {
3517
3620
  main: {
3518
3621
  type: "record",
@@ -3688,12 +3791,12 @@ var defs$v = {
3688
3791
  };
3689
3792
  var ACTIVITY_LEXICON_JSON = {
3690
3793
  lexicon: lexicon$t,
3691
- id: id$17,
3794
+ id: id$18,
3692
3795
  defs: defs$v
3693
3796
  };
3694
3797
 
3695
3798
  var lexicon$s = 1;
3696
- var id$16 = "org.hypercerts.claim.contribution";
3799
+ var id$17 = "org.hypercerts.claim.contribution";
3697
3800
  var defs$u = {
3698
3801
  main: {
3699
3802
  type: "record",
@@ -3737,12 +3840,12 @@ var defs$u = {
3737
3840
  };
3738
3841
  var CONTRIBUTION_LEXICON_JSON = {
3739
3842
  lexicon: lexicon$s,
3740
- id: id$16,
3843
+ id: id$17,
3741
3844
  defs: defs$u
3742
3845
  };
3743
3846
 
3744
3847
  var lexicon$r = 1;
3745
- var id$15 = "org.hypercerts.claim.contributorInformation";
3848
+ var id$16 = "org.hypercerts.claim.contributorInformation";
3746
3849
  var defs$t = {
3747
3850
  main: {
3748
3851
  type: "record",
@@ -3783,12 +3886,12 @@ var defs$t = {
3783
3886
  };
3784
3887
  var CONTRIBUTOR_INFORMATION_LEXICON_JSON = {
3785
3888
  lexicon: lexicon$r,
3786
- id: id$15,
3889
+ id: id$16,
3787
3890
  defs: defs$t
3788
3891
  };
3789
3892
 
3790
3893
  var lexicon$q = 1;
3791
- var id$14 = "org.hypercerts.claim.rights";
3894
+ var id$15 = "org.hypercerts.claim.rights";
3792
3895
  var defs$s = {
3793
3896
  main: {
3794
3897
  type: "record",
@@ -3838,12 +3941,12 @@ var defs$s = {
3838
3941
  };
3839
3942
  var RIGHTS_LEXICON_JSON = {
3840
3943
  lexicon: lexicon$q,
3841
- id: id$14,
3944
+ id: id$15,
3842
3945
  defs: defs$s
3843
3946
  };
3844
3947
 
3845
3948
  var lexicon$p = 1;
3846
- var id$13 = "org.hypercerts.collection";
3949
+ var id$14 = "org.hypercerts.collection";
3847
3950
  var defs$r = {
3848
3951
  main: {
3849
3952
  type: "record",
@@ -3956,12 +4059,12 @@ var defs$r = {
3956
4059
  };
3957
4060
  var HYPERCERTS_COLLECTION_LEXICON_JSON = {
3958
4061
  lexicon: lexicon$p,
3959
- id: id$13,
4062
+ id: id$14,
3960
4063
  defs: defs$r
3961
4064
  };
3962
4065
 
3963
4066
  var lexicon$o = 1;
3964
- var id$12 = "org.hypercerts.context.acknowledgement";
4067
+ var id$13 = "org.hypercerts.context.acknowledgement";
3965
4068
  var defs$q = {
3966
4069
  main: {
3967
4070
  type: "record",
@@ -4009,12 +4112,12 @@ var defs$q = {
4009
4112
  };
4010
4113
  var CONTEXT_ACKNOWLEDGEMENT_LEXICON_JSON = {
4011
4114
  lexicon: lexicon$o,
4012
- id: id$12,
4115
+ id: id$13,
4013
4116
  defs: defs$q
4014
4117
  };
4015
4118
 
4016
4119
  var lexicon$n = 1;
4017
- var id$11 = "org.hypercerts.context.attachment";
4120
+ var id$12 = "org.hypercerts.context.attachment";
4018
4121
  var defs$p = {
4019
4122
  main: {
4020
4123
  type: "record",
@@ -4104,12 +4207,12 @@ var defs$p = {
4104
4207
  };
4105
4208
  var CONTEXT_ATTACHMENT_LEXICON_JSON = {
4106
4209
  lexicon: lexicon$n,
4107
- id: id$11,
4210
+ id: id$12,
4108
4211
  defs: defs$p
4109
4212
  };
4110
4213
 
4111
4214
  var lexicon$m = 1;
4112
- var id$10 = "org.hypercerts.context.evaluation";
4215
+ var id$11 = "org.hypercerts.context.evaluation";
4113
4216
  var defs$o = {
4114
4217
  main: {
4115
4218
  type: "record",
@@ -4211,12 +4314,12 @@ var defs$o = {
4211
4314
  };
4212
4315
  var CONTEXT_EVALUATION_LEXICON_JSON = {
4213
4316
  lexicon: lexicon$m,
4214
- id: id$10,
4317
+ id: id$11,
4215
4318
  defs: defs$o
4216
4319
  };
4217
4320
 
4218
4321
  var lexicon$l = 1;
4219
- var id$$ = "org.hypercerts.context.measurement";
4322
+ var id$10 = "org.hypercerts.context.measurement";
4220
4323
  var defs$n = {
4221
4324
  main: {
4222
4325
  type: "record",
@@ -4327,12 +4430,12 @@ var defs$n = {
4327
4430
  };
4328
4431
  var CONTEXT_MEASUREMENT_LEXICON_JSON = {
4329
4432
  lexicon: lexicon$l,
4330
- id: id$$,
4433
+ id: id$10,
4331
4434
  defs: defs$n
4332
4435
  };
4333
4436
 
4334
4437
  var lexicon$k = 1;
4335
- var id$_ = "org.hypercerts.defs";
4438
+ var id$$ = "org.hypercerts.defs";
4336
4439
  var description = "Common type definitions used across all Hypercerts protocols.";
4337
4440
  var defs$m = {
4338
4441
  descriptionString: {
@@ -4467,13 +4570,13 @@ var defs$m = {
4467
4570
  };
4468
4571
  var HYPERCERTS_DEFS_LEXICON_JSON = {
4469
4572
  lexicon: lexicon$k,
4470
- id: id$_,
4573
+ id: id$$,
4471
4574
  description: description,
4472
4575
  defs: defs$m
4473
4576
  };
4474
4577
 
4475
4578
  var lexicon$j = 1;
4476
- var id$Z = "org.hypercerts.funding.receipt";
4579
+ var id$_ = "org.hypercerts.funding.receipt";
4477
4580
  var defs$l = {
4478
4581
  main: {
4479
4582
  type: "record",
@@ -4571,12 +4674,12 @@ var defs$l = {
4571
4674
  };
4572
4675
  var FUNDING_RECEIPT_LEXICON_JSON = {
4573
4676
  lexicon: lexicon$j,
4574
- id: id$Z,
4677
+ id: id$_,
4575
4678
  defs: defs$l
4576
4679
  };
4577
4680
 
4578
4681
  var lexicon$i = 1;
4579
- var id$Y = "org.hypercerts.workscope.cel";
4682
+ var id$Z = "org.hypercerts.workscope.cel";
4580
4683
  var defs$k = {
4581
4684
  main: {
4582
4685
  type: "object",
@@ -4621,12 +4724,12 @@ var defs$k = {
4621
4724
  };
4622
4725
  var WORKSCOPE_CEL_LEXICON_JSON = {
4623
4726
  lexicon: lexicon$i,
4624
- id: id$Y,
4727
+ id: id$Z,
4625
4728
  defs: defs$k
4626
4729
  };
4627
4730
 
4628
4731
  var lexicon$h = 1;
4629
- var id$X = "org.hypercerts.workscope.tag";
4732
+ var id$Y = "org.hypercerts.workscope.tag";
4630
4733
  var defs$j = {
4631
4734
  main: {
4632
4735
  type: "record",
@@ -4652,7 +4755,7 @@ var defs$j = {
4652
4755
  },
4653
4756
  category: {
4654
4757
  type: "string",
4655
- description: "Category type of this scope.",
4758
+ description: "Category type of this scope. Values beyond the known set are permitted.",
4656
4759
  knownValues: [
4657
4760
  "topic",
4658
4761
  "language",
@@ -4674,7 +4777,7 @@ var defs$j = {
4674
4777
  },
4675
4778
  status: {
4676
4779
  type: "string",
4677
- description: "Lifecycle status of this tag. Communities propose tags, curators accept them, deprecated tags point to replacements via supersededBy.",
4780
+ description: "Lifecycle status of this tag. Communities propose tags, curators accept them, deprecated tags point to replacements via supersededBy. Values beyond the known set are permitted.",
4678
4781
  knownValues: [
4679
4782
  "proposed",
4680
4783
  "accepted",
@@ -4725,12 +4828,12 @@ var defs$j = {
4725
4828
  };
4726
4829
  var WORKSCOPE_TAG_LEXICON_JSON = {
4727
4830
  lexicon: lexicon$h,
4728
- id: id$X,
4831
+ id: id$Y,
4729
4832
  defs: defs$j
4730
4833
  };
4731
4834
 
4732
4835
  var lexicon$g = 1;
4733
- var id$W = "pub.leaflet.blocks.blockquote";
4836
+ var id$X = "pub.leaflet.blocks.blockquote";
4734
4837
  var defs$i = {
4735
4838
  main: {
4736
4839
  type: "object",
@@ -4753,12 +4856,12 @@ var defs$i = {
4753
4856
  };
4754
4857
  var LEAFLET_BLOCKS_BLOCKQUOTE_LEXICON_JSON = {
4755
4858
  lexicon: lexicon$g,
4756
- id: id$W,
4859
+ id: id$X,
4757
4860
  defs: defs$i
4758
4861
  };
4759
4862
 
4760
4863
  var lexicon$f = 1;
4761
- var id$V = "pub.leaflet.blocks.bskyPost";
4864
+ var id$W = "pub.leaflet.blocks.bskyPost";
4762
4865
  var defs$h = {
4763
4866
  main: {
4764
4867
  type: "object",
@@ -4778,12 +4881,12 @@ var defs$h = {
4778
4881
  };
4779
4882
  var LEAFLET_BLOCKS_BSKY_POST_LEXICON_JSON = {
4780
4883
  lexicon: lexicon$f,
4781
- id: id$V,
4884
+ id: id$W,
4782
4885
  defs: defs$h
4783
4886
  };
4784
4887
 
4785
4888
  var lexicon$e = 1;
4786
- var id$U = "pub.leaflet.blocks.button";
4889
+ var id$V = "pub.leaflet.blocks.button";
4787
4890
  var defs$g = {
4788
4891
  main: {
4789
4892
  type: "object",
@@ -4804,12 +4907,12 @@ var defs$g = {
4804
4907
  };
4805
4908
  var LEAFLET_BLOCKS_BUTTON_LEXICON_JSON = {
4806
4909
  lexicon: lexicon$e,
4807
- id: id$U,
4910
+ id: id$V,
4808
4911
  defs: defs$g
4809
4912
  };
4810
4913
 
4811
4914
  var lexicon$d = 1;
4812
- var id$T = "pub.leaflet.blocks.code";
4915
+ var id$U = "pub.leaflet.blocks.code";
4813
4916
  var defs$f = {
4814
4917
  main: {
4815
4918
  type: "object",
@@ -4831,12 +4934,12 @@ var defs$f = {
4831
4934
  };
4832
4935
  var LEAFLET_BLOCKS_CODE_LEXICON_JSON = {
4833
4936
  lexicon: lexicon$d,
4834
- id: id$T,
4937
+ id: id$U,
4835
4938
  defs: defs$f
4836
4939
  };
4837
4940
 
4838
4941
  var lexicon$c = 1;
4839
- var id$S = "pub.leaflet.blocks.header";
4942
+ var id$T = "pub.leaflet.blocks.header";
4840
4943
  var defs$e = {
4841
4944
  main: {
4842
4945
  type: "object",
@@ -4864,12 +4967,12 @@ var defs$e = {
4864
4967
  };
4865
4968
  var LEAFLET_BLOCKS_HEADER_LEXICON_JSON = {
4866
4969
  lexicon: lexicon$c,
4867
- id: id$S,
4970
+ id: id$T,
4868
4971
  defs: defs$e
4869
4972
  };
4870
4973
 
4871
4974
  var lexicon$b = 1;
4872
- var id$R = "pub.leaflet.blocks.horizontalRule";
4975
+ var id$S = "pub.leaflet.blocks.horizontalRule";
4873
4976
  var defs$d = {
4874
4977
  main: {
4875
4978
  type: "object",
@@ -4881,12 +4984,12 @@ var defs$d = {
4881
4984
  };
4882
4985
  var LEAFLET_BLOCKS_HORIZONTAL_RULE_LEXICON_JSON = {
4883
4986
  lexicon: lexicon$b,
4884
- id: id$R,
4987
+ id: id$S,
4885
4988
  defs: defs$d
4886
4989
  };
4887
4990
 
4888
4991
  var lexicon$a = 1;
4889
- var id$Q = "pub.leaflet.blocks.iframe";
4992
+ var id$R = "pub.leaflet.blocks.iframe";
4890
4993
  var defs$c = {
4891
4994
  main: {
4892
4995
  type: "object",
@@ -4908,12 +5011,12 @@ var defs$c = {
4908
5011
  };
4909
5012
  var LEAFLET_BLOCKS_IFRAME_LEXICON_JSON = {
4910
5013
  lexicon: lexicon$a,
4911
- id: id$Q,
5014
+ id: id$R,
4912
5015
  defs: defs$c
4913
5016
  };
4914
5017
 
4915
5018
  var lexicon$9 = 1;
4916
- var id$P = "pub.leaflet.blocks.image";
5019
+ var id$Q = "pub.leaflet.blocks.image";
4917
5020
  var defs$b = {
4918
5021
  main: {
4919
5022
  type: "object",
@@ -4961,12 +5064,12 @@ var defs$b = {
4961
5064
  };
4962
5065
  var LEAFLET_BLOCKS_IMAGE_LEXICON_JSON = {
4963
5066
  lexicon: lexicon$9,
4964
- id: id$P,
5067
+ id: id$Q,
4965
5068
  defs: defs$b
4966
5069
  };
4967
5070
 
4968
5071
  var lexicon$8 = 1;
4969
- var id$O = "pub.leaflet.blocks.math";
5072
+ var id$P = "pub.leaflet.blocks.math";
4970
5073
  var defs$a = {
4971
5074
  main: {
4972
5075
  type: "object",
@@ -4982,12 +5085,12 @@ var defs$a = {
4982
5085
  };
4983
5086
  var LEAFLET_BLOCKS_MATH_LEXICON_JSON = {
4984
5087
  lexicon: lexicon$8,
4985
- id: id$O,
5088
+ id: id$P,
4986
5089
  defs: defs$a
4987
5090
  };
4988
5091
 
4989
5092
  var lexicon$7 = 1;
4990
- var id$N = "pub.leaflet.blocks.orderedList";
5093
+ var id$O = "pub.leaflet.blocks.orderedList";
4991
5094
  var defs$9 = {
4992
5095
  main: {
4993
5096
  type: "object",
@@ -5044,12 +5147,12 @@ var defs$9 = {
5044
5147
  };
5045
5148
  var LEAFLET_BLOCKS_ORDERED_LIST_LEXICON_JSON = {
5046
5149
  lexicon: lexicon$7,
5047
- id: id$N,
5150
+ id: id$O,
5048
5151
  defs: defs$9
5049
5152
  };
5050
5153
 
5051
5154
  var lexicon$6 = 1;
5052
- var id$M = "pub.leaflet.blocks.page";
5155
+ var id$N = "pub.leaflet.blocks.page";
5053
5156
  var defs$8 = {
5054
5157
  main: {
5055
5158
  type: "object",
@@ -5065,12 +5168,12 @@ var defs$8 = {
5065
5168
  };
5066
5169
  var LEAFLET_BLOCKS_PAGE_LEXICON_JSON = {
5067
5170
  lexicon: lexicon$6,
5068
- id: id$M,
5171
+ id: id$N,
5069
5172
  defs: defs$8
5070
5173
  };
5071
5174
 
5072
5175
  var lexicon$5 = 1;
5073
- var id$L = "pub.leaflet.blocks.poll";
5176
+ var id$M = "pub.leaflet.blocks.poll";
5074
5177
  var defs$7 = {
5075
5178
  main: {
5076
5179
  type: "object",
@@ -5087,12 +5190,12 @@ var defs$7 = {
5087
5190
  };
5088
5191
  var LEAFLET_BLOCKS_POLL_LEXICON_JSON = {
5089
5192
  lexicon: lexicon$5,
5090
- id: id$L,
5193
+ id: id$M,
5091
5194
  defs: defs$7
5092
5195
  };
5093
5196
 
5094
5197
  var lexicon$4 = 1;
5095
- var id$K = "pub.leaflet.blocks.text";
5198
+ var id$L = "pub.leaflet.blocks.text";
5096
5199
  var defs$6 = {
5097
5200
  main: {
5098
5201
  type: "object",
@@ -5123,12 +5226,12 @@ var defs$6 = {
5123
5226
  };
5124
5227
  var LEAFLET_BLOCKS_TEXT_LEXICON_JSON = {
5125
5228
  lexicon: lexicon$4,
5126
- id: id$K,
5229
+ id: id$L,
5127
5230
  defs: defs$6
5128
5231
  };
5129
5232
 
5130
5233
  var lexicon$3 = 1;
5131
- var id$J = "pub.leaflet.blocks.unorderedList";
5234
+ var id$K = "pub.leaflet.blocks.unorderedList";
5132
5235
  var defs$5 = {
5133
5236
  main: {
5134
5237
  type: "object",
@@ -5181,12 +5284,12 @@ var defs$5 = {
5181
5284
  };
5182
5285
  var LEAFLET_BLOCKS_UNORDERED_LIST_LEXICON_JSON = {
5183
5286
  lexicon: lexicon$3,
5184
- id: id$J,
5287
+ id: id$K,
5185
5288
  defs: defs$5
5186
5289
  };
5187
5290
 
5188
5291
  var lexicon$2 = 1;
5189
- var id$I = "pub.leaflet.blocks.website";
5292
+ var id$J = "pub.leaflet.blocks.website";
5190
5293
  var defs$4 = {
5191
5294
  main: {
5192
5295
  type: "object",
@@ -5216,12 +5319,12 @@ var defs$4 = {
5216
5319
  };
5217
5320
  var LEAFLET_BLOCKS_WEBSITE_LEXICON_JSON = {
5218
5321
  lexicon: lexicon$2,
5219
- id: id$I,
5322
+ id: id$J,
5220
5323
  defs: defs$4
5221
5324
  };
5222
5325
 
5223
5326
  var lexicon$1 = 1;
5224
- var id$H = "pub.leaflet.pages.linearDocument";
5327
+ var id$I = "pub.leaflet.pages.linearDocument";
5225
5328
  var defs$3 = {
5226
5329
  main: {
5227
5330
  type: "object",
@@ -5328,12 +5431,12 @@ var defs$3 = {
5328
5431
  };
5329
5432
  var LEAFLET_PAGES_LINEAR_DOCUMENT_LEXICON_JSON = {
5330
5433
  lexicon: lexicon$1,
5331
- id: id$H,
5434
+ id: id$I,
5332
5435
  defs: defs$3
5333
5436
  };
5334
5437
 
5335
5438
  var lexicon = 1;
5336
- var id$G = "pub.leaflet.richtext.facet";
5439
+ var id$H = "pub.leaflet.richtext.facet";
5337
5440
  var defs$2 = {
5338
5441
  main: {
5339
5442
  type: "object",
@@ -5509,91 +5612,109 @@ var defs$2 = {
5509
5612
  };
5510
5613
  var LEAFLET_RICHTEXT_FACET_LEXICON_JSON = {
5511
5614
  lexicon: lexicon,
5512
- id: id$G,
5615
+ id: id$H,
5513
5616
  defs: defs$2
5514
5617
  };
5515
5618
 
5516
- const is$typed$F = is$typed$G, validate$F = validate$G;
5517
- const id$F = 'app.bsky.richtext.facet';
5518
- const hashMain$D = 'main';
5519
- function isMain$D(v) {
5520
- return is$typed$F(v, id$F, hashMain$D);
5619
+ const is$typed$G = is$typed$H, validate$G = validate$H;
5620
+ const id$G = 'app.bsky.richtext.facet';
5621
+ const hashMain$E = 'main';
5622
+ function isMain$E(v) {
5623
+ return is$typed$G(v, id$G, hashMain$E);
5521
5624
  }
5522
- function validateMain$D(v) {
5523
- return validate$F(v, id$F, hashMain$D);
5625
+ function validateMain$E(v) {
5626
+ return validate$G(v, id$G, hashMain$E);
5524
5627
  }
5525
5628
  const hashMention = 'mention';
5526
5629
  function isMention(v) {
5527
- return is$typed$F(v, id$F, hashMention);
5630
+ return is$typed$G(v, id$G, hashMention);
5528
5631
  }
5529
5632
  function validateMention(v) {
5530
- return validate$F(v, id$F, hashMention);
5633
+ return validate$G(v, id$G, hashMention);
5531
5634
  }
5532
5635
  const hashLink$1 = 'link';
5533
5636
  function isLink$1(v) {
5534
- return is$typed$F(v, id$F, hashLink$1);
5637
+ return is$typed$G(v, id$G, hashLink$1);
5535
5638
  }
5536
5639
  function validateLink$1(v) {
5537
- return validate$F(v, id$F, hashLink$1);
5640
+ return validate$G(v, id$G, hashLink$1);
5538
5641
  }
5539
5642
  const hashTag = 'tag';
5540
5643
  function isTag(v) {
5541
- return is$typed$F(v, id$F, hashTag);
5644
+ return is$typed$G(v, id$G, hashTag);
5542
5645
  }
5543
5646
  function validateTag(v) {
5544
- return validate$F(v, id$F, hashTag);
5647
+ return validate$G(v, id$G, hashTag);
5545
5648
  }
5546
5649
  const hashByteSlice$1 = 'byteSlice';
5547
5650
  function isByteSlice$1(v) {
5548
- return is$typed$F(v, id$F, hashByteSlice$1);
5651
+ return is$typed$G(v, id$G, hashByteSlice$1);
5549
5652
  }
5550
5653
  function validateByteSlice$1(v) {
5551
- return validate$F(v, id$F, hashByteSlice$1);
5654
+ return validate$G(v, id$G, hashByteSlice$1);
5552
5655
  }
5553
5656
 
5554
5657
  var facet$1 = /*#__PURE__*/Object.freeze({
5555
5658
  __proto__: null,
5556
5659
  isByteSlice: isByteSlice$1,
5557
5660
  isLink: isLink$1,
5558
- isMain: isMain$D,
5661
+ isMain: isMain$E,
5559
5662
  isMention: isMention,
5560
5663
  isTag: isTag,
5561
5664
  validateByteSlice: validateByteSlice$1,
5562
5665
  validateLink: validateLink$1,
5563
- validateMain: validateMain$D,
5666
+ validateMain: validateMain$E,
5564
5667
  validateMention: validateMention,
5565
5668
  validateTag: validateTag
5566
5669
  });
5567
5670
 
5568
- const is$typed$E = is$typed$G, validate$E = validate$G;
5569
- const id$E = 'app.certified.actor.organization';
5570
- const hashMain$C = 'main';
5571
- function isMain$C(v) {
5572
- return is$typed$E(v, id$E, hashMain$C);
5671
+ const is$typed$F = is$typed$H, validate$F = validate$H;
5672
+ const id$F = 'app.certified.actor.organization';
5673
+ const hashMain$D = 'main';
5674
+ function isMain$D(v) {
5675
+ return is$typed$F(v, id$F, hashMain$D);
5573
5676
  }
5574
- function validateMain$C(v) {
5575
- return validate$E(v, id$E, hashMain$C, true);
5677
+ function validateMain$D(v) {
5678
+ return validate$F(v, id$F, hashMain$D, true);
5576
5679
  }
5577
5680
  const hashUrlItem = 'urlItem';
5578
5681
  function isUrlItem(v) {
5579
- return is$typed$E(v, id$E, hashUrlItem);
5682
+ return is$typed$F(v, id$F, hashUrlItem);
5580
5683
  }
5581
5684
  function validateUrlItem(v) {
5582
- return validate$E(v, id$E, hashUrlItem);
5685
+ return validate$F(v, id$F, hashUrlItem);
5583
5686
  }
5584
5687
 
5585
5688
  var organization = /*#__PURE__*/Object.freeze({
5689
+ __proto__: null,
5690
+ isMain: isMain$D,
5691
+ isRecord: isMain$D,
5692
+ isUrlItem: isUrlItem,
5693
+ validateMain: validateMain$D,
5694
+ validateRecord: validateMain$D,
5695
+ validateUrlItem: validateUrlItem
5696
+ });
5697
+
5698
+ const is$typed$E = is$typed$H, validate$E = validate$H;
5699
+ const id$E = 'app.certified.actor.profile';
5700
+ const hashMain$C = 'main';
5701
+ function isMain$C(v) {
5702
+ return is$typed$E(v, id$E, hashMain$C);
5703
+ }
5704
+ function validateMain$C(v) {
5705
+ return validate$E(v, id$E, hashMain$C, true);
5706
+ }
5707
+
5708
+ var profile = /*#__PURE__*/Object.freeze({
5586
5709
  __proto__: null,
5587
5710
  isMain: isMain$C,
5588
5711
  isRecord: isMain$C,
5589
- isUrlItem: isUrlItem,
5590
5712
  validateMain: validateMain$C,
5591
- validateRecord: validateMain$C,
5592
- validateUrlItem: validateUrlItem
5713
+ validateRecord: validateMain$C
5593
5714
  });
5594
5715
 
5595
- const is$typed$D = is$typed$G, validate$D = validate$G;
5596
- const id$D = 'app.certified.actor.profile';
5716
+ const is$typed$D = is$typed$H, validate$D = validate$H;
5717
+ const id$D = 'app.certified.badge.award';
5597
5718
  const hashMain$B = 'main';
5598
5719
  function isMain$B(v) {
5599
5720
  return is$typed$D(v, id$D, hashMain$B);
@@ -5602,7 +5723,7 @@ function validateMain$B(v) {
5602
5723
  return validate$D(v, id$D, hashMain$B, true);
5603
5724
  }
5604
5725
 
5605
- var profile = /*#__PURE__*/Object.freeze({
5726
+ var award = /*#__PURE__*/Object.freeze({
5606
5727
  __proto__: null,
5607
5728
  isMain: isMain$B,
5608
5729
  isRecord: isMain$B,
@@ -5610,8 +5731,8 @@ var profile = /*#__PURE__*/Object.freeze({
5610
5731
  validateRecord: validateMain$B
5611
5732
  });
5612
5733
 
5613
- const is$typed$C = is$typed$G, validate$C = validate$G;
5614
- const id$C = 'app.certified.badge.award';
5734
+ const is$typed$C = is$typed$H, validate$C = validate$H;
5735
+ const id$C = 'app.certified.badge.definition';
5615
5736
  const hashMain$A = 'main';
5616
5737
  function isMain$A(v) {
5617
5738
  return is$typed$C(v, id$C, hashMain$A);
@@ -5620,7 +5741,7 @@ function validateMain$A(v) {
5620
5741
  return validate$C(v, id$C, hashMain$A, true);
5621
5742
  }
5622
5743
 
5623
- var award = /*#__PURE__*/Object.freeze({
5744
+ var definition = /*#__PURE__*/Object.freeze({
5624
5745
  __proto__: null,
5625
5746
  isMain: isMain$A,
5626
5747
  isRecord: isMain$A,
@@ -5628,8 +5749,8 @@ var award = /*#__PURE__*/Object.freeze({
5628
5749
  validateRecord: validateMain$A
5629
5750
  });
5630
5751
 
5631
- const is$typed$B = is$typed$G, validate$B = validate$G;
5632
- const id$B = 'app.certified.badge.definition';
5752
+ const is$typed$B = is$typed$H, validate$B = validate$H;
5753
+ const id$B = 'app.certified.badge.response';
5633
5754
  const hashMain$z = 'main';
5634
5755
  function isMain$z(v) {
5635
5756
  return is$typed$B(v, id$B, hashMain$z);
@@ -5638,7 +5759,7 @@ function validateMain$z(v) {
5638
5759
  return validate$B(v, id$B, hashMain$z, true);
5639
5760
  }
5640
5761
 
5641
- var definition = /*#__PURE__*/Object.freeze({
5762
+ var response = /*#__PURE__*/Object.freeze({
5642
5763
  __proto__: null,
5643
5764
  isMain: isMain$z,
5644
5765
  isRecord: isMain$z,
@@ -5646,17 +5767,33 @@ var definition = /*#__PURE__*/Object.freeze({
5646
5767
  validateRecord: validateMain$z
5647
5768
  });
5648
5769
 
5649
- const is$typed$A = is$typed$G, validate$A = validate$G;
5650
- const id$A = 'app.certified.badge.response';
5770
+ const is$typed$A = is$typed$H, validate$A = validate$H;
5771
+ const id$A = 'app.certified.defs';
5772
+ const hashDid = 'did';
5773
+ function isDid(v) {
5774
+ return is$typed$A(v, id$A, hashDid);
5775
+ }
5776
+ function validateDid(v) {
5777
+ return validate$A(v, id$A, hashDid);
5778
+ }
5779
+
5780
+ var defs$1 = /*#__PURE__*/Object.freeze({
5781
+ __proto__: null,
5782
+ isDid: isDid,
5783
+ validateDid: validateDid
5784
+ });
5785
+
5786
+ const is$typed$z = is$typed$H, validate$z = validate$H;
5787
+ const id$z = 'app.certified.graph.follow';
5651
5788
  const hashMain$y = 'main';
5652
5789
  function isMain$y(v) {
5653
- return is$typed$A(v, id$A, hashMain$y);
5790
+ return is$typed$z(v, id$z, hashMain$y);
5654
5791
  }
5655
5792
  function validateMain$y(v) {
5656
- return validate$A(v, id$A, hashMain$y, true);
5793
+ return validate$z(v, id$z, hashMain$y, true);
5657
5794
  }
5658
5795
 
5659
- var response = /*#__PURE__*/Object.freeze({
5796
+ var follow = /*#__PURE__*/Object.freeze({
5660
5797
  __proto__: null,
5661
5798
  isMain: isMain$y,
5662
5799
  isRecord: isMain$y,
@@ -5664,23 +5801,7 @@ var response = /*#__PURE__*/Object.freeze({
5664
5801
  validateRecord: validateMain$y
5665
5802
  });
5666
5803
 
5667
- const is$typed$z = is$typed$G, validate$z = validate$G;
5668
- const id$z = 'app.certified.defs';
5669
- const hashDid = 'did';
5670
- function isDid(v) {
5671
- return is$typed$z(v, id$z, hashDid);
5672
- }
5673
- function validateDid(v) {
5674
- return validate$z(v, id$z, hashDid);
5675
- }
5676
-
5677
- var defs$1 = /*#__PURE__*/Object.freeze({
5678
- __proto__: null,
5679
- isDid: isDid,
5680
- validateDid: validateDid
5681
- });
5682
-
5683
- const is$typed$y = is$typed$G, validate$y = validate$G;
5804
+ const is$typed$y = is$typed$H, validate$y = validate$H;
5684
5805
  const id$y = 'app.certified.link.evm';
5685
5806
  const hashMain$x = 'main';
5686
5807
  function isMain$x(v) {
@@ -5716,7 +5837,7 @@ var evm = /*#__PURE__*/Object.freeze({
5716
5837
  validateRecord: validateMain$x
5717
5838
  });
5718
5839
 
5719
- const is$typed$x = is$typed$G, validate$x = validate$G;
5840
+ const is$typed$x = is$typed$H, validate$x = validate$H;
5720
5841
  const id$x = 'app.certified.location';
5721
5842
  const hashMain$w = 'main';
5722
5843
  function isMain$w(v) {
@@ -5743,7 +5864,7 @@ var location = /*#__PURE__*/Object.freeze({
5743
5864
  validateString: validateString
5744
5865
  });
5745
5866
 
5746
- const is$typed$w = is$typed$G, validate$w = validate$G;
5867
+ const is$typed$w = is$typed$H, validate$w = validate$H;
5747
5868
  const id$w = 'com.atproto.repo.strongRef';
5748
5869
  const hashMain$v = 'main';
5749
5870
  function isMain$v(v) {
@@ -5759,7 +5880,7 @@ var strongRef = /*#__PURE__*/Object.freeze({
5759
5880
  validateMain: validateMain$v
5760
5881
  });
5761
5882
 
5762
- const is$typed$v = is$typed$G, validate$v = validate$G;
5883
+ const is$typed$v = is$typed$H, validate$v = validate$H;
5763
5884
  const id$v = 'org.hyperboards.board';
5764
5885
  const hashMain$u = 'main';
5765
5886
  function isMain$u(v) {
@@ -5795,7 +5916,7 @@ var board = /*#__PURE__*/Object.freeze({
5795
5916
  validateRecord: validateMain$u
5796
5917
  });
5797
5918
 
5798
- const is$typed$u = is$typed$G, validate$u = validate$G;
5919
+ const is$typed$u = is$typed$H, validate$u = validate$H;
5799
5920
  const id$u = 'org.hyperboards.displayProfile';
5800
5921
  const hashMain$t = 'main';
5801
5922
  function isMain$t(v) {
@@ -5813,7 +5934,7 @@ var displayProfile = /*#__PURE__*/Object.freeze({
5813
5934
  validateRecord: validateMain$t
5814
5935
  });
5815
5936
 
5816
- const is$typed$t = is$typed$G, validate$t = validate$G;
5937
+ const is$typed$t = is$typed$H, validate$t = validate$H;
5817
5938
  const id$t = 'org.hypercerts.claim.activity';
5818
5939
  const hashMain$s = 'main';
5819
5940
  function isMain$s(v) {
@@ -5867,7 +5988,7 @@ var activity = /*#__PURE__*/Object.freeze({
5867
5988
  validateWorkScopeString: validateWorkScopeString
5868
5989
  });
5869
5990
 
5870
- const is$typed$s = is$typed$G, validate$s = validate$G;
5991
+ const is$typed$s = is$typed$H, validate$s = validate$H;
5871
5992
  const id$s = 'org.hypercerts.claim.contribution';
5872
5993
  const hashMain$r = 'main';
5873
5994
  function isMain$r(v) {
@@ -5885,7 +6006,7 @@ var contribution = /*#__PURE__*/Object.freeze({
5885
6006
  validateRecord: validateMain$r
5886
6007
  });
5887
6008
 
5888
- const is$typed$r = is$typed$G, validate$r = validate$G;
6009
+ const is$typed$r = is$typed$H, validate$r = validate$H;
5889
6010
  const id$r = 'org.hypercerts.claim.contributorInformation';
5890
6011
  const hashMain$q = 'main';
5891
6012
  function isMain$q(v) {
@@ -5903,7 +6024,7 @@ var contributorInformation = /*#__PURE__*/Object.freeze({
5903
6024
  validateRecord: validateMain$q
5904
6025
  });
5905
6026
 
5906
- const is$typed$q = is$typed$G, validate$q = validate$G;
6027
+ const is$typed$q = is$typed$H, validate$q = validate$H;
5907
6028
  const id$q = 'org.hypercerts.claim.rights';
5908
6029
  const hashMain$p = 'main';
5909
6030
  function isMain$p(v) {
@@ -5921,7 +6042,7 @@ var rights = /*#__PURE__*/Object.freeze({
5921
6042
  validateRecord: validateMain$p
5922
6043
  });
5923
6044
 
5924
- const is$typed$p = is$typed$G, validate$p = validate$G;
6045
+ const is$typed$p = is$typed$H, validate$p = validate$H;
5925
6046
  const id$p = 'org.hypercerts.collection';
5926
6047
  const hashMain$o = 'main';
5927
6048
  function isMain$o(v) {
@@ -5948,7 +6069,7 @@ var collection = /*#__PURE__*/Object.freeze({
5948
6069
  validateRecord: validateMain$o
5949
6070
  });
5950
6071
 
5951
- const is$typed$o = is$typed$G, validate$o = validate$G;
6072
+ const is$typed$o = is$typed$H, validate$o = validate$H;
5952
6073
  const id$o = 'org.hypercerts.context.acknowledgement';
5953
6074
  const hashMain$n = 'main';
5954
6075
  function isMain$n(v) {
@@ -5966,7 +6087,7 @@ var acknowledgement = /*#__PURE__*/Object.freeze({
5966
6087
  validateRecord: validateMain$n
5967
6088
  });
5968
6089
 
5969
- const is$typed$n = is$typed$G, validate$n = validate$G;
6090
+ const is$typed$n = is$typed$H, validate$n = validate$H;
5970
6091
  const id$n = 'org.hypercerts.context.attachment';
5971
6092
  const hashMain$m = 'main';
5972
6093
  function isMain$m(v) {
@@ -5984,7 +6105,7 @@ var attachment = /*#__PURE__*/Object.freeze({
5984
6105
  validateRecord: validateMain$m
5985
6106
  });
5986
6107
 
5987
- const is$typed$m = is$typed$G, validate$m = validate$G;
6108
+ const is$typed$m = is$typed$H, validate$m = validate$H;
5988
6109
  const id$m = 'org.hypercerts.context.evaluation';
5989
6110
  const hashMain$l = 'main';
5990
6111
  function isMain$l(v) {
@@ -6011,7 +6132,7 @@ var evaluation = /*#__PURE__*/Object.freeze({
6011
6132
  validateScore: validateScore
6012
6133
  });
6013
6134
 
6014
- const is$typed$l = is$typed$G, validate$l = validate$G;
6135
+ const is$typed$l = is$typed$H, validate$l = validate$H;
6015
6136
  const id$l = 'org.hypercerts.context.measurement';
6016
6137
  const hashMain$k = 'main';
6017
6138
  function isMain$k(v) {
@@ -6029,7 +6150,7 @@ var measurement = /*#__PURE__*/Object.freeze({
6029
6150
  validateRecord: validateMain$k
6030
6151
  });
6031
6152
 
6032
- const is$typed$k = is$typed$G, validate$k = validate$G;
6153
+ const is$typed$k = is$typed$H, validate$k = validate$H;
6033
6154
  const id$k = 'org.hypercerts.defs';
6034
6155
  const hashDescriptionString = 'descriptionString';
6035
6156
  function isDescriptionString(v) {
@@ -6099,7 +6220,7 @@ var defs = /*#__PURE__*/Object.freeze({
6099
6220
  validateUri: validateUri
6100
6221
  });
6101
6222
 
6102
- const is$typed$j = is$typed$G, validate$j = validate$G;
6223
+ const is$typed$j = is$typed$H, validate$j = validate$H;
6103
6224
  const id$j = 'org.hypercerts.funding.receipt';
6104
6225
  const hashMain$j = 'main';
6105
6226
  function isMain$j(v) {
@@ -6126,7 +6247,7 @@ var receipt = /*#__PURE__*/Object.freeze({
6126
6247
  validateText: validateText
6127
6248
  });
6128
6249
 
6129
- const is$typed$i = is$typed$G, validate$i = validate$G;
6250
+ const is$typed$i = is$typed$H, validate$i = validate$H;
6130
6251
  const id$i = 'org.hypercerts.workscope.cel';
6131
6252
  const hashMain$i = 'main';
6132
6253
  function isMain$i(v) {
@@ -6142,7 +6263,7 @@ var cel = /*#__PURE__*/Object.freeze({
6142
6263
  validateMain: validateMain$i
6143
6264
  });
6144
6265
 
6145
- const is$typed$h = is$typed$G, validate$h = validate$G;
6266
+ const is$typed$h = is$typed$H, validate$h = validate$H;
6146
6267
  const id$h = 'org.hypercerts.workscope.tag';
6147
6268
  const hashMain$h = 'main';
6148
6269
  function isMain$h(v) {
@@ -6160,7 +6281,7 @@ var tag = /*#__PURE__*/Object.freeze({
6160
6281
  validateRecord: validateMain$h
6161
6282
  });
6162
6283
 
6163
- const is$typed$g = is$typed$G, validate$g = validate$G;
6284
+ const is$typed$g = is$typed$H, validate$g = validate$H;
6164
6285
  const id$g = 'pub.leaflet.blocks.blockquote';
6165
6286
  const hashMain$g = 'main';
6166
6287
  function isMain$g(v) {
@@ -6176,7 +6297,7 @@ var blockquote = /*#__PURE__*/Object.freeze({
6176
6297
  validateMain: validateMain$g
6177
6298
  });
6178
6299
 
6179
- const is$typed$f = is$typed$G, validate$f = validate$G;
6300
+ const is$typed$f = is$typed$H, validate$f = validate$H;
6180
6301
  const id$f = 'pub.leaflet.blocks.bskyPost';
6181
6302
  const hashMain$f = 'main';
6182
6303
  function isMain$f(v) {
@@ -6192,7 +6313,7 @@ var bskyPost = /*#__PURE__*/Object.freeze({
6192
6313
  validateMain: validateMain$f
6193
6314
  });
6194
6315
 
6195
- const is$typed$e = is$typed$G, validate$e = validate$G;
6316
+ const is$typed$e = is$typed$H, validate$e = validate$H;
6196
6317
  const id$e = 'pub.leaflet.blocks.button';
6197
6318
  const hashMain$e = 'main';
6198
6319
  function isMain$e(v) {
@@ -6208,7 +6329,7 @@ var button = /*#__PURE__*/Object.freeze({
6208
6329
  validateMain: validateMain$e
6209
6330
  });
6210
6331
 
6211
- const is$typed$d = is$typed$G, validate$d = validate$G;
6332
+ const is$typed$d = is$typed$H, validate$d = validate$H;
6212
6333
  const id$d = 'pub.leaflet.blocks.code';
6213
6334
  const hashMain$d = 'main';
6214
6335
  function isMain$d(v) {
@@ -6224,7 +6345,7 @@ var code = /*#__PURE__*/Object.freeze({
6224
6345
  validateMain: validateMain$d
6225
6346
  });
6226
6347
 
6227
- const is$typed$c = is$typed$G, validate$c = validate$G;
6348
+ const is$typed$c = is$typed$H, validate$c = validate$H;
6228
6349
  const id$c = 'pub.leaflet.blocks.header';
6229
6350
  const hashMain$c = 'main';
6230
6351
  function isMain$c(v) {
@@ -6240,7 +6361,7 @@ var header = /*#__PURE__*/Object.freeze({
6240
6361
  validateMain: validateMain$c
6241
6362
  });
6242
6363
 
6243
- const is$typed$b = is$typed$G, validate$b = validate$G;
6364
+ const is$typed$b = is$typed$H, validate$b = validate$H;
6244
6365
  const id$b = 'pub.leaflet.blocks.horizontalRule';
6245
6366
  const hashMain$b = 'main';
6246
6367
  function isMain$b(v) {
@@ -6256,7 +6377,7 @@ var horizontalRule = /*#__PURE__*/Object.freeze({
6256
6377
  validateMain: validateMain$b
6257
6378
  });
6258
6379
 
6259
- const is$typed$a = is$typed$G, validate$a = validate$G;
6380
+ const is$typed$a = is$typed$H, validate$a = validate$H;
6260
6381
  const id$a = 'pub.leaflet.blocks.iframe';
6261
6382
  const hashMain$a = 'main';
6262
6383
  function isMain$a(v) {
@@ -6272,7 +6393,7 @@ var iframe = /*#__PURE__*/Object.freeze({
6272
6393
  validateMain: validateMain$a
6273
6394
  });
6274
6395
 
6275
- const is$typed$9 = is$typed$G, validate$9 = validate$G;
6396
+ const is$typed$9 = is$typed$H, validate$9 = validate$H;
6276
6397
  const id$9 = 'pub.leaflet.blocks.image';
6277
6398
  const hashMain$9 = 'main';
6278
6399
  function isMain$9(v) {
@@ -6297,7 +6418,7 @@ var image = /*#__PURE__*/Object.freeze({
6297
6418
  validateMain: validateMain$9
6298
6419
  });
6299
6420
 
6300
- const is$typed$8 = is$typed$G, validate$8 = validate$G;
6421
+ const is$typed$8 = is$typed$H, validate$8 = validate$H;
6301
6422
  const id$8 = 'pub.leaflet.blocks.math';
6302
6423
  const hashMain$8 = 'main';
6303
6424
  function isMain$8(v) {
@@ -6313,7 +6434,7 @@ var math = /*#__PURE__*/Object.freeze({
6313
6434
  validateMain: validateMain$8
6314
6435
  });
6315
6436
 
6316
- const is$typed$7 = is$typed$G, validate$7 = validate$G;
6437
+ const is$typed$7 = is$typed$H, validate$7 = validate$H;
6317
6438
  const id$7 = 'pub.leaflet.blocks.orderedList';
6318
6439
  const hashMain$7 = 'main';
6319
6440
  function isMain$7(v) {
@@ -6338,7 +6459,7 @@ var orderedList = /*#__PURE__*/Object.freeze({
6338
6459
  validateMain: validateMain$7
6339
6460
  });
6340
6461
 
6341
- const is$typed$6 = is$typed$G, validate$6 = validate$G;
6462
+ const is$typed$6 = is$typed$H, validate$6 = validate$H;
6342
6463
  const id$6 = 'pub.leaflet.blocks.page';
6343
6464
  const hashMain$6 = 'main';
6344
6465
  function isMain$6(v) {
@@ -6354,7 +6475,7 @@ var page = /*#__PURE__*/Object.freeze({
6354
6475
  validateMain: validateMain$6
6355
6476
  });
6356
6477
 
6357
- const is$typed$5 = is$typed$G, validate$5 = validate$G;
6478
+ const is$typed$5 = is$typed$H, validate$5 = validate$H;
6358
6479
  const id$5 = 'pub.leaflet.blocks.poll';
6359
6480
  const hashMain$5 = 'main';
6360
6481
  function isMain$5(v) {
@@ -6370,7 +6491,7 @@ var poll = /*#__PURE__*/Object.freeze({
6370
6491
  validateMain: validateMain$5
6371
6492
  });
6372
6493
 
6373
- const is$typed$4 = is$typed$G, validate$4 = validate$G;
6494
+ const is$typed$4 = is$typed$H, validate$4 = validate$H;
6374
6495
  const id$4 = 'pub.leaflet.blocks.text';
6375
6496
  const hashMain$4 = 'main';
6376
6497
  function isMain$4(v) {
@@ -6386,7 +6507,7 @@ var text = /*#__PURE__*/Object.freeze({
6386
6507
  validateMain: validateMain$4
6387
6508
  });
6388
6509
 
6389
- const is$typed$3 = is$typed$G, validate$3 = validate$G;
6510
+ const is$typed$3 = is$typed$H, validate$3 = validate$H;
6390
6511
  const id$3 = 'pub.leaflet.blocks.unorderedList';
6391
6512
  const hashMain$3 = 'main';
6392
6513
  function isMain$3(v) {
@@ -6411,7 +6532,7 @@ var unorderedList = /*#__PURE__*/Object.freeze({
6411
6532
  validateMain: validateMain$3
6412
6533
  });
6413
6534
 
6414
- const is$typed$2 = is$typed$G, validate$2 = validate$G;
6535
+ const is$typed$2 = is$typed$H, validate$2 = validate$H;
6415
6536
  const id$2 = 'pub.leaflet.blocks.website';
6416
6537
  const hashMain$2 = 'main';
6417
6538
  function isMain$2(v) {
@@ -6427,7 +6548,7 @@ var website = /*#__PURE__*/Object.freeze({
6427
6548
  validateMain: validateMain$2
6428
6549
  });
6429
6550
 
6430
- const is$typed$1 = is$typed$G, validate$1 = validate$G;
6551
+ const is$typed$1 = is$typed$H, validate$1 = validate$H;
6431
6552
  const id$1 = 'pub.leaflet.pages.linearDocument';
6432
6553
  const hashMain$1 = 'main';
6433
6554
  function isMain$1(v) {
@@ -6478,7 +6599,7 @@ var linearDocument = /*#__PURE__*/Object.freeze({
6478
6599
  validateQuote: validateQuote
6479
6600
  });
6480
6601
 
6481
- const is$typed = is$typed$G, validate = validate$G;
6602
+ const is$typed = is$typed$H, validate = validate$H;
6482
6603
  const id = 'pub.leaflet.richtext.facet';
6483
6604
  const hashMain = 'main';
6484
6605
  function isMain(v) {
@@ -6608,7 +6729,7 @@ var facet = /*#__PURE__*/Object.freeze({
6608
6729
  * ⚠️ DO NOT EDIT THIS FILE MANUALLY ⚠️
6609
6730
  *
6610
6731
  * This file is automatically generated by scripts/generate-exports.js
6611
- * Generated: 2026-04-09T15:15:03.610Z
6732
+ * Generated: 2026-05-21T22:21:01.664Z
6612
6733
  *
6613
6734
  * To regenerate this file, run:
6614
6735
  * npm run gen-api
@@ -6632,6 +6753,7 @@ const BADGE_AWARD_NSID = "app.certified.badge.award";
6632
6753
  const BADGE_DEFINITION_NSID = "app.certified.badge.definition";
6633
6754
  const BADGE_RESPONSE_NSID = "app.certified.badge.response";
6634
6755
  const CERTIFIED_DEFS_NSID = "app.certified.defs";
6756
+ const GRAPH_FOLLOW_NSID = "app.certified.graph.follow";
6635
6757
  const LINK_EVM_NSID = "app.certified.link.evm";
6636
6758
  const LOCATION_NSID = "app.certified.location";
6637
6759
  const STRONG_REF_NSID = "com.atproto.repo.strongRef";
@@ -6681,6 +6803,7 @@ const HYPERCERTS_NSIDS = {
6681
6803
  BADGE_DEFINITION: BADGE_DEFINITION_NSID,
6682
6804
  BADGE_RESPONSE: BADGE_RESPONSE_NSID,
6683
6805
  CERTIFIED_DEFS: CERTIFIED_DEFS_NSID,
6806
+ GRAPH_FOLLOW: GRAPH_FOLLOW_NSID,
6684
6807
  LINK_EVM: LINK_EVM_NSID,
6685
6808
  LOCATION: LOCATION_NSID,
6686
6809
  STRONG_REF: STRONG_REF_NSID,
@@ -6728,6 +6851,7 @@ const HYPERCERTS_LEXICON_JSON = {
6728
6851
  BADGE_DEFINITION: BADGE_DEFINITION_LEXICON_JSON,
6729
6852
  BADGE_RESPONSE: BADGE_RESPONSE_LEXICON_JSON,
6730
6853
  CERTIFIED_DEFS: CERTIFIED_DEFS_LEXICON_JSON,
6854
+ GRAPH_FOLLOW: GRAPH_FOLLOW_LEXICON_JSON,
6731
6855
  LINK_EVM: LINK_EVM_LEXICON_JSON,
6732
6856
  LOCATION: LOCATION_LEXICON_JSON,
6733
6857
  STRONG_REF: STRONG_REF_LEXICON_JSON,
@@ -6772,6 +6896,7 @@ const BADGE_AWARD_LEXICON_DOC = lexicons.get(BADGE_AWARD_NSID);
6772
6896
  const BADGE_DEFINITION_LEXICON_DOC = lexicons.get(BADGE_DEFINITION_NSID);
6773
6897
  const BADGE_RESPONSE_LEXICON_DOC = lexicons.get(BADGE_RESPONSE_NSID);
6774
6898
  const CERTIFIED_DEFS_LEXICON_DOC = lexicons.get(CERTIFIED_DEFS_NSID);
6899
+ const GRAPH_FOLLOW_LEXICON_DOC = lexicons.get(GRAPH_FOLLOW_NSID);
6775
6900
  const LINK_EVM_LEXICON_DOC = lexicons.get(LINK_EVM_NSID);
6776
6901
  const LOCATION_LEXICON_DOC = lexicons.get(LOCATION_NSID);
6777
6902
  const STRONG_REF_LEXICON_DOC = lexicons.get(STRONG_REF_NSID);
@@ -6818,6 +6943,7 @@ const HYPERCERTS_LEXICON_DOC = {
6818
6943
  BADGE_DEFINITION: BADGE_DEFINITION_LEXICON_DOC,
6819
6944
  BADGE_RESPONSE: BADGE_RESPONSE_LEXICON_DOC,
6820
6945
  CERTIFIED_DEFS: CERTIFIED_DEFS_LEXICON_DOC,
6946
+ GRAPH_FOLLOW: GRAPH_FOLLOW_LEXICON_DOC,
6821
6947
  LINK_EVM: LINK_EVM_LEXICON_DOC,
6822
6948
  LOCATION: LOCATION_LEXICON_DOC,
6823
6949
  STRONG_REF: STRONG_REF_LEXICON_DOC,
@@ -6855,5 +6981,5 @@ const HYPERCERTS_LEXICON_DOC = {
6855
6981
  LEAFLET_RICHTEXT_FACET: LEAFLET_RICHTEXT_FACET_LEXICON_DOC,
6856
6982
  };
6857
6983
 
6858
- export { ACTIVITY_LEXICON_DOC, ACTIVITY_LEXICON_JSON, ACTIVITY_NSID, ACTOR_ORGANIZATION_LEXICON_DOC, ACTOR_ORGANIZATION_LEXICON_JSON, ACTOR_ORGANIZATION_NSID, ACTOR_PROFILE_LEXICON_DOC, ACTOR_PROFILE_LEXICON_JSON, ACTOR_PROFILE_NSID, facet$1 as AppBskyRichtextFacet, organization as AppCertifiedActorOrganization, profile as AppCertifiedActorProfile, award as AppCertifiedBadgeAward, definition as AppCertifiedBadgeDefinition, response as AppCertifiedBadgeResponse, defs$1 as AppCertifiedDefs, evm as AppCertifiedLinkEvm, location as AppCertifiedLocation, BADGE_AWARD_LEXICON_DOC, BADGE_AWARD_LEXICON_JSON, BADGE_AWARD_NSID, BADGE_DEFINITION_LEXICON_DOC, BADGE_DEFINITION_LEXICON_JSON, BADGE_DEFINITION_NSID, BADGE_RESPONSE_LEXICON_DOC, BADGE_RESPONSE_LEXICON_JSON, BADGE_RESPONSE_NSID, BSKY_RICHTEXT_FACET_LEXICON_DOC, BSKY_RICHTEXT_FACET_LEXICON_JSON, BSKY_RICHTEXT_FACET_NSID, CERTIFIED_DEFS_LEXICON_DOC, CERTIFIED_DEFS_LEXICON_JSON, CERTIFIED_DEFS_NSID, CONTEXT_ACKNOWLEDGEMENT_LEXICON_DOC, CONTEXT_ACKNOWLEDGEMENT_LEXICON_JSON, CONTEXT_ACKNOWLEDGEMENT_NSID, CONTEXT_ATTACHMENT_LEXICON_DOC, CONTEXT_ATTACHMENT_LEXICON_JSON, CONTEXT_ATTACHMENT_NSID, CONTEXT_EVALUATION_LEXICON_DOC, CONTEXT_EVALUATION_LEXICON_JSON, CONTEXT_EVALUATION_NSID, CONTEXT_MEASUREMENT_LEXICON_DOC, CONTEXT_MEASUREMENT_LEXICON_JSON, CONTEXT_MEASUREMENT_NSID, CONTRIBUTION_LEXICON_DOC, CONTRIBUTION_LEXICON_JSON, CONTRIBUTION_NSID, CONTRIBUTOR_INFORMATION_LEXICON_DOC, CONTRIBUTOR_INFORMATION_LEXICON_JSON, CONTRIBUTOR_INFORMATION_NSID, strongRef as ComAtprotoRepoStrongRef, FUNDING_RECEIPT_LEXICON_DOC, FUNDING_RECEIPT_LEXICON_JSON, FUNDING_RECEIPT_NSID, HYPERBOARDS_BOARD_LEXICON_DOC, HYPERBOARDS_BOARD_LEXICON_JSON, HYPERBOARDS_BOARD_NSID, HYPERBOARDS_DISPLAY_PROFILE_LEXICON_DOC, HYPERBOARDS_DISPLAY_PROFILE_LEXICON_JSON, HYPERBOARDS_DISPLAY_PROFILE_NSID, HYPERCERTS_COLLECTION_LEXICON_DOC, HYPERCERTS_COLLECTION_LEXICON_JSON, HYPERCERTS_COLLECTION_NSID, HYPERCERTS_DEFS_LEXICON_DOC, HYPERCERTS_DEFS_LEXICON_JSON, HYPERCERTS_DEFS_NSID, HYPERCERTS_LEXICON_DOC, HYPERCERTS_LEXICON_JSON, HYPERCERTS_NSIDS, ids as HYPERCERTS_NSIDS_BY_TYPE, schemas as HYPERCERTS_SCHEMAS, schemaDict as HYPERCERTS_SCHEMA_DICT, LEAFLET_BLOCKS_BLOCKQUOTE_LEXICON_DOC, LEAFLET_BLOCKS_BLOCKQUOTE_LEXICON_JSON, LEAFLET_BLOCKS_BLOCKQUOTE_NSID, LEAFLET_BLOCKS_BSKY_POST_LEXICON_DOC, LEAFLET_BLOCKS_BSKY_POST_LEXICON_JSON, LEAFLET_BLOCKS_BSKY_POST_NSID, LEAFLET_BLOCKS_BUTTON_LEXICON_DOC, LEAFLET_BLOCKS_BUTTON_LEXICON_JSON, LEAFLET_BLOCKS_BUTTON_NSID, LEAFLET_BLOCKS_CODE_LEXICON_DOC, LEAFLET_BLOCKS_CODE_LEXICON_JSON, LEAFLET_BLOCKS_CODE_NSID, LEAFLET_BLOCKS_HEADER_LEXICON_DOC, LEAFLET_BLOCKS_HEADER_LEXICON_JSON, LEAFLET_BLOCKS_HEADER_NSID, LEAFLET_BLOCKS_HORIZONTAL_RULE_LEXICON_DOC, LEAFLET_BLOCKS_HORIZONTAL_RULE_LEXICON_JSON, LEAFLET_BLOCKS_HORIZONTAL_RULE_NSID, LEAFLET_BLOCKS_IFRAME_LEXICON_DOC, LEAFLET_BLOCKS_IFRAME_LEXICON_JSON, LEAFLET_BLOCKS_IFRAME_NSID, LEAFLET_BLOCKS_IMAGE_LEXICON_DOC, LEAFLET_BLOCKS_IMAGE_LEXICON_JSON, LEAFLET_BLOCKS_IMAGE_NSID, LEAFLET_BLOCKS_MATH_LEXICON_DOC, LEAFLET_BLOCKS_MATH_LEXICON_JSON, LEAFLET_BLOCKS_MATH_NSID, LEAFLET_BLOCKS_ORDERED_LIST_LEXICON_DOC, LEAFLET_BLOCKS_ORDERED_LIST_LEXICON_JSON, LEAFLET_BLOCKS_ORDERED_LIST_NSID, LEAFLET_BLOCKS_PAGE_LEXICON_DOC, LEAFLET_BLOCKS_PAGE_LEXICON_JSON, LEAFLET_BLOCKS_PAGE_NSID, LEAFLET_BLOCKS_POLL_LEXICON_DOC, LEAFLET_BLOCKS_POLL_LEXICON_JSON, LEAFLET_BLOCKS_POLL_NSID, LEAFLET_BLOCKS_TEXT_LEXICON_DOC, LEAFLET_BLOCKS_TEXT_LEXICON_JSON, LEAFLET_BLOCKS_TEXT_NSID, LEAFLET_BLOCKS_UNORDERED_LIST_LEXICON_DOC, LEAFLET_BLOCKS_UNORDERED_LIST_LEXICON_JSON, LEAFLET_BLOCKS_UNORDERED_LIST_NSID, LEAFLET_BLOCKS_WEBSITE_LEXICON_DOC, LEAFLET_BLOCKS_WEBSITE_LEXICON_JSON, LEAFLET_BLOCKS_WEBSITE_NSID, LEAFLET_PAGES_LINEAR_DOCUMENT_LEXICON_DOC, LEAFLET_PAGES_LINEAR_DOCUMENT_LEXICON_JSON, LEAFLET_PAGES_LINEAR_DOCUMENT_NSID, LEAFLET_RICHTEXT_FACET_LEXICON_DOC, LEAFLET_RICHTEXT_FACET_LEXICON_JSON, LEAFLET_RICHTEXT_FACET_NSID, LINK_EVM_LEXICON_DOC, LINK_EVM_LEXICON_JSON, LINK_EVM_NSID, LOCATION_LEXICON_DOC, LOCATION_LEXICON_JSON, LOCATION_NSID, board as OrgHyperboardsBoard, displayProfile as OrgHyperboardsDisplayProfile, activity as OrgHypercertsClaimActivity, contribution as OrgHypercertsClaimContribution, contributorInformation as OrgHypercertsClaimContributorInformation, rights as OrgHypercertsClaimRights, collection as OrgHypercertsCollection, acknowledgement as OrgHypercertsContextAcknowledgement, attachment as OrgHypercertsContextAttachment, evaluation as OrgHypercertsContextEvaluation, measurement as OrgHypercertsContextMeasurement, defs as OrgHypercertsDefs, receipt as OrgHypercertsFundingReceipt, cel as OrgHypercertsWorkscopeCel, tag as OrgHypercertsWorkscopeTag, blockquote as PubLeafletBlocksBlockquote, bskyPost as PubLeafletBlocksBskyPost, button as PubLeafletBlocksButton, code as PubLeafletBlocksCode, header as PubLeafletBlocksHeader, horizontalRule as PubLeafletBlocksHorizontalRule, iframe as PubLeafletBlocksIframe, image as PubLeafletBlocksImage, math as PubLeafletBlocksMath, orderedList as PubLeafletBlocksOrderedList, page as PubLeafletBlocksPage, poll as PubLeafletBlocksPoll, text as PubLeafletBlocksText, unorderedList as PubLeafletBlocksUnorderedList, website as PubLeafletBlocksWebsite, linearDocument as PubLeafletPagesLinearDocument, facet as PubLeafletRichtextFacet, RIGHTS_LEXICON_DOC, RIGHTS_LEXICON_JSON, RIGHTS_NSID, STRONG_REF_LEXICON_DOC, STRONG_REF_LEXICON_JSON, STRONG_REF_NSID, WORKSCOPE_CEL_LEXICON_DOC, WORKSCOPE_CEL_LEXICON_JSON, WORKSCOPE_CEL_NSID, WORKSCOPE_TAG_LEXICON_DOC, WORKSCOPE_TAG_LEXICON_JSON, WORKSCOPE_TAG_NSID, asPredicate, is$typed$G as is$typed, lexicons, maybe$typed, validate$G as validate };
6984
+ export { ACTIVITY_LEXICON_DOC, ACTIVITY_LEXICON_JSON, ACTIVITY_NSID, ACTOR_ORGANIZATION_LEXICON_DOC, ACTOR_ORGANIZATION_LEXICON_JSON, ACTOR_ORGANIZATION_NSID, ACTOR_PROFILE_LEXICON_DOC, ACTOR_PROFILE_LEXICON_JSON, ACTOR_PROFILE_NSID, facet$1 as AppBskyRichtextFacet, organization as AppCertifiedActorOrganization, profile as AppCertifiedActorProfile, award as AppCertifiedBadgeAward, definition as AppCertifiedBadgeDefinition, response as AppCertifiedBadgeResponse, defs$1 as AppCertifiedDefs, follow as AppCertifiedGraphFollow, evm as AppCertifiedLinkEvm, location as AppCertifiedLocation, BADGE_AWARD_LEXICON_DOC, BADGE_AWARD_LEXICON_JSON, BADGE_AWARD_NSID, BADGE_DEFINITION_LEXICON_DOC, BADGE_DEFINITION_LEXICON_JSON, BADGE_DEFINITION_NSID, BADGE_RESPONSE_LEXICON_DOC, BADGE_RESPONSE_LEXICON_JSON, BADGE_RESPONSE_NSID, BSKY_RICHTEXT_FACET_LEXICON_DOC, BSKY_RICHTEXT_FACET_LEXICON_JSON, BSKY_RICHTEXT_FACET_NSID, CERTIFIED_DEFS_LEXICON_DOC, CERTIFIED_DEFS_LEXICON_JSON, CERTIFIED_DEFS_NSID, CONTEXT_ACKNOWLEDGEMENT_LEXICON_DOC, CONTEXT_ACKNOWLEDGEMENT_LEXICON_JSON, CONTEXT_ACKNOWLEDGEMENT_NSID, CONTEXT_ATTACHMENT_LEXICON_DOC, CONTEXT_ATTACHMENT_LEXICON_JSON, CONTEXT_ATTACHMENT_NSID, CONTEXT_EVALUATION_LEXICON_DOC, CONTEXT_EVALUATION_LEXICON_JSON, CONTEXT_EVALUATION_NSID, CONTEXT_MEASUREMENT_LEXICON_DOC, CONTEXT_MEASUREMENT_LEXICON_JSON, CONTEXT_MEASUREMENT_NSID, CONTRIBUTION_LEXICON_DOC, CONTRIBUTION_LEXICON_JSON, CONTRIBUTION_NSID, CONTRIBUTOR_INFORMATION_LEXICON_DOC, CONTRIBUTOR_INFORMATION_LEXICON_JSON, CONTRIBUTOR_INFORMATION_NSID, strongRef as ComAtprotoRepoStrongRef, FUNDING_RECEIPT_LEXICON_DOC, FUNDING_RECEIPT_LEXICON_JSON, FUNDING_RECEIPT_NSID, GRAPH_FOLLOW_LEXICON_DOC, GRAPH_FOLLOW_LEXICON_JSON, GRAPH_FOLLOW_NSID, HYPERBOARDS_BOARD_LEXICON_DOC, HYPERBOARDS_BOARD_LEXICON_JSON, HYPERBOARDS_BOARD_NSID, HYPERBOARDS_DISPLAY_PROFILE_LEXICON_DOC, HYPERBOARDS_DISPLAY_PROFILE_LEXICON_JSON, HYPERBOARDS_DISPLAY_PROFILE_NSID, HYPERCERTS_COLLECTION_LEXICON_DOC, HYPERCERTS_COLLECTION_LEXICON_JSON, HYPERCERTS_COLLECTION_NSID, HYPERCERTS_DEFS_LEXICON_DOC, HYPERCERTS_DEFS_LEXICON_JSON, HYPERCERTS_DEFS_NSID, HYPERCERTS_LEXICON_DOC, HYPERCERTS_LEXICON_JSON, HYPERCERTS_NSIDS, ids as HYPERCERTS_NSIDS_BY_TYPE, schemas as HYPERCERTS_SCHEMAS, schemaDict as HYPERCERTS_SCHEMA_DICT, LEAFLET_BLOCKS_BLOCKQUOTE_LEXICON_DOC, LEAFLET_BLOCKS_BLOCKQUOTE_LEXICON_JSON, LEAFLET_BLOCKS_BLOCKQUOTE_NSID, LEAFLET_BLOCKS_BSKY_POST_LEXICON_DOC, LEAFLET_BLOCKS_BSKY_POST_LEXICON_JSON, LEAFLET_BLOCKS_BSKY_POST_NSID, LEAFLET_BLOCKS_BUTTON_LEXICON_DOC, LEAFLET_BLOCKS_BUTTON_LEXICON_JSON, LEAFLET_BLOCKS_BUTTON_NSID, LEAFLET_BLOCKS_CODE_LEXICON_DOC, LEAFLET_BLOCKS_CODE_LEXICON_JSON, LEAFLET_BLOCKS_CODE_NSID, LEAFLET_BLOCKS_HEADER_LEXICON_DOC, LEAFLET_BLOCKS_HEADER_LEXICON_JSON, LEAFLET_BLOCKS_HEADER_NSID, LEAFLET_BLOCKS_HORIZONTAL_RULE_LEXICON_DOC, LEAFLET_BLOCKS_HORIZONTAL_RULE_LEXICON_JSON, LEAFLET_BLOCKS_HORIZONTAL_RULE_NSID, LEAFLET_BLOCKS_IFRAME_LEXICON_DOC, LEAFLET_BLOCKS_IFRAME_LEXICON_JSON, LEAFLET_BLOCKS_IFRAME_NSID, LEAFLET_BLOCKS_IMAGE_LEXICON_DOC, LEAFLET_BLOCKS_IMAGE_LEXICON_JSON, LEAFLET_BLOCKS_IMAGE_NSID, LEAFLET_BLOCKS_MATH_LEXICON_DOC, LEAFLET_BLOCKS_MATH_LEXICON_JSON, LEAFLET_BLOCKS_MATH_NSID, LEAFLET_BLOCKS_ORDERED_LIST_LEXICON_DOC, LEAFLET_BLOCKS_ORDERED_LIST_LEXICON_JSON, LEAFLET_BLOCKS_ORDERED_LIST_NSID, LEAFLET_BLOCKS_PAGE_LEXICON_DOC, LEAFLET_BLOCKS_PAGE_LEXICON_JSON, LEAFLET_BLOCKS_PAGE_NSID, LEAFLET_BLOCKS_POLL_LEXICON_DOC, LEAFLET_BLOCKS_POLL_LEXICON_JSON, LEAFLET_BLOCKS_POLL_NSID, LEAFLET_BLOCKS_TEXT_LEXICON_DOC, LEAFLET_BLOCKS_TEXT_LEXICON_JSON, LEAFLET_BLOCKS_TEXT_NSID, LEAFLET_BLOCKS_UNORDERED_LIST_LEXICON_DOC, LEAFLET_BLOCKS_UNORDERED_LIST_LEXICON_JSON, LEAFLET_BLOCKS_UNORDERED_LIST_NSID, LEAFLET_BLOCKS_WEBSITE_LEXICON_DOC, LEAFLET_BLOCKS_WEBSITE_LEXICON_JSON, LEAFLET_BLOCKS_WEBSITE_NSID, LEAFLET_PAGES_LINEAR_DOCUMENT_LEXICON_DOC, LEAFLET_PAGES_LINEAR_DOCUMENT_LEXICON_JSON, LEAFLET_PAGES_LINEAR_DOCUMENT_NSID, LEAFLET_RICHTEXT_FACET_LEXICON_DOC, LEAFLET_RICHTEXT_FACET_LEXICON_JSON, LEAFLET_RICHTEXT_FACET_NSID, LINK_EVM_LEXICON_DOC, LINK_EVM_LEXICON_JSON, LINK_EVM_NSID, LOCATION_LEXICON_DOC, LOCATION_LEXICON_JSON, LOCATION_NSID, board as OrgHyperboardsBoard, displayProfile as OrgHyperboardsDisplayProfile, activity as OrgHypercertsClaimActivity, contribution as OrgHypercertsClaimContribution, contributorInformation as OrgHypercertsClaimContributorInformation, rights as OrgHypercertsClaimRights, collection as OrgHypercertsCollection, acknowledgement as OrgHypercertsContextAcknowledgement, attachment as OrgHypercertsContextAttachment, evaluation as OrgHypercertsContextEvaluation, measurement as OrgHypercertsContextMeasurement, defs as OrgHypercertsDefs, receipt as OrgHypercertsFundingReceipt, cel as OrgHypercertsWorkscopeCel, tag as OrgHypercertsWorkscopeTag, blockquote as PubLeafletBlocksBlockquote, bskyPost as PubLeafletBlocksBskyPost, button as PubLeafletBlocksButton, code as PubLeafletBlocksCode, header as PubLeafletBlocksHeader, horizontalRule as PubLeafletBlocksHorizontalRule, iframe as PubLeafletBlocksIframe, image as PubLeafletBlocksImage, math as PubLeafletBlocksMath, orderedList as PubLeafletBlocksOrderedList, page as PubLeafletBlocksPage, poll as PubLeafletBlocksPoll, text as PubLeafletBlocksText, unorderedList as PubLeafletBlocksUnorderedList, website as PubLeafletBlocksWebsite, linearDocument as PubLeafletPagesLinearDocument, facet as PubLeafletRichtextFacet, RIGHTS_LEXICON_DOC, RIGHTS_LEXICON_JSON, RIGHTS_NSID, STRONG_REF_LEXICON_DOC, STRONG_REF_LEXICON_JSON, STRONG_REF_NSID, WORKSCOPE_CEL_LEXICON_DOC, WORKSCOPE_CEL_LEXICON_JSON, WORKSCOPE_CEL_NSID, WORKSCOPE_TAG_LEXICON_DOC, WORKSCOPE_TAG_LEXICON_JSON, WORKSCOPE_TAG_NSID, asPredicate, is$typed$H as is$typed, lexicons, maybe$typed, validate$H as validate };
6859
6985
  //# sourceMappingURL=index.mjs.map