@hypercerts-org/lexicon 0.12.0 → 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 (35) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +92 -9
  3. package/SCHEMAS.md +27 -11
  4. package/dist/exports.d.ts +39 -2
  5. package/dist/exports.d.ts.map +1 -1
  6. package/dist/generated/exports.d.ts +39 -2
  7. package/dist/generated/exports.d.ts.map +1 -1
  8. package/dist/generated/lexicons.d.ts +70 -6
  9. package/dist/generated/lexicons.d.ts.map +1 -1
  10. package/dist/generated/types/app/certified/graph/follow.d.ts +18 -0
  11. package/dist/generated/types/app/certified/graph/follow.d.ts.map +1 -0
  12. package/dist/generated/types/app/certified/location.d.ts +1 -1
  13. package/dist/generated/types/app/certified/location.d.ts.map +1 -1
  14. package/dist/generated/types/org/hypercerts/workscope/tag.d.ts +2 -2
  15. package/dist/generated/types/org/hypercerts/workscope/tag.d.ts.map +1 -1
  16. package/dist/index.cjs +319 -220
  17. package/dist/index.cjs.map +1 -1
  18. package/dist/index.mjs +311 -216
  19. package/dist/index.mjs.map +1 -1
  20. package/dist/lexicons.cjs +36 -3
  21. package/dist/lexicons.cjs.map +1 -1
  22. package/dist/lexicons.d.ts +70 -6
  23. package/dist/lexicons.d.ts.map +1 -1
  24. package/dist/lexicons.mjs +36 -3
  25. package/dist/lexicons.mjs.map +1 -1
  26. package/dist/types/app/certified/graph/follow.d.ts +18 -0
  27. package/dist/types/app/certified/graph/follow.d.ts.map +1 -0
  28. package/dist/types/app/certified/location.d.ts +1 -1
  29. package/dist/types/app/certified/location.d.ts.map +1 -1
  30. package/dist/types/org/hypercerts/workscope/tag.d.ts +2 -2
  31. package/dist/types/org/hypercerts/workscope/tag.d.ts.map +1 -1
  32. package/lexicons/app/certified/graph/follow.json +32 -0
  33. package/lexicons/app/certified/location.json +1 -1
  34. package/lexicons/org/hypercerts/workscope/tag.json +2 -2
  35. package/package.json +1 -1
package/dist/index.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var lexicon$G = require('@atproto/lexicon');
3
+ var lexicon$H = require('@atproto/lexicon');
4
4
 
5
5
  /**
6
6
  * GENERATED CODE - DO NOT MODIFY
@@ -18,7 +18,7 @@ function is$type($type, id, hash) {
18
18
  $type.startsWith(id) &&
19
19
  $type.endsWith(hash);
20
20
  }
21
- function is$typed$G(v, id, hash) {
21
+ function is$typed$H(v, id, hash) {
22
22
  return isObject(v) && '$type' in v && is$type(v.$type, id, hash);
23
23
  }
24
24
  function maybe$typed(v, id, hash) {
@@ -430,6 +430,38 @@ const schemaDict = {
430
430
  },
431
431
  },
432
432
  },
433
+ AppCertifiedGraphFollow: {
434
+ lexicon: 1,
435
+ id: 'app.certified.graph.follow',
436
+ defs: {
437
+ main: {
438
+ type: 'record',
439
+ description: "Record declaring a social 'follow' relationship of another account. Duplicate follows will be ignored by the AppView.",
440
+ key: 'tid',
441
+ record: {
442
+ type: 'object',
443
+ required: ['subject', 'createdAt'],
444
+ properties: {
445
+ subject: {
446
+ type: 'string',
447
+ format: 'did',
448
+ description: 'DID of the account being followed.',
449
+ },
450
+ createdAt: {
451
+ type: 'string',
452
+ format: 'datetime',
453
+ description: 'Client-declared timestamp when this record was originally created.',
454
+ },
455
+ via: {
456
+ type: 'ref',
457
+ ref: 'lex:com.atproto.repo.strongRef',
458
+ 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.',
459
+ },
460
+ },
461
+ },
462
+ },
463
+ },
464
+ },
433
465
  AppCertifiedLinkEvm: {
434
466
  lexicon: 1,
435
467
  id: 'app.certified.link.evm',
@@ -549,7 +581,7 @@ const schemaDict = {
549
581
  },
550
582
  locationType: {
551
583
  type: 'string',
552
- 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',
584
+ 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",
553
585
  knownValues: [
554
586
  'coordinate-decimal',
555
587
  'geojson-point',
@@ -1853,7 +1885,7 @@ const schemaDict = {
1853
1885
  },
1854
1886
  category: {
1855
1887
  type: 'string',
1856
- description: 'Category type of this scope.',
1888
+ description: 'Category type of this scope. Values beyond the known set are permitted.',
1857
1889
  knownValues: ['topic', 'language', 'domain', 'method'],
1858
1890
  maxLength: 50,
1859
1891
  },
@@ -1870,7 +1902,7 @@ const schemaDict = {
1870
1902
  },
1871
1903
  status: {
1872
1904
  type: 'string',
1873
- description: 'Lifecycle status of this tag. Communities propose tags, curators accept them, deprecated tags point to replacements via supersededBy.',
1905
+ 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.',
1874
1906
  knownValues: ['proposed', 'accepted', 'deprecated'],
1875
1907
  maxLength: 20,
1876
1908
  },
@@ -2549,13 +2581,13 @@ const schemaDict = {
2549
2581
  },
2550
2582
  };
2551
2583
  const schemas = Object.values(schemaDict);
2552
- const lexicons = new lexicon$G.Lexicons(schemas);
2553
- function validate$G(v, id, hash, requiredType) {
2554
- return (requiredType ? is$typed$G : maybe$typed)(v, id, hash)
2584
+ const lexicons = new lexicon$H.Lexicons(schemas);
2585
+ function validate$H(v, id, hash, requiredType) {
2586
+ return (requiredType ? is$typed$H : maybe$typed)(v, id, hash)
2555
2587
  ? lexicons.validate(`${id}#${hash}`, v)
2556
2588
  : {
2557
2589
  success: false,
2558
- error: new lexicon$G.ValidationError(`Must be an object with "${hash === 'main' ? id : `${id}#${hash}`}" $type property`),
2590
+ error: new lexicon$H.ValidationError(`Must be an object with "${hash === 'main' ? id : `${id}#${hash}`}" $type property`),
2559
2591
  };
2560
2592
  }
2561
2593
  const ids = {
@@ -2566,6 +2598,7 @@ const ids = {
2566
2598
  AppCertifiedBadgeDefinition: 'app.certified.badge.definition',
2567
2599
  AppCertifiedBadgeResponse: 'app.certified.badge.response',
2568
2600
  AppCertifiedDefs: 'app.certified.defs',
2601
+ AppCertifiedGraphFollow: 'app.certified.graph.follow',
2569
2602
  AppCertifiedLinkEvm: 'app.certified.link.evm',
2570
2603
  AppCertifiedLocation: 'app.certified.location',
2571
2604
  ComAtprotoRepoStrongRef: 'com.atproto.repo.strongRef',
@@ -2603,9 +2636,9 @@ const ids = {
2603
2636
  PubLeafletRichtextFacet: 'pub.leaflet.richtext.facet',
2604
2637
  };
2605
2638
 
2606
- var lexicon$F = 1;
2607
- var id$1j = "app.bsky.richtext.facet";
2608
- var defs$H = {
2639
+ var lexicon$G = 1;
2640
+ var id$1l = "app.bsky.richtext.facet";
2641
+ var defs$I = {
2609
2642
  main: {
2610
2643
  type: "object",
2611
2644
  description: "Annotation of a sub-string within rich text.",
@@ -2691,14 +2724,14 @@ var defs$H = {
2691
2724
  }
2692
2725
  };
2693
2726
  var BSKY_RICHTEXT_FACET_LEXICON_JSON = {
2694
- lexicon: lexicon$F,
2695
- id: id$1j,
2696
- defs: defs$H
2727
+ lexicon: lexicon$G,
2728
+ id: id$1l,
2729
+ defs: defs$I
2697
2730
  };
2698
2731
 
2699
- var lexicon$E = 1;
2700
- var id$1i = "app.certified.actor.organization";
2701
- var defs$G = {
2732
+ var lexicon$F = 1;
2733
+ var id$1k = "app.certified.actor.organization";
2734
+ var defs$H = {
2702
2735
  main: {
2703
2736
  type: "record",
2704
2737
  description: "Extended metadata for an organization actor. Complements the base actor profile with organization-specific fields like legal structure and reference links.",
@@ -2786,14 +2819,14 @@ var defs$G = {
2786
2819
  }
2787
2820
  };
2788
2821
  var ACTOR_ORGANIZATION_LEXICON_JSON = {
2789
- lexicon: lexicon$E,
2790
- id: id$1i,
2791
- defs: defs$G
2822
+ lexicon: lexicon$F,
2823
+ id: id$1k,
2824
+ defs: defs$H
2792
2825
  };
2793
2826
 
2794
- var lexicon$D = 1;
2795
- var id$1h = "app.certified.actor.profile";
2796
- var defs$F = {
2827
+ var lexicon$E = 1;
2828
+ var id$1j = "app.certified.actor.profile";
2829
+ var defs$G = {
2797
2830
  main: {
2798
2831
  type: "record",
2799
2832
  description: "A declaration of a Certified account profile.",
@@ -2853,14 +2886,14 @@ var defs$F = {
2853
2886
  }
2854
2887
  };
2855
2888
  var ACTOR_PROFILE_LEXICON_JSON = {
2856
- lexicon: lexicon$D,
2857
- id: id$1h,
2858
- defs: defs$F
2889
+ lexicon: lexicon$E,
2890
+ id: id$1j,
2891
+ defs: defs$G
2859
2892
  };
2860
2893
 
2861
- var lexicon$C = 1;
2862
- var id$1g = "app.certified.badge.award";
2863
- var defs$E = {
2894
+ var lexicon$D = 1;
2895
+ var id$1i = "app.certified.badge.award";
2896
+ var defs$F = {
2864
2897
  main: {
2865
2898
  type: "record",
2866
2899
  description: "Records a badge award to a user, project, or activity claim.",
@@ -2907,14 +2940,14 @@ var defs$E = {
2907
2940
  }
2908
2941
  };
2909
2942
  var BADGE_AWARD_LEXICON_JSON = {
2910
- lexicon: lexicon$C,
2911
- id: id$1g,
2912
- defs: defs$E
2943
+ lexicon: lexicon$D,
2944
+ id: id$1i,
2945
+ defs: defs$F
2913
2946
  };
2914
2947
 
2915
- var lexicon$B = 1;
2916
- var id$1f = "app.certified.badge.definition";
2917
- var defs$D = {
2948
+ var lexicon$C = 1;
2949
+ var id$1h = "app.certified.badge.definition";
2950
+ var defs$E = {
2918
2951
  main: {
2919
2952
  type: "record",
2920
2953
  description: "Defines a badge that can be awarded via badge award records to users, projects, or activity claims.",
@@ -2981,14 +3014,14 @@ var defs$D = {
2981
3014
  }
2982
3015
  };
2983
3016
  var BADGE_DEFINITION_LEXICON_JSON = {
2984
- lexicon: lexicon$B,
2985
- id: id$1f,
2986
- defs: defs$D
3017
+ lexicon: lexicon$C,
3018
+ id: id$1h,
3019
+ defs: defs$E
2987
3020
  };
2988
3021
 
2989
- var lexicon$A = 1;
2990
- var id$1e = "app.certified.badge.response";
2991
- var defs$C = {
3022
+ var lexicon$B = 1;
3023
+ var id$1g = "app.certified.badge.response";
3024
+ var defs$D = {
2992
3025
  main: {
2993
3026
  type: "record",
2994
3027
  description: "Recipient response to a badge award.",
@@ -3029,15 +3062,15 @@ var defs$C = {
3029
3062
  }
3030
3063
  };
3031
3064
  var BADGE_RESPONSE_LEXICON_JSON = {
3032
- lexicon: lexicon$A,
3033
- id: id$1e,
3034
- defs: defs$C
3065
+ lexicon: lexicon$B,
3066
+ id: id$1g,
3067
+ defs: defs$D
3035
3068
  };
3036
3069
 
3037
- var lexicon$z = 1;
3038
- var id$1d = "app.certified.defs";
3070
+ var lexicon$A = 1;
3071
+ var id$1f = "app.certified.defs";
3039
3072
  var description$2 = "Common type definitions used across certified protocols.";
3040
- var defs$B = {
3073
+ var defs$C = {
3041
3074
  did: {
3042
3075
  type: "object",
3043
3076
  description: "A Decentralized Identifier (DID) string.",
@@ -3055,14 +3088,53 @@ var defs$B = {
3055
3088
  }
3056
3089
  };
3057
3090
  var CERTIFIED_DEFS_LEXICON_JSON = {
3058
- lexicon: lexicon$z,
3059
- id: id$1d,
3091
+ lexicon: lexicon$A,
3092
+ id: id$1f,
3060
3093
  description: description$2,
3094
+ defs: defs$C
3095
+ };
3096
+
3097
+ var lexicon$z = 1;
3098
+ var id$1e = "app.certified.graph.follow";
3099
+ var defs$B = {
3100
+ main: {
3101
+ type: "record",
3102
+ description: "Record declaring a social 'follow' relationship of another account. Duplicate follows will be ignored by the AppView.",
3103
+ key: "tid",
3104
+ record: {
3105
+ type: "object",
3106
+ required: [
3107
+ "subject",
3108
+ "createdAt"
3109
+ ],
3110
+ properties: {
3111
+ subject: {
3112
+ type: "string",
3113
+ format: "did",
3114
+ description: "DID of the account being followed."
3115
+ },
3116
+ createdAt: {
3117
+ type: "string",
3118
+ format: "datetime",
3119
+ description: "Client-declared timestamp when this record was originally created."
3120
+ },
3121
+ via: {
3122
+ type: "ref",
3123
+ ref: "com.atproto.repo.strongRef",
3124
+ 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."
3125
+ }
3126
+ }
3127
+ }
3128
+ }
3129
+ };
3130
+ var GRAPH_FOLLOW_LEXICON_JSON = {
3131
+ lexicon: lexicon$z,
3132
+ id: id$1e,
3061
3133
  defs: defs$B
3062
3134
  };
3063
3135
 
3064
3136
  var lexicon$y = 1;
3065
- var id$1c = "app.certified.link.evm";
3137
+ var id$1d = "app.certified.link.evm";
3066
3138
  var defs$A = {
3067
3139
  main: {
3068
3140
  type: "record",
@@ -3164,12 +3236,12 @@ var defs$A = {
3164
3236
  };
3165
3237
  var LINK_EVM_LEXICON_JSON = {
3166
3238
  lexicon: lexicon$y,
3167
- id: id$1c,
3239
+ id: id$1d,
3168
3240
  defs: defs$A
3169
3241
  };
3170
3242
 
3171
3243
  var lexicon$x = 1;
3172
- var id$1b = "app.certified.location";
3244
+ var id$1c = "app.certified.location";
3173
3245
  var defs$z = {
3174
3246
  main: {
3175
3247
  type: "record",
@@ -3198,7 +3270,7 @@ var defs$z = {
3198
3270
  },
3199
3271
  locationType: {
3200
3272
  type: "string",
3201
- 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",
3273
+ 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",
3202
3274
  knownValues: [
3203
3275
  "coordinate-decimal",
3204
3276
  "geojson-point",
@@ -3258,12 +3330,12 @@ var defs$z = {
3258
3330
  };
3259
3331
  var LOCATION_LEXICON_JSON = {
3260
3332
  lexicon: lexicon$x,
3261
- id: id$1b,
3333
+ id: id$1c,
3262
3334
  defs: defs$z
3263
3335
  };
3264
3336
 
3265
3337
  var lexicon$w = 1;
3266
- var id$1a = "com.atproto.repo.strongRef";
3338
+ var id$1b = "com.atproto.repo.strongRef";
3267
3339
  var description$1 = "A URI with a content-hash fingerprint.";
3268
3340
  var defs$y = {
3269
3341
  main: {
@@ -3286,13 +3358,13 @@ var defs$y = {
3286
3358
  };
3287
3359
  var STRONG_REF_LEXICON_JSON = {
3288
3360
  lexicon: lexicon$w,
3289
- id: id$1a,
3361
+ id: id$1b,
3290
3362
  description: description$1,
3291
3363
  defs: defs$y
3292
3364
  };
3293
3365
 
3294
3366
  var lexicon$v = 1;
3295
- var id$19 = "org.hyperboards.board";
3367
+ var id$1a = "org.hyperboards.board";
3296
3368
  var defs$x = {
3297
3369
  main: {
3298
3370
  type: "record",
@@ -3470,12 +3542,12 @@ var defs$x = {
3470
3542
  };
3471
3543
  var HYPERBOARDS_BOARD_LEXICON_JSON = {
3472
3544
  lexicon: lexicon$v,
3473
- id: id$19,
3545
+ id: id$1a,
3474
3546
  defs: defs$x
3475
3547
  };
3476
3548
 
3477
3549
  var lexicon$u = 1;
3478
- var id$18 = "org.hyperboards.displayProfile";
3550
+ var id$19 = "org.hyperboards.displayProfile";
3479
3551
  var defs$w = {
3480
3552
  main: {
3481
3553
  type: "record",
@@ -3540,12 +3612,12 @@ var defs$w = {
3540
3612
  };
3541
3613
  var HYPERBOARDS_DISPLAY_PROFILE_LEXICON_JSON = {
3542
3614
  lexicon: lexicon$u,
3543
- id: id$18,
3615
+ id: id$19,
3544
3616
  defs: defs$w
3545
3617
  };
3546
3618
 
3547
3619
  var lexicon$t = 1;
3548
- var id$17 = "org.hypercerts.claim.activity";
3620
+ var id$18 = "org.hypercerts.claim.activity";
3549
3621
  var defs$v = {
3550
3622
  main: {
3551
3623
  type: "record",
@@ -3721,12 +3793,12 @@ var defs$v = {
3721
3793
  };
3722
3794
  var ACTIVITY_LEXICON_JSON = {
3723
3795
  lexicon: lexicon$t,
3724
- id: id$17,
3796
+ id: id$18,
3725
3797
  defs: defs$v
3726
3798
  };
3727
3799
 
3728
3800
  var lexicon$s = 1;
3729
- var id$16 = "org.hypercerts.claim.contribution";
3801
+ var id$17 = "org.hypercerts.claim.contribution";
3730
3802
  var defs$u = {
3731
3803
  main: {
3732
3804
  type: "record",
@@ -3770,12 +3842,12 @@ var defs$u = {
3770
3842
  };
3771
3843
  var CONTRIBUTION_LEXICON_JSON = {
3772
3844
  lexicon: lexicon$s,
3773
- id: id$16,
3845
+ id: id$17,
3774
3846
  defs: defs$u
3775
3847
  };
3776
3848
 
3777
3849
  var lexicon$r = 1;
3778
- var id$15 = "org.hypercerts.claim.contributorInformation";
3850
+ var id$16 = "org.hypercerts.claim.contributorInformation";
3779
3851
  var defs$t = {
3780
3852
  main: {
3781
3853
  type: "record",
@@ -3816,12 +3888,12 @@ var defs$t = {
3816
3888
  };
3817
3889
  var CONTRIBUTOR_INFORMATION_LEXICON_JSON = {
3818
3890
  lexicon: lexicon$r,
3819
- id: id$15,
3891
+ id: id$16,
3820
3892
  defs: defs$t
3821
3893
  };
3822
3894
 
3823
3895
  var lexicon$q = 1;
3824
- var id$14 = "org.hypercerts.claim.rights";
3896
+ var id$15 = "org.hypercerts.claim.rights";
3825
3897
  var defs$s = {
3826
3898
  main: {
3827
3899
  type: "record",
@@ -3871,12 +3943,12 @@ var defs$s = {
3871
3943
  };
3872
3944
  var RIGHTS_LEXICON_JSON = {
3873
3945
  lexicon: lexicon$q,
3874
- id: id$14,
3946
+ id: id$15,
3875
3947
  defs: defs$s
3876
3948
  };
3877
3949
 
3878
3950
  var lexicon$p = 1;
3879
- var id$13 = "org.hypercerts.collection";
3951
+ var id$14 = "org.hypercerts.collection";
3880
3952
  var defs$r = {
3881
3953
  main: {
3882
3954
  type: "record",
@@ -3989,12 +4061,12 @@ var defs$r = {
3989
4061
  };
3990
4062
  var HYPERCERTS_COLLECTION_LEXICON_JSON = {
3991
4063
  lexicon: lexicon$p,
3992
- id: id$13,
4064
+ id: id$14,
3993
4065
  defs: defs$r
3994
4066
  };
3995
4067
 
3996
4068
  var lexicon$o = 1;
3997
- var id$12 = "org.hypercerts.context.acknowledgement";
4069
+ var id$13 = "org.hypercerts.context.acknowledgement";
3998
4070
  var defs$q = {
3999
4071
  main: {
4000
4072
  type: "record",
@@ -4042,12 +4114,12 @@ var defs$q = {
4042
4114
  };
4043
4115
  var CONTEXT_ACKNOWLEDGEMENT_LEXICON_JSON = {
4044
4116
  lexicon: lexicon$o,
4045
- id: id$12,
4117
+ id: id$13,
4046
4118
  defs: defs$q
4047
4119
  };
4048
4120
 
4049
4121
  var lexicon$n = 1;
4050
- var id$11 = "org.hypercerts.context.attachment";
4122
+ var id$12 = "org.hypercerts.context.attachment";
4051
4123
  var defs$p = {
4052
4124
  main: {
4053
4125
  type: "record",
@@ -4137,12 +4209,12 @@ var defs$p = {
4137
4209
  };
4138
4210
  var CONTEXT_ATTACHMENT_LEXICON_JSON = {
4139
4211
  lexicon: lexicon$n,
4140
- id: id$11,
4212
+ id: id$12,
4141
4213
  defs: defs$p
4142
4214
  };
4143
4215
 
4144
4216
  var lexicon$m = 1;
4145
- var id$10 = "org.hypercerts.context.evaluation";
4217
+ var id$11 = "org.hypercerts.context.evaluation";
4146
4218
  var defs$o = {
4147
4219
  main: {
4148
4220
  type: "record",
@@ -4244,12 +4316,12 @@ var defs$o = {
4244
4316
  };
4245
4317
  var CONTEXT_EVALUATION_LEXICON_JSON = {
4246
4318
  lexicon: lexicon$m,
4247
- id: id$10,
4319
+ id: id$11,
4248
4320
  defs: defs$o
4249
4321
  };
4250
4322
 
4251
4323
  var lexicon$l = 1;
4252
- var id$$ = "org.hypercerts.context.measurement";
4324
+ var id$10 = "org.hypercerts.context.measurement";
4253
4325
  var defs$n = {
4254
4326
  main: {
4255
4327
  type: "record",
@@ -4360,12 +4432,12 @@ var defs$n = {
4360
4432
  };
4361
4433
  var CONTEXT_MEASUREMENT_LEXICON_JSON = {
4362
4434
  lexicon: lexicon$l,
4363
- id: id$$,
4435
+ id: id$10,
4364
4436
  defs: defs$n
4365
4437
  };
4366
4438
 
4367
4439
  var lexicon$k = 1;
4368
- var id$_ = "org.hypercerts.defs";
4440
+ var id$$ = "org.hypercerts.defs";
4369
4441
  var description = "Common type definitions used across all Hypercerts protocols.";
4370
4442
  var defs$m = {
4371
4443
  descriptionString: {
@@ -4500,13 +4572,13 @@ var defs$m = {
4500
4572
  };
4501
4573
  var HYPERCERTS_DEFS_LEXICON_JSON = {
4502
4574
  lexicon: lexicon$k,
4503
- id: id$_,
4575
+ id: id$$,
4504
4576
  description: description,
4505
4577
  defs: defs$m
4506
4578
  };
4507
4579
 
4508
4580
  var lexicon$j = 1;
4509
- var id$Z = "org.hypercerts.funding.receipt";
4581
+ var id$_ = "org.hypercerts.funding.receipt";
4510
4582
  var defs$l = {
4511
4583
  main: {
4512
4584
  type: "record",
@@ -4604,12 +4676,12 @@ var defs$l = {
4604
4676
  };
4605
4677
  var FUNDING_RECEIPT_LEXICON_JSON = {
4606
4678
  lexicon: lexicon$j,
4607
- id: id$Z,
4679
+ id: id$_,
4608
4680
  defs: defs$l
4609
4681
  };
4610
4682
 
4611
4683
  var lexicon$i = 1;
4612
- var id$Y = "org.hypercerts.workscope.cel";
4684
+ var id$Z = "org.hypercerts.workscope.cel";
4613
4685
  var defs$k = {
4614
4686
  main: {
4615
4687
  type: "object",
@@ -4654,12 +4726,12 @@ var defs$k = {
4654
4726
  };
4655
4727
  var WORKSCOPE_CEL_LEXICON_JSON = {
4656
4728
  lexicon: lexicon$i,
4657
- id: id$Y,
4729
+ id: id$Z,
4658
4730
  defs: defs$k
4659
4731
  };
4660
4732
 
4661
4733
  var lexicon$h = 1;
4662
- var id$X = "org.hypercerts.workscope.tag";
4734
+ var id$Y = "org.hypercerts.workscope.tag";
4663
4735
  var defs$j = {
4664
4736
  main: {
4665
4737
  type: "record",
@@ -4685,7 +4757,7 @@ var defs$j = {
4685
4757
  },
4686
4758
  category: {
4687
4759
  type: "string",
4688
- description: "Category type of this scope.",
4760
+ description: "Category type of this scope. Values beyond the known set are permitted.",
4689
4761
  knownValues: [
4690
4762
  "topic",
4691
4763
  "language",
@@ -4707,7 +4779,7 @@ var defs$j = {
4707
4779
  },
4708
4780
  status: {
4709
4781
  type: "string",
4710
- description: "Lifecycle status of this tag. Communities propose tags, curators accept them, deprecated tags point to replacements via supersededBy.",
4782
+ 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.",
4711
4783
  knownValues: [
4712
4784
  "proposed",
4713
4785
  "accepted",
@@ -4758,12 +4830,12 @@ var defs$j = {
4758
4830
  };
4759
4831
  var WORKSCOPE_TAG_LEXICON_JSON = {
4760
4832
  lexicon: lexicon$h,
4761
- id: id$X,
4833
+ id: id$Y,
4762
4834
  defs: defs$j
4763
4835
  };
4764
4836
 
4765
4837
  var lexicon$g = 1;
4766
- var id$W = "pub.leaflet.blocks.blockquote";
4838
+ var id$X = "pub.leaflet.blocks.blockquote";
4767
4839
  var defs$i = {
4768
4840
  main: {
4769
4841
  type: "object",
@@ -4786,12 +4858,12 @@ var defs$i = {
4786
4858
  };
4787
4859
  var LEAFLET_BLOCKS_BLOCKQUOTE_LEXICON_JSON = {
4788
4860
  lexicon: lexicon$g,
4789
- id: id$W,
4861
+ id: id$X,
4790
4862
  defs: defs$i
4791
4863
  };
4792
4864
 
4793
4865
  var lexicon$f = 1;
4794
- var id$V = "pub.leaflet.blocks.bskyPost";
4866
+ var id$W = "pub.leaflet.blocks.bskyPost";
4795
4867
  var defs$h = {
4796
4868
  main: {
4797
4869
  type: "object",
@@ -4811,12 +4883,12 @@ var defs$h = {
4811
4883
  };
4812
4884
  var LEAFLET_BLOCKS_BSKY_POST_LEXICON_JSON = {
4813
4885
  lexicon: lexicon$f,
4814
- id: id$V,
4886
+ id: id$W,
4815
4887
  defs: defs$h
4816
4888
  };
4817
4889
 
4818
4890
  var lexicon$e = 1;
4819
- var id$U = "pub.leaflet.blocks.button";
4891
+ var id$V = "pub.leaflet.blocks.button";
4820
4892
  var defs$g = {
4821
4893
  main: {
4822
4894
  type: "object",
@@ -4837,12 +4909,12 @@ var defs$g = {
4837
4909
  };
4838
4910
  var LEAFLET_BLOCKS_BUTTON_LEXICON_JSON = {
4839
4911
  lexicon: lexicon$e,
4840
- id: id$U,
4912
+ id: id$V,
4841
4913
  defs: defs$g
4842
4914
  };
4843
4915
 
4844
4916
  var lexicon$d = 1;
4845
- var id$T = "pub.leaflet.blocks.code";
4917
+ var id$U = "pub.leaflet.blocks.code";
4846
4918
  var defs$f = {
4847
4919
  main: {
4848
4920
  type: "object",
@@ -4864,12 +4936,12 @@ var defs$f = {
4864
4936
  };
4865
4937
  var LEAFLET_BLOCKS_CODE_LEXICON_JSON = {
4866
4938
  lexicon: lexicon$d,
4867
- id: id$T,
4939
+ id: id$U,
4868
4940
  defs: defs$f
4869
4941
  };
4870
4942
 
4871
4943
  var lexicon$c = 1;
4872
- var id$S = "pub.leaflet.blocks.header";
4944
+ var id$T = "pub.leaflet.blocks.header";
4873
4945
  var defs$e = {
4874
4946
  main: {
4875
4947
  type: "object",
@@ -4897,12 +4969,12 @@ var defs$e = {
4897
4969
  };
4898
4970
  var LEAFLET_BLOCKS_HEADER_LEXICON_JSON = {
4899
4971
  lexicon: lexicon$c,
4900
- id: id$S,
4972
+ id: id$T,
4901
4973
  defs: defs$e
4902
4974
  };
4903
4975
 
4904
4976
  var lexicon$b = 1;
4905
- var id$R = "pub.leaflet.blocks.horizontalRule";
4977
+ var id$S = "pub.leaflet.blocks.horizontalRule";
4906
4978
  var defs$d = {
4907
4979
  main: {
4908
4980
  type: "object",
@@ -4914,12 +4986,12 @@ var defs$d = {
4914
4986
  };
4915
4987
  var LEAFLET_BLOCKS_HORIZONTAL_RULE_LEXICON_JSON = {
4916
4988
  lexicon: lexicon$b,
4917
- id: id$R,
4989
+ id: id$S,
4918
4990
  defs: defs$d
4919
4991
  };
4920
4992
 
4921
4993
  var lexicon$a = 1;
4922
- var id$Q = "pub.leaflet.blocks.iframe";
4994
+ var id$R = "pub.leaflet.blocks.iframe";
4923
4995
  var defs$c = {
4924
4996
  main: {
4925
4997
  type: "object",
@@ -4941,12 +5013,12 @@ var defs$c = {
4941
5013
  };
4942
5014
  var LEAFLET_BLOCKS_IFRAME_LEXICON_JSON = {
4943
5015
  lexicon: lexicon$a,
4944
- id: id$Q,
5016
+ id: id$R,
4945
5017
  defs: defs$c
4946
5018
  };
4947
5019
 
4948
5020
  var lexicon$9 = 1;
4949
- var id$P = "pub.leaflet.blocks.image";
5021
+ var id$Q = "pub.leaflet.blocks.image";
4950
5022
  var defs$b = {
4951
5023
  main: {
4952
5024
  type: "object",
@@ -4994,12 +5066,12 @@ var defs$b = {
4994
5066
  };
4995
5067
  var LEAFLET_BLOCKS_IMAGE_LEXICON_JSON = {
4996
5068
  lexicon: lexicon$9,
4997
- id: id$P,
5069
+ id: id$Q,
4998
5070
  defs: defs$b
4999
5071
  };
5000
5072
 
5001
5073
  var lexicon$8 = 1;
5002
- var id$O = "pub.leaflet.blocks.math";
5074
+ var id$P = "pub.leaflet.blocks.math";
5003
5075
  var defs$a = {
5004
5076
  main: {
5005
5077
  type: "object",
@@ -5015,12 +5087,12 @@ var defs$a = {
5015
5087
  };
5016
5088
  var LEAFLET_BLOCKS_MATH_LEXICON_JSON = {
5017
5089
  lexicon: lexicon$8,
5018
- id: id$O,
5090
+ id: id$P,
5019
5091
  defs: defs$a
5020
5092
  };
5021
5093
 
5022
5094
  var lexicon$7 = 1;
5023
- var id$N = "pub.leaflet.blocks.orderedList";
5095
+ var id$O = "pub.leaflet.blocks.orderedList";
5024
5096
  var defs$9 = {
5025
5097
  main: {
5026
5098
  type: "object",
@@ -5077,12 +5149,12 @@ var defs$9 = {
5077
5149
  };
5078
5150
  var LEAFLET_BLOCKS_ORDERED_LIST_LEXICON_JSON = {
5079
5151
  lexicon: lexicon$7,
5080
- id: id$N,
5152
+ id: id$O,
5081
5153
  defs: defs$9
5082
5154
  };
5083
5155
 
5084
5156
  var lexicon$6 = 1;
5085
- var id$M = "pub.leaflet.blocks.page";
5157
+ var id$N = "pub.leaflet.blocks.page";
5086
5158
  var defs$8 = {
5087
5159
  main: {
5088
5160
  type: "object",
@@ -5098,12 +5170,12 @@ var defs$8 = {
5098
5170
  };
5099
5171
  var LEAFLET_BLOCKS_PAGE_LEXICON_JSON = {
5100
5172
  lexicon: lexicon$6,
5101
- id: id$M,
5173
+ id: id$N,
5102
5174
  defs: defs$8
5103
5175
  };
5104
5176
 
5105
5177
  var lexicon$5 = 1;
5106
- var id$L = "pub.leaflet.blocks.poll";
5178
+ var id$M = "pub.leaflet.blocks.poll";
5107
5179
  var defs$7 = {
5108
5180
  main: {
5109
5181
  type: "object",
@@ -5120,12 +5192,12 @@ var defs$7 = {
5120
5192
  };
5121
5193
  var LEAFLET_BLOCKS_POLL_LEXICON_JSON = {
5122
5194
  lexicon: lexicon$5,
5123
- id: id$L,
5195
+ id: id$M,
5124
5196
  defs: defs$7
5125
5197
  };
5126
5198
 
5127
5199
  var lexicon$4 = 1;
5128
- var id$K = "pub.leaflet.blocks.text";
5200
+ var id$L = "pub.leaflet.blocks.text";
5129
5201
  var defs$6 = {
5130
5202
  main: {
5131
5203
  type: "object",
@@ -5156,12 +5228,12 @@ var defs$6 = {
5156
5228
  };
5157
5229
  var LEAFLET_BLOCKS_TEXT_LEXICON_JSON = {
5158
5230
  lexicon: lexicon$4,
5159
- id: id$K,
5231
+ id: id$L,
5160
5232
  defs: defs$6
5161
5233
  };
5162
5234
 
5163
5235
  var lexicon$3 = 1;
5164
- var id$J = "pub.leaflet.blocks.unorderedList";
5236
+ var id$K = "pub.leaflet.blocks.unorderedList";
5165
5237
  var defs$5 = {
5166
5238
  main: {
5167
5239
  type: "object",
@@ -5214,12 +5286,12 @@ var defs$5 = {
5214
5286
  };
5215
5287
  var LEAFLET_BLOCKS_UNORDERED_LIST_LEXICON_JSON = {
5216
5288
  lexicon: lexicon$3,
5217
- id: id$J,
5289
+ id: id$K,
5218
5290
  defs: defs$5
5219
5291
  };
5220
5292
 
5221
5293
  var lexicon$2 = 1;
5222
- var id$I = "pub.leaflet.blocks.website";
5294
+ var id$J = "pub.leaflet.blocks.website";
5223
5295
  var defs$4 = {
5224
5296
  main: {
5225
5297
  type: "object",
@@ -5249,12 +5321,12 @@ var defs$4 = {
5249
5321
  };
5250
5322
  var LEAFLET_BLOCKS_WEBSITE_LEXICON_JSON = {
5251
5323
  lexicon: lexicon$2,
5252
- id: id$I,
5324
+ id: id$J,
5253
5325
  defs: defs$4
5254
5326
  };
5255
5327
 
5256
5328
  var lexicon$1 = 1;
5257
- var id$H = "pub.leaflet.pages.linearDocument";
5329
+ var id$I = "pub.leaflet.pages.linearDocument";
5258
5330
  var defs$3 = {
5259
5331
  main: {
5260
5332
  type: "object",
@@ -5361,12 +5433,12 @@ var defs$3 = {
5361
5433
  };
5362
5434
  var LEAFLET_PAGES_LINEAR_DOCUMENT_LEXICON_JSON = {
5363
5435
  lexicon: lexicon$1,
5364
- id: id$H,
5436
+ id: id$I,
5365
5437
  defs: defs$3
5366
5438
  };
5367
5439
 
5368
5440
  var lexicon = 1;
5369
- var id$G = "pub.leaflet.richtext.facet";
5441
+ var id$H = "pub.leaflet.richtext.facet";
5370
5442
  var defs$2 = {
5371
5443
  main: {
5372
5444
  type: "object",
@@ -5542,91 +5614,109 @@ var defs$2 = {
5542
5614
  };
5543
5615
  var LEAFLET_RICHTEXT_FACET_LEXICON_JSON = {
5544
5616
  lexicon: lexicon,
5545
- id: id$G,
5617
+ id: id$H,
5546
5618
  defs: defs$2
5547
5619
  };
5548
5620
 
5549
- const is$typed$F = is$typed$G, validate$F = validate$G;
5550
- const id$F = 'app.bsky.richtext.facet';
5551
- const hashMain$D = 'main';
5552
- function isMain$D(v) {
5553
- return is$typed$F(v, id$F, hashMain$D);
5621
+ const is$typed$G = is$typed$H, validate$G = validate$H;
5622
+ const id$G = 'app.bsky.richtext.facet';
5623
+ const hashMain$E = 'main';
5624
+ function isMain$E(v) {
5625
+ return is$typed$G(v, id$G, hashMain$E);
5554
5626
  }
5555
- function validateMain$D(v) {
5556
- return validate$F(v, id$F, hashMain$D);
5627
+ function validateMain$E(v) {
5628
+ return validate$G(v, id$G, hashMain$E);
5557
5629
  }
5558
5630
  const hashMention = 'mention';
5559
5631
  function isMention(v) {
5560
- return is$typed$F(v, id$F, hashMention);
5632
+ return is$typed$G(v, id$G, hashMention);
5561
5633
  }
5562
5634
  function validateMention(v) {
5563
- return validate$F(v, id$F, hashMention);
5635
+ return validate$G(v, id$G, hashMention);
5564
5636
  }
5565
5637
  const hashLink$1 = 'link';
5566
5638
  function isLink$1(v) {
5567
- return is$typed$F(v, id$F, hashLink$1);
5639
+ return is$typed$G(v, id$G, hashLink$1);
5568
5640
  }
5569
5641
  function validateLink$1(v) {
5570
- return validate$F(v, id$F, hashLink$1);
5642
+ return validate$G(v, id$G, hashLink$1);
5571
5643
  }
5572
5644
  const hashTag = 'tag';
5573
5645
  function isTag(v) {
5574
- return is$typed$F(v, id$F, hashTag);
5646
+ return is$typed$G(v, id$G, hashTag);
5575
5647
  }
5576
5648
  function validateTag(v) {
5577
- return validate$F(v, id$F, hashTag);
5649
+ return validate$G(v, id$G, hashTag);
5578
5650
  }
5579
5651
  const hashByteSlice$1 = 'byteSlice';
5580
5652
  function isByteSlice$1(v) {
5581
- return is$typed$F(v, id$F, hashByteSlice$1);
5653
+ return is$typed$G(v, id$G, hashByteSlice$1);
5582
5654
  }
5583
5655
  function validateByteSlice$1(v) {
5584
- return validate$F(v, id$F, hashByteSlice$1);
5656
+ return validate$G(v, id$G, hashByteSlice$1);
5585
5657
  }
5586
5658
 
5587
5659
  var facet$1 = /*#__PURE__*/Object.freeze({
5588
5660
  __proto__: null,
5589
5661
  isByteSlice: isByteSlice$1,
5590
5662
  isLink: isLink$1,
5591
- isMain: isMain$D,
5663
+ isMain: isMain$E,
5592
5664
  isMention: isMention,
5593
5665
  isTag: isTag,
5594
5666
  validateByteSlice: validateByteSlice$1,
5595
5667
  validateLink: validateLink$1,
5596
- validateMain: validateMain$D,
5668
+ validateMain: validateMain$E,
5597
5669
  validateMention: validateMention,
5598
5670
  validateTag: validateTag
5599
5671
  });
5600
5672
 
5601
- const is$typed$E = is$typed$G, validate$E = validate$G;
5602
- const id$E = 'app.certified.actor.organization';
5603
- const hashMain$C = 'main';
5604
- function isMain$C(v) {
5605
- return is$typed$E(v, id$E, hashMain$C);
5673
+ const is$typed$F = is$typed$H, validate$F = validate$H;
5674
+ const id$F = 'app.certified.actor.organization';
5675
+ const hashMain$D = 'main';
5676
+ function isMain$D(v) {
5677
+ return is$typed$F(v, id$F, hashMain$D);
5606
5678
  }
5607
- function validateMain$C(v) {
5608
- return validate$E(v, id$E, hashMain$C, true);
5679
+ function validateMain$D(v) {
5680
+ return validate$F(v, id$F, hashMain$D, true);
5609
5681
  }
5610
5682
  const hashUrlItem = 'urlItem';
5611
5683
  function isUrlItem(v) {
5612
- return is$typed$E(v, id$E, hashUrlItem);
5684
+ return is$typed$F(v, id$F, hashUrlItem);
5613
5685
  }
5614
5686
  function validateUrlItem(v) {
5615
- return validate$E(v, id$E, hashUrlItem);
5687
+ return validate$F(v, id$F, hashUrlItem);
5616
5688
  }
5617
5689
 
5618
5690
  var organization = /*#__PURE__*/Object.freeze({
5691
+ __proto__: null,
5692
+ isMain: isMain$D,
5693
+ isRecord: isMain$D,
5694
+ isUrlItem: isUrlItem,
5695
+ validateMain: validateMain$D,
5696
+ validateRecord: validateMain$D,
5697
+ validateUrlItem: validateUrlItem
5698
+ });
5699
+
5700
+ const is$typed$E = is$typed$H, validate$E = validate$H;
5701
+ const id$E = 'app.certified.actor.profile';
5702
+ const hashMain$C = 'main';
5703
+ function isMain$C(v) {
5704
+ return is$typed$E(v, id$E, hashMain$C);
5705
+ }
5706
+ function validateMain$C(v) {
5707
+ return validate$E(v, id$E, hashMain$C, true);
5708
+ }
5709
+
5710
+ var profile = /*#__PURE__*/Object.freeze({
5619
5711
  __proto__: null,
5620
5712
  isMain: isMain$C,
5621
5713
  isRecord: isMain$C,
5622
- isUrlItem: isUrlItem,
5623
5714
  validateMain: validateMain$C,
5624
- validateRecord: validateMain$C,
5625
- validateUrlItem: validateUrlItem
5715
+ validateRecord: validateMain$C
5626
5716
  });
5627
5717
 
5628
- const is$typed$D = is$typed$G, validate$D = validate$G;
5629
- const id$D = 'app.certified.actor.profile';
5718
+ const is$typed$D = is$typed$H, validate$D = validate$H;
5719
+ const id$D = 'app.certified.badge.award';
5630
5720
  const hashMain$B = 'main';
5631
5721
  function isMain$B(v) {
5632
5722
  return is$typed$D(v, id$D, hashMain$B);
@@ -5635,7 +5725,7 @@ function validateMain$B(v) {
5635
5725
  return validate$D(v, id$D, hashMain$B, true);
5636
5726
  }
5637
5727
 
5638
- var profile = /*#__PURE__*/Object.freeze({
5728
+ var award = /*#__PURE__*/Object.freeze({
5639
5729
  __proto__: null,
5640
5730
  isMain: isMain$B,
5641
5731
  isRecord: isMain$B,
@@ -5643,8 +5733,8 @@ var profile = /*#__PURE__*/Object.freeze({
5643
5733
  validateRecord: validateMain$B
5644
5734
  });
5645
5735
 
5646
- const is$typed$C = is$typed$G, validate$C = validate$G;
5647
- const id$C = 'app.certified.badge.award';
5736
+ const is$typed$C = is$typed$H, validate$C = validate$H;
5737
+ const id$C = 'app.certified.badge.definition';
5648
5738
  const hashMain$A = 'main';
5649
5739
  function isMain$A(v) {
5650
5740
  return is$typed$C(v, id$C, hashMain$A);
@@ -5653,7 +5743,7 @@ function validateMain$A(v) {
5653
5743
  return validate$C(v, id$C, hashMain$A, true);
5654
5744
  }
5655
5745
 
5656
- var award = /*#__PURE__*/Object.freeze({
5746
+ var definition = /*#__PURE__*/Object.freeze({
5657
5747
  __proto__: null,
5658
5748
  isMain: isMain$A,
5659
5749
  isRecord: isMain$A,
@@ -5661,8 +5751,8 @@ var award = /*#__PURE__*/Object.freeze({
5661
5751
  validateRecord: validateMain$A
5662
5752
  });
5663
5753
 
5664
- const is$typed$B = is$typed$G, validate$B = validate$G;
5665
- const id$B = 'app.certified.badge.definition';
5754
+ const is$typed$B = is$typed$H, validate$B = validate$H;
5755
+ const id$B = 'app.certified.badge.response';
5666
5756
  const hashMain$z = 'main';
5667
5757
  function isMain$z(v) {
5668
5758
  return is$typed$B(v, id$B, hashMain$z);
@@ -5671,7 +5761,7 @@ function validateMain$z(v) {
5671
5761
  return validate$B(v, id$B, hashMain$z, true);
5672
5762
  }
5673
5763
 
5674
- var definition = /*#__PURE__*/Object.freeze({
5764
+ var response = /*#__PURE__*/Object.freeze({
5675
5765
  __proto__: null,
5676
5766
  isMain: isMain$z,
5677
5767
  isRecord: isMain$z,
@@ -5679,17 +5769,33 @@ var definition = /*#__PURE__*/Object.freeze({
5679
5769
  validateRecord: validateMain$z
5680
5770
  });
5681
5771
 
5682
- const is$typed$A = is$typed$G, validate$A = validate$G;
5683
- const id$A = 'app.certified.badge.response';
5772
+ const is$typed$A = is$typed$H, validate$A = validate$H;
5773
+ const id$A = 'app.certified.defs';
5774
+ const hashDid = 'did';
5775
+ function isDid(v) {
5776
+ return is$typed$A(v, id$A, hashDid);
5777
+ }
5778
+ function validateDid(v) {
5779
+ return validate$A(v, id$A, hashDid);
5780
+ }
5781
+
5782
+ var defs$1 = /*#__PURE__*/Object.freeze({
5783
+ __proto__: null,
5784
+ isDid: isDid,
5785
+ validateDid: validateDid
5786
+ });
5787
+
5788
+ const is$typed$z = is$typed$H, validate$z = validate$H;
5789
+ const id$z = 'app.certified.graph.follow';
5684
5790
  const hashMain$y = 'main';
5685
5791
  function isMain$y(v) {
5686
- return is$typed$A(v, id$A, hashMain$y);
5792
+ return is$typed$z(v, id$z, hashMain$y);
5687
5793
  }
5688
5794
  function validateMain$y(v) {
5689
- return validate$A(v, id$A, hashMain$y, true);
5795
+ return validate$z(v, id$z, hashMain$y, true);
5690
5796
  }
5691
5797
 
5692
- var response = /*#__PURE__*/Object.freeze({
5798
+ var follow = /*#__PURE__*/Object.freeze({
5693
5799
  __proto__: null,
5694
5800
  isMain: isMain$y,
5695
5801
  isRecord: isMain$y,
@@ -5697,23 +5803,7 @@ var response = /*#__PURE__*/Object.freeze({
5697
5803
  validateRecord: validateMain$y
5698
5804
  });
5699
5805
 
5700
- const is$typed$z = is$typed$G, validate$z = validate$G;
5701
- const id$z = 'app.certified.defs';
5702
- const hashDid = 'did';
5703
- function isDid(v) {
5704
- return is$typed$z(v, id$z, hashDid);
5705
- }
5706
- function validateDid(v) {
5707
- return validate$z(v, id$z, hashDid);
5708
- }
5709
-
5710
- var defs$1 = /*#__PURE__*/Object.freeze({
5711
- __proto__: null,
5712
- isDid: isDid,
5713
- validateDid: validateDid
5714
- });
5715
-
5716
- const is$typed$y = is$typed$G, validate$y = validate$G;
5806
+ const is$typed$y = is$typed$H, validate$y = validate$H;
5717
5807
  const id$y = 'app.certified.link.evm';
5718
5808
  const hashMain$x = 'main';
5719
5809
  function isMain$x(v) {
@@ -5749,7 +5839,7 @@ var evm = /*#__PURE__*/Object.freeze({
5749
5839
  validateRecord: validateMain$x
5750
5840
  });
5751
5841
 
5752
- const is$typed$x = is$typed$G, validate$x = validate$G;
5842
+ const is$typed$x = is$typed$H, validate$x = validate$H;
5753
5843
  const id$x = 'app.certified.location';
5754
5844
  const hashMain$w = 'main';
5755
5845
  function isMain$w(v) {
@@ -5776,7 +5866,7 @@ var location = /*#__PURE__*/Object.freeze({
5776
5866
  validateString: validateString
5777
5867
  });
5778
5868
 
5779
- const is$typed$w = is$typed$G, validate$w = validate$G;
5869
+ const is$typed$w = is$typed$H, validate$w = validate$H;
5780
5870
  const id$w = 'com.atproto.repo.strongRef';
5781
5871
  const hashMain$v = 'main';
5782
5872
  function isMain$v(v) {
@@ -5792,7 +5882,7 @@ var strongRef = /*#__PURE__*/Object.freeze({
5792
5882
  validateMain: validateMain$v
5793
5883
  });
5794
5884
 
5795
- const is$typed$v = is$typed$G, validate$v = validate$G;
5885
+ const is$typed$v = is$typed$H, validate$v = validate$H;
5796
5886
  const id$v = 'org.hyperboards.board';
5797
5887
  const hashMain$u = 'main';
5798
5888
  function isMain$u(v) {
@@ -5828,7 +5918,7 @@ var board = /*#__PURE__*/Object.freeze({
5828
5918
  validateRecord: validateMain$u
5829
5919
  });
5830
5920
 
5831
- const is$typed$u = is$typed$G, validate$u = validate$G;
5921
+ const is$typed$u = is$typed$H, validate$u = validate$H;
5832
5922
  const id$u = 'org.hyperboards.displayProfile';
5833
5923
  const hashMain$t = 'main';
5834
5924
  function isMain$t(v) {
@@ -5846,7 +5936,7 @@ var displayProfile = /*#__PURE__*/Object.freeze({
5846
5936
  validateRecord: validateMain$t
5847
5937
  });
5848
5938
 
5849
- const is$typed$t = is$typed$G, validate$t = validate$G;
5939
+ const is$typed$t = is$typed$H, validate$t = validate$H;
5850
5940
  const id$t = 'org.hypercerts.claim.activity';
5851
5941
  const hashMain$s = 'main';
5852
5942
  function isMain$s(v) {
@@ -5900,7 +5990,7 @@ var activity = /*#__PURE__*/Object.freeze({
5900
5990
  validateWorkScopeString: validateWorkScopeString
5901
5991
  });
5902
5992
 
5903
- const is$typed$s = is$typed$G, validate$s = validate$G;
5993
+ const is$typed$s = is$typed$H, validate$s = validate$H;
5904
5994
  const id$s = 'org.hypercerts.claim.contribution';
5905
5995
  const hashMain$r = 'main';
5906
5996
  function isMain$r(v) {
@@ -5918,7 +6008,7 @@ var contribution = /*#__PURE__*/Object.freeze({
5918
6008
  validateRecord: validateMain$r
5919
6009
  });
5920
6010
 
5921
- const is$typed$r = is$typed$G, validate$r = validate$G;
6011
+ const is$typed$r = is$typed$H, validate$r = validate$H;
5922
6012
  const id$r = 'org.hypercerts.claim.contributorInformation';
5923
6013
  const hashMain$q = 'main';
5924
6014
  function isMain$q(v) {
@@ -5936,7 +6026,7 @@ var contributorInformation = /*#__PURE__*/Object.freeze({
5936
6026
  validateRecord: validateMain$q
5937
6027
  });
5938
6028
 
5939
- const is$typed$q = is$typed$G, validate$q = validate$G;
6029
+ const is$typed$q = is$typed$H, validate$q = validate$H;
5940
6030
  const id$q = 'org.hypercerts.claim.rights';
5941
6031
  const hashMain$p = 'main';
5942
6032
  function isMain$p(v) {
@@ -5954,7 +6044,7 @@ var rights = /*#__PURE__*/Object.freeze({
5954
6044
  validateRecord: validateMain$p
5955
6045
  });
5956
6046
 
5957
- const is$typed$p = is$typed$G, validate$p = validate$G;
6047
+ const is$typed$p = is$typed$H, validate$p = validate$H;
5958
6048
  const id$p = 'org.hypercerts.collection';
5959
6049
  const hashMain$o = 'main';
5960
6050
  function isMain$o(v) {
@@ -5981,7 +6071,7 @@ var collection = /*#__PURE__*/Object.freeze({
5981
6071
  validateRecord: validateMain$o
5982
6072
  });
5983
6073
 
5984
- const is$typed$o = is$typed$G, validate$o = validate$G;
6074
+ const is$typed$o = is$typed$H, validate$o = validate$H;
5985
6075
  const id$o = 'org.hypercerts.context.acknowledgement';
5986
6076
  const hashMain$n = 'main';
5987
6077
  function isMain$n(v) {
@@ -5999,7 +6089,7 @@ var acknowledgement = /*#__PURE__*/Object.freeze({
5999
6089
  validateRecord: validateMain$n
6000
6090
  });
6001
6091
 
6002
- const is$typed$n = is$typed$G, validate$n = validate$G;
6092
+ const is$typed$n = is$typed$H, validate$n = validate$H;
6003
6093
  const id$n = 'org.hypercerts.context.attachment';
6004
6094
  const hashMain$m = 'main';
6005
6095
  function isMain$m(v) {
@@ -6017,7 +6107,7 @@ var attachment = /*#__PURE__*/Object.freeze({
6017
6107
  validateRecord: validateMain$m
6018
6108
  });
6019
6109
 
6020
- const is$typed$m = is$typed$G, validate$m = validate$G;
6110
+ const is$typed$m = is$typed$H, validate$m = validate$H;
6021
6111
  const id$m = 'org.hypercerts.context.evaluation';
6022
6112
  const hashMain$l = 'main';
6023
6113
  function isMain$l(v) {
@@ -6044,7 +6134,7 @@ var evaluation = /*#__PURE__*/Object.freeze({
6044
6134
  validateScore: validateScore
6045
6135
  });
6046
6136
 
6047
- const is$typed$l = is$typed$G, validate$l = validate$G;
6137
+ const is$typed$l = is$typed$H, validate$l = validate$H;
6048
6138
  const id$l = 'org.hypercerts.context.measurement';
6049
6139
  const hashMain$k = 'main';
6050
6140
  function isMain$k(v) {
@@ -6062,7 +6152,7 @@ var measurement = /*#__PURE__*/Object.freeze({
6062
6152
  validateRecord: validateMain$k
6063
6153
  });
6064
6154
 
6065
- const is$typed$k = is$typed$G, validate$k = validate$G;
6155
+ const is$typed$k = is$typed$H, validate$k = validate$H;
6066
6156
  const id$k = 'org.hypercerts.defs';
6067
6157
  const hashDescriptionString = 'descriptionString';
6068
6158
  function isDescriptionString(v) {
@@ -6132,7 +6222,7 @@ var defs = /*#__PURE__*/Object.freeze({
6132
6222
  validateUri: validateUri
6133
6223
  });
6134
6224
 
6135
- const is$typed$j = is$typed$G, validate$j = validate$G;
6225
+ const is$typed$j = is$typed$H, validate$j = validate$H;
6136
6226
  const id$j = 'org.hypercerts.funding.receipt';
6137
6227
  const hashMain$j = 'main';
6138
6228
  function isMain$j(v) {
@@ -6159,7 +6249,7 @@ var receipt = /*#__PURE__*/Object.freeze({
6159
6249
  validateText: validateText
6160
6250
  });
6161
6251
 
6162
- const is$typed$i = is$typed$G, validate$i = validate$G;
6252
+ const is$typed$i = is$typed$H, validate$i = validate$H;
6163
6253
  const id$i = 'org.hypercerts.workscope.cel';
6164
6254
  const hashMain$i = 'main';
6165
6255
  function isMain$i(v) {
@@ -6175,7 +6265,7 @@ var cel = /*#__PURE__*/Object.freeze({
6175
6265
  validateMain: validateMain$i
6176
6266
  });
6177
6267
 
6178
- const is$typed$h = is$typed$G, validate$h = validate$G;
6268
+ const is$typed$h = is$typed$H, validate$h = validate$H;
6179
6269
  const id$h = 'org.hypercerts.workscope.tag';
6180
6270
  const hashMain$h = 'main';
6181
6271
  function isMain$h(v) {
@@ -6193,7 +6283,7 @@ var tag = /*#__PURE__*/Object.freeze({
6193
6283
  validateRecord: validateMain$h
6194
6284
  });
6195
6285
 
6196
- const is$typed$g = is$typed$G, validate$g = validate$G;
6286
+ const is$typed$g = is$typed$H, validate$g = validate$H;
6197
6287
  const id$g = 'pub.leaflet.blocks.blockquote';
6198
6288
  const hashMain$g = 'main';
6199
6289
  function isMain$g(v) {
@@ -6209,7 +6299,7 @@ var blockquote = /*#__PURE__*/Object.freeze({
6209
6299
  validateMain: validateMain$g
6210
6300
  });
6211
6301
 
6212
- const is$typed$f = is$typed$G, validate$f = validate$G;
6302
+ const is$typed$f = is$typed$H, validate$f = validate$H;
6213
6303
  const id$f = 'pub.leaflet.blocks.bskyPost';
6214
6304
  const hashMain$f = 'main';
6215
6305
  function isMain$f(v) {
@@ -6225,7 +6315,7 @@ var bskyPost = /*#__PURE__*/Object.freeze({
6225
6315
  validateMain: validateMain$f
6226
6316
  });
6227
6317
 
6228
- const is$typed$e = is$typed$G, validate$e = validate$G;
6318
+ const is$typed$e = is$typed$H, validate$e = validate$H;
6229
6319
  const id$e = 'pub.leaflet.blocks.button';
6230
6320
  const hashMain$e = 'main';
6231
6321
  function isMain$e(v) {
@@ -6241,7 +6331,7 @@ var button = /*#__PURE__*/Object.freeze({
6241
6331
  validateMain: validateMain$e
6242
6332
  });
6243
6333
 
6244
- const is$typed$d = is$typed$G, validate$d = validate$G;
6334
+ const is$typed$d = is$typed$H, validate$d = validate$H;
6245
6335
  const id$d = 'pub.leaflet.blocks.code';
6246
6336
  const hashMain$d = 'main';
6247
6337
  function isMain$d(v) {
@@ -6257,7 +6347,7 @@ var code = /*#__PURE__*/Object.freeze({
6257
6347
  validateMain: validateMain$d
6258
6348
  });
6259
6349
 
6260
- const is$typed$c = is$typed$G, validate$c = validate$G;
6350
+ const is$typed$c = is$typed$H, validate$c = validate$H;
6261
6351
  const id$c = 'pub.leaflet.blocks.header';
6262
6352
  const hashMain$c = 'main';
6263
6353
  function isMain$c(v) {
@@ -6273,7 +6363,7 @@ var header = /*#__PURE__*/Object.freeze({
6273
6363
  validateMain: validateMain$c
6274
6364
  });
6275
6365
 
6276
- const is$typed$b = is$typed$G, validate$b = validate$G;
6366
+ const is$typed$b = is$typed$H, validate$b = validate$H;
6277
6367
  const id$b = 'pub.leaflet.blocks.horizontalRule';
6278
6368
  const hashMain$b = 'main';
6279
6369
  function isMain$b(v) {
@@ -6289,7 +6379,7 @@ var horizontalRule = /*#__PURE__*/Object.freeze({
6289
6379
  validateMain: validateMain$b
6290
6380
  });
6291
6381
 
6292
- const is$typed$a = is$typed$G, validate$a = validate$G;
6382
+ const is$typed$a = is$typed$H, validate$a = validate$H;
6293
6383
  const id$a = 'pub.leaflet.blocks.iframe';
6294
6384
  const hashMain$a = 'main';
6295
6385
  function isMain$a(v) {
@@ -6305,7 +6395,7 @@ var iframe = /*#__PURE__*/Object.freeze({
6305
6395
  validateMain: validateMain$a
6306
6396
  });
6307
6397
 
6308
- const is$typed$9 = is$typed$G, validate$9 = validate$G;
6398
+ const is$typed$9 = is$typed$H, validate$9 = validate$H;
6309
6399
  const id$9 = 'pub.leaflet.blocks.image';
6310
6400
  const hashMain$9 = 'main';
6311
6401
  function isMain$9(v) {
@@ -6330,7 +6420,7 @@ var image = /*#__PURE__*/Object.freeze({
6330
6420
  validateMain: validateMain$9
6331
6421
  });
6332
6422
 
6333
- const is$typed$8 = is$typed$G, validate$8 = validate$G;
6423
+ const is$typed$8 = is$typed$H, validate$8 = validate$H;
6334
6424
  const id$8 = 'pub.leaflet.blocks.math';
6335
6425
  const hashMain$8 = 'main';
6336
6426
  function isMain$8(v) {
@@ -6346,7 +6436,7 @@ var math = /*#__PURE__*/Object.freeze({
6346
6436
  validateMain: validateMain$8
6347
6437
  });
6348
6438
 
6349
- const is$typed$7 = is$typed$G, validate$7 = validate$G;
6439
+ const is$typed$7 = is$typed$H, validate$7 = validate$H;
6350
6440
  const id$7 = 'pub.leaflet.blocks.orderedList';
6351
6441
  const hashMain$7 = 'main';
6352
6442
  function isMain$7(v) {
@@ -6371,7 +6461,7 @@ var orderedList = /*#__PURE__*/Object.freeze({
6371
6461
  validateMain: validateMain$7
6372
6462
  });
6373
6463
 
6374
- const is$typed$6 = is$typed$G, validate$6 = validate$G;
6464
+ const is$typed$6 = is$typed$H, validate$6 = validate$H;
6375
6465
  const id$6 = 'pub.leaflet.blocks.page';
6376
6466
  const hashMain$6 = 'main';
6377
6467
  function isMain$6(v) {
@@ -6387,7 +6477,7 @@ var page = /*#__PURE__*/Object.freeze({
6387
6477
  validateMain: validateMain$6
6388
6478
  });
6389
6479
 
6390
- const is$typed$5 = is$typed$G, validate$5 = validate$G;
6480
+ const is$typed$5 = is$typed$H, validate$5 = validate$H;
6391
6481
  const id$5 = 'pub.leaflet.blocks.poll';
6392
6482
  const hashMain$5 = 'main';
6393
6483
  function isMain$5(v) {
@@ -6403,7 +6493,7 @@ var poll = /*#__PURE__*/Object.freeze({
6403
6493
  validateMain: validateMain$5
6404
6494
  });
6405
6495
 
6406
- const is$typed$4 = is$typed$G, validate$4 = validate$G;
6496
+ const is$typed$4 = is$typed$H, validate$4 = validate$H;
6407
6497
  const id$4 = 'pub.leaflet.blocks.text';
6408
6498
  const hashMain$4 = 'main';
6409
6499
  function isMain$4(v) {
@@ -6419,7 +6509,7 @@ var text = /*#__PURE__*/Object.freeze({
6419
6509
  validateMain: validateMain$4
6420
6510
  });
6421
6511
 
6422
- const is$typed$3 = is$typed$G, validate$3 = validate$G;
6512
+ const is$typed$3 = is$typed$H, validate$3 = validate$H;
6423
6513
  const id$3 = 'pub.leaflet.blocks.unorderedList';
6424
6514
  const hashMain$3 = 'main';
6425
6515
  function isMain$3(v) {
@@ -6444,7 +6534,7 @@ var unorderedList = /*#__PURE__*/Object.freeze({
6444
6534
  validateMain: validateMain$3
6445
6535
  });
6446
6536
 
6447
- const is$typed$2 = is$typed$G, validate$2 = validate$G;
6537
+ const is$typed$2 = is$typed$H, validate$2 = validate$H;
6448
6538
  const id$2 = 'pub.leaflet.blocks.website';
6449
6539
  const hashMain$2 = 'main';
6450
6540
  function isMain$2(v) {
@@ -6460,7 +6550,7 @@ var website = /*#__PURE__*/Object.freeze({
6460
6550
  validateMain: validateMain$2
6461
6551
  });
6462
6552
 
6463
- const is$typed$1 = is$typed$G, validate$1 = validate$G;
6553
+ const is$typed$1 = is$typed$H, validate$1 = validate$H;
6464
6554
  const id$1 = 'pub.leaflet.pages.linearDocument';
6465
6555
  const hashMain$1 = 'main';
6466
6556
  function isMain$1(v) {
@@ -6511,7 +6601,7 @@ var linearDocument = /*#__PURE__*/Object.freeze({
6511
6601
  validateQuote: validateQuote
6512
6602
  });
6513
6603
 
6514
- const is$typed = is$typed$G, validate = validate$G;
6604
+ const is$typed = is$typed$H, validate = validate$H;
6515
6605
  const id = 'pub.leaflet.richtext.facet';
6516
6606
  const hashMain = 'main';
6517
6607
  function isMain(v) {
@@ -6641,7 +6731,7 @@ var facet = /*#__PURE__*/Object.freeze({
6641
6731
  * ⚠️ DO NOT EDIT THIS FILE MANUALLY ⚠️
6642
6732
  *
6643
6733
  * This file is automatically generated by scripts/generate-exports.js
6644
- * Generated: 2026-04-29T07:40:01.346Z
6734
+ * Generated: 2026-05-21T22:21:01.664Z
6645
6735
  *
6646
6736
  * To regenerate this file, run:
6647
6737
  * npm run gen-api
@@ -6665,6 +6755,7 @@ const BADGE_AWARD_NSID = "app.certified.badge.award";
6665
6755
  const BADGE_DEFINITION_NSID = "app.certified.badge.definition";
6666
6756
  const BADGE_RESPONSE_NSID = "app.certified.badge.response";
6667
6757
  const CERTIFIED_DEFS_NSID = "app.certified.defs";
6758
+ const GRAPH_FOLLOW_NSID = "app.certified.graph.follow";
6668
6759
  const LINK_EVM_NSID = "app.certified.link.evm";
6669
6760
  const LOCATION_NSID = "app.certified.location";
6670
6761
  const STRONG_REF_NSID = "com.atproto.repo.strongRef";
@@ -6714,6 +6805,7 @@ const HYPERCERTS_NSIDS = {
6714
6805
  BADGE_DEFINITION: BADGE_DEFINITION_NSID,
6715
6806
  BADGE_RESPONSE: BADGE_RESPONSE_NSID,
6716
6807
  CERTIFIED_DEFS: CERTIFIED_DEFS_NSID,
6808
+ GRAPH_FOLLOW: GRAPH_FOLLOW_NSID,
6717
6809
  LINK_EVM: LINK_EVM_NSID,
6718
6810
  LOCATION: LOCATION_NSID,
6719
6811
  STRONG_REF: STRONG_REF_NSID,
@@ -6761,6 +6853,7 @@ const HYPERCERTS_LEXICON_JSON = {
6761
6853
  BADGE_DEFINITION: BADGE_DEFINITION_LEXICON_JSON,
6762
6854
  BADGE_RESPONSE: BADGE_RESPONSE_LEXICON_JSON,
6763
6855
  CERTIFIED_DEFS: CERTIFIED_DEFS_LEXICON_JSON,
6856
+ GRAPH_FOLLOW: GRAPH_FOLLOW_LEXICON_JSON,
6764
6857
  LINK_EVM: LINK_EVM_LEXICON_JSON,
6765
6858
  LOCATION: LOCATION_LEXICON_JSON,
6766
6859
  STRONG_REF: STRONG_REF_LEXICON_JSON,
@@ -6805,6 +6898,7 @@ const BADGE_AWARD_LEXICON_DOC = lexicons.get(BADGE_AWARD_NSID);
6805
6898
  const BADGE_DEFINITION_LEXICON_DOC = lexicons.get(BADGE_DEFINITION_NSID);
6806
6899
  const BADGE_RESPONSE_LEXICON_DOC = lexicons.get(BADGE_RESPONSE_NSID);
6807
6900
  const CERTIFIED_DEFS_LEXICON_DOC = lexicons.get(CERTIFIED_DEFS_NSID);
6901
+ const GRAPH_FOLLOW_LEXICON_DOC = lexicons.get(GRAPH_FOLLOW_NSID);
6808
6902
  const LINK_EVM_LEXICON_DOC = lexicons.get(LINK_EVM_NSID);
6809
6903
  const LOCATION_LEXICON_DOC = lexicons.get(LOCATION_NSID);
6810
6904
  const STRONG_REF_LEXICON_DOC = lexicons.get(STRONG_REF_NSID);
@@ -6851,6 +6945,7 @@ const HYPERCERTS_LEXICON_DOC = {
6851
6945
  BADGE_DEFINITION: BADGE_DEFINITION_LEXICON_DOC,
6852
6946
  BADGE_RESPONSE: BADGE_RESPONSE_LEXICON_DOC,
6853
6947
  CERTIFIED_DEFS: CERTIFIED_DEFS_LEXICON_DOC,
6948
+ GRAPH_FOLLOW: GRAPH_FOLLOW_LEXICON_DOC,
6854
6949
  LINK_EVM: LINK_EVM_LEXICON_DOC,
6855
6950
  LOCATION: LOCATION_LEXICON_DOC,
6856
6951
  STRONG_REF: STRONG_REF_LEXICON_DOC,
@@ -6904,6 +6999,7 @@ exports.AppCertifiedBadgeAward = award;
6904
6999
  exports.AppCertifiedBadgeDefinition = definition;
6905
7000
  exports.AppCertifiedBadgeResponse = response;
6906
7001
  exports.AppCertifiedDefs = defs$1;
7002
+ exports.AppCertifiedGraphFollow = follow;
6907
7003
  exports.AppCertifiedLinkEvm = evm;
6908
7004
  exports.AppCertifiedLocation = location;
6909
7005
  exports.BADGE_AWARD_LEXICON_DOC = BADGE_AWARD_LEXICON_DOC;
@@ -6943,6 +7039,9 @@ exports.ComAtprotoRepoStrongRef = strongRef;
6943
7039
  exports.FUNDING_RECEIPT_LEXICON_DOC = FUNDING_RECEIPT_LEXICON_DOC;
6944
7040
  exports.FUNDING_RECEIPT_LEXICON_JSON = FUNDING_RECEIPT_LEXICON_JSON;
6945
7041
  exports.FUNDING_RECEIPT_NSID = FUNDING_RECEIPT_NSID;
7042
+ exports.GRAPH_FOLLOW_LEXICON_DOC = GRAPH_FOLLOW_LEXICON_DOC;
7043
+ exports.GRAPH_FOLLOW_LEXICON_JSON = GRAPH_FOLLOW_LEXICON_JSON;
7044
+ exports.GRAPH_FOLLOW_NSID = GRAPH_FOLLOW_NSID;
6946
7045
  exports.HYPERBOARDS_BOARD_LEXICON_DOC = HYPERBOARDS_BOARD_LEXICON_DOC;
6947
7046
  exports.HYPERBOARDS_BOARD_LEXICON_JSON = HYPERBOARDS_BOARD_LEXICON_JSON;
6948
7047
  exports.HYPERBOARDS_BOARD_NSID = HYPERBOARDS_BOARD_NSID;
@@ -7063,8 +7162,8 @@ exports.WORKSCOPE_TAG_LEXICON_DOC = WORKSCOPE_TAG_LEXICON_DOC;
7063
7162
  exports.WORKSCOPE_TAG_LEXICON_JSON = WORKSCOPE_TAG_LEXICON_JSON;
7064
7163
  exports.WORKSCOPE_TAG_NSID = WORKSCOPE_TAG_NSID;
7065
7164
  exports.asPredicate = asPredicate;
7066
- exports.is$typed = is$typed$G;
7165
+ exports.is$typed = is$typed$H;
7067
7166
  exports.lexicons = lexicons;
7068
7167
  exports.maybe$typed = maybe$typed;
7069
- exports.validate = validate$G;
7168
+ exports.validate = validate$H;
7070
7169
  //# sourceMappingURL=index.cjs.map