@hypercerts-org/lexicon 0.10.0-beta.4 → 0.10.0-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +57 -0
- package/README.md +66 -311
- package/SCHEMAS.md +276 -0
- package/dist/exports.d.ts +29 -128
- package/dist/exports.d.ts.map +1 -1
- package/dist/generated/exports.d.ts +29 -128
- package/dist/generated/exports.d.ts.map +1 -1
- package/dist/generated/lexicons.d.ts +82 -270
- package/dist/generated/lexicons.d.ts.map +1 -1
- package/dist/generated/types/org/hypercerts/claim/activity.d.ts +4 -18
- package/dist/generated/types/org/hypercerts/claim/activity.d.ts.map +1 -1
- package/dist/generated/types/org/hypercerts/claim/collection.d.ts +9 -9
- package/dist/generated/types/org/hypercerts/claim/collection.d.ts.map +1 -1
- package/dist/generated/types/org/hypercerts/claim/contributor.d.ts +31 -0
- package/dist/generated/types/org/hypercerts/claim/contributor.d.ts.map +1 -0
- package/dist/index.cjs +247 -495
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +239 -483
- package/dist/index.mjs.map +1 -1
- package/dist/lexicons.cjs +45 -143
- package/dist/lexicons.cjs.map +1 -1
- package/dist/lexicons.d.ts +82 -270
- package/dist/lexicons.d.ts.map +1 -1
- package/dist/lexicons.mjs +45 -143
- package/dist/lexicons.mjs.map +1 -1
- package/dist/types/org/hypercerts/claim/activity.d.ts +4 -18
- package/dist/types/org/hypercerts/claim/activity.d.ts.map +1 -1
- package/dist/types/org/hypercerts/claim/collection.d.ts +9 -9
- package/dist/types/org/hypercerts/claim/collection.d.ts.map +1 -1
- package/dist/types/org/hypercerts/claim/contributor.d.ts +31 -0
- package/dist/types/org/hypercerts/claim/contributor.d.ts.map +1 -0
- package/lexicons/org/hypercerts/claim/activity.json +4 -44
- package/lexicons/org/hypercerts/claim/collection.json +14 -17
- package/lexicons/org/hypercerts/claim/{contribution.json → contributor.json} +24 -14
- package/lexicons/org/hypercerts/claim/evaluation.json +1 -1
- package/package.json +7 -3
- package/dist/generated/types/org/hypercerts/claim/contribution.d.ts +0 -24
- package/dist/generated/types/org/hypercerts/claim/contribution.d.ts.map +0 -1
- package/dist/generated/types/org/hypercerts/claim/project.d.ts +0 -29
- package/dist/generated/types/org/hypercerts/claim/project.d.ts.map +0 -1
- package/dist/types/org/hypercerts/claim/contribution.d.ts +0 -24
- package/dist/types/org/hypercerts/claim/contribution.d.ts.map +0 -1
- package/dist/types/org/hypercerts/claim/project.d.ts +0 -29
- package/dist/types/org/hypercerts/claim/project.d.ts.map +0 -1
- package/lexicons/org/hypercerts/claim/project.json +0 -64
|
@@ -222,7 +222,7 @@ export declare const schemaDict: {
|
|
|
222
222
|
readonly key: "any";
|
|
223
223
|
readonly record: {
|
|
224
224
|
readonly type: "object";
|
|
225
|
-
readonly required: ["title", "shortDescription", "createdAt"
|
|
225
|
+
readonly required: ["title", "shortDescription", "createdAt"];
|
|
226
226
|
readonly properties: {
|
|
227
227
|
readonly title: {
|
|
228
228
|
readonly type: "string";
|
|
@@ -248,7 +248,8 @@ export declare const schemaDict: {
|
|
|
248
248
|
};
|
|
249
249
|
readonly workScope: {
|
|
250
250
|
readonly type: "ref";
|
|
251
|
-
readonly ref: "lex:
|
|
251
|
+
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
252
|
+
readonly description: "A strong reference to a record defining the scope of work. The record referenced should describe the logical scope using label-based conditions.";
|
|
252
253
|
};
|
|
253
254
|
readonly startDate: {
|
|
254
255
|
readonly type: "string";
|
|
@@ -262,7 +263,7 @@ export declare const schemaDict: {
|
|
|
262
263
|
};
|
|
263
264
|
readonly contributions: {
|
|
264
265
|
readonly type: "array";
|
|
265
|
-
readonly description: "A strong reference to the contributions done to create the impact in the hypercerts. The record referenced must conform with the lexicon org.hypercerts.claim.
|
|
266
|
+
readonly description: "A strong reference to the contributions done to create the impact in the hypercerts. The record referenced must conform with the lexicon org.hypercerts.claim.contributor.";
|
|
266
267
|
readonly items: {
|
|
267
268
|
readonly type: "ref";
|
|
268
269
|
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
@@ -281,11 +282,6 @@ export declare const schemaDict: {
|
|
|
281
282
|
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
282
283
|
};
|
|
283
284
|
};
|
|
284
|
-
readonly project: {
|
|
285
|
-
readonly type: "string";
|
|
286
|
-
readonly format: "at-uri";
|
|
287
|
-
readonly description: "A reference (AT-URI) to the project record that this activity is part of. The record referenced must conform with the lexicon org.hypercerts.claim.project. This activity must also be referenced by the project, establishing a bidirectional link.";
|
|
288
|
-
};
|
|
289
285
|
readonly createdAt: {
|
|
290
286
|
readonly type: "string";
|
|
291
287
|
readonly format: "datetime";
|
|
@@ -294,36 +290,6 @@ export declare const schemaDict: {
|
|
|
294
290
|
};
|
|
295
291
|
};
|
|
296
292
|
};
|
|
297
|
-
readonly workScope: {
|
|
298
|
-
readonly type: "object";
|
|
299
|
-
readonly description: "Logical scope of the work using label-based conditions. All labels in `withinAllOf` must apply; at least one label in `withinAnyOf` must apply if provided; no label in `withinNoneOf` may apply.";
|
|
300
|
-
readonly properties: {
|
|
301
|
-
readonly withinAllOf: {
|
|
302
|
-
readonly type: "array";
|
|
303
|
-
readonly description: "Labels that MUST all hold for the scope to apply.";
|
|
304
|
-
readonly items: {
|
|
305
|
-
readonly type: "string";
|
|
306
|
-
};
|
|
307
|
-
readonly maxLength: 100;
|
|
308
|
-
};
|
|
309
|
-
readonly withinAnyOf: {
|
|
310
|
-
readonly type: "array";
|
|
311
|
-
readonly description: "Labels of which AT LEAST ONE must hold (optional). If omitted or empty, imposes no additional condition.";
|
|
312
|
-
readonly items: {
|
|
313
|
-
readonly type: "string";
|
|
314
|
-
};
|
|
315
|
-
readonly maxLength: 100;
|
|
316
|
-
};
|
|
317
|
-
readonly withinNoneOf: {
|
|
318
|
-
readonly type: "array";
|
|
319
|
-
readonly description: "Labels that MUST NOT hold for the scope to apply.";
|
|
320
|
-
readonly items: {
|
|
321
|
-
readonly type: "string";
|
|
322
|
-
};
|
|
323
|
-
readonly maxLength: 100;
|
|
324
|
-
};
|
|
325
|
-
};
|
|
326
|
-
};
|
|
327
293
|
readonly activityWeight: {
|
|
328
294
|
readonly type: "object";
|
|
329
295
|
readonly required: ["activity", "weight"];
|
|
@@ -347,12 +313,16 @@ export declare const schemaDict: {
|
|
|
347
313
|
readonly defs: {
|
|
348
314
|
readonly main: {
|
|
349
315
|
readonly type: "record";
|
|
350
|
-
readonly description: "A collection/group of
|
|
316
|
+
readonly description: "A collection/group of items (activities and/or other collections). Collections support recursive nesting. Use app.certified.location as a sidecar (same TID) for location metadata.";
|
|
351
317
|
readonly key: "tid";
|
|
352
318
|
readonly record: {
|
|
353
319
|
readonly type: "object";
|
|
354
|
-
readonly required: ["title", "
|
|
320
|
+
readonly required: ["title", "items", "createdAt"];
|
|
355
321
|
readonly properties: {
|
|
322
|
+
readonly type: {
|
|
323
|
+
readonly type: "string";
|
|
324
|
+
readonly description: "The type of this collection. Possible fields can be 'favorites', 'project', or any other type of collection.";
|
|
325
|
+
};
|
|
356
326
|
readonly title: {
|
|
357
327
|
readonly type: "string";
|
|
358
328
|
readonly description: "The title of this collection";
|
|
@@ -363,26 +333,19 @@ export declare const schemaDict: {
|
|
|
363
333
|
readonly type: "string";
|
|
364
334
|
readonly maxLength: 3000;
|
|
365
335
|
readonly maxGraphemes: 300;
|
|
366
|
-
readonly description: "
|
|
367
|
-
};
|
|
368
|
-
readonly avatar: {
|
|
369
|
-
readonly type: "blob";
|
|
370
|
-
readonly description: "Primary avatar image representing this collection across apps and views; typically a square image.";
|
|
371
|
-
readonly accept: ["image/png", "image/jpeg"];
|
|
372
|
-
readonly maxSize: 1000000;
|
|
336
|
+
readonly description: "Short summary of this collection, suitable for previews and list views";
|
|
373
337
|
};
|
|
374
|
-
readonly
|
|
375
|
-
readonly type: "
|
|
376
|
-
readonly
|
|
377
|
-
readonly
|
|
378
|
-
readonly maxSize: 1000000;
|
|
338
|
+
readonly description: {
|
|
339
|
+
readonly type: "ref";
|
|
340
|
+
readonly ref: "lex:pub.leaflet.pages.linearDocument#main";
|
|
341
|
+
readonly description: "Rich-text description, represented as a Leaflet linear document.";
|
|
379
342
|
};
|
|
380
|
-
readonly
|
|
343
|
+
readonly items: {
|
|
381
344
|
readonly type: "array";
|
|
382
|
-
readonly description: "Array of
|
|
345
|
+
readonly description: "Array of strong references to items in this collection. Items can be activities (org.hypercerts.claim.activity) and/or other collections (org.hypercerts.claim.collection).";
|
|
383
346
|
readonly items: {
|
|
384
347
|
readonly type: "ref";
|
|
385
|
-
readonly ref: "lex:
|
|
348
|
+
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
386
349
|
};
|
|
387
350
|
};
|
|
388
351
|
readonly createdAt: {
|
|
@@ -395,9 +358,9 @@ export declare const schemaDict: {
|
|
|
395
358
|
};
|
|
396
359
|
};
|
|
397
360
|
};
|
|
398
|
-
readonly
|
|
361
|
+
readonly OrgHypercertsClaimContributor: {
|
|
399
362
|
readonly lexicon: 1;
|
|
400
|
-
readonly id: "org.hypercerts.claim.
|
|
363
|
+
readonly id: "org.hypercerts.claim.contributor";
|
|
401
364
|
readonly defs: {
|
|
402
365
|
readonly main: {
|
|
403
366
|
readonly type: "record";
|
|
@@ -405,23 +368,30 @@ export declare const schemaDict: {
|
|
|
405
368
|
readonly key: "tid";
|
|
406
369
|
readonly record: {
|
|
407
370
|
readonly type: "object";
|
|
408
|
-
readonly required: ["
|
|
371
|
+
readonly required: ["createdAt"];
|
|
409
372
|
readonly properties: {
|
|
410
|
-
readonly
|
|
373
|
+
readonly identifier: {
|
|
374
|
+
readonly type: "string";
|
|
375
|
+
readonly description: "DID or a URI to a social profile of the contributor.";
|
|
376
|
+
};
|
|
377
|
+
readonly displayName: {
|
|
411
378
|
readonly type: "string";
|
|
412
|
-
readonly description: "
|
|
379
|
+
readonly description: "Display name of the contributor.";
|
|
413
380
|
readonly maxLength: 100;
|
|
414
381
|
};
|
|
415
|
-
readonly
|
|
416
|
-
readonly type: "
|
|
417
|
-
readonly
|
|
418
|
-
readonly
|
|
419
|
-
readonly type: "string";
|
|
420
|
-
};
|
|
382
|
+
readonly image: {
|
|
383
|
+
readonly type: "union";
|
|
384
|
+
readonly refs: ["lex:org.hypercerts.defs#uri", "lex:org.hypercerts.defs#smallImage"];
|
|
385
|
+
readonly description: "The contributor visual representation as a URI or image blob.";
|
|
421
386
|
};
|
|
422
|
-
readonly
|
|
387
|
+
readonly role: {
|
|
388
|
+
readonly type: "string";
|
|
389
|
+
readonly description: "Role or title of the contributor.";
|
|
390
|
+
readonly maxLength: 100;
|
|
391
|
+
};
|
|
392
|
+
readonly contributionDescription: {
|
|
423
393
|
readonly type: "string";
|
|
424
|
-
readonly description: "What the contribution concretely achieved";
|
|
394
|
+
readonly description: "What the contribution concretely achieved.";
|
|
425
395
|
readonly maxLength: 2000;
|
|
426
396
|
readonly maxGraphemes: 500;
|
|
427
397
|
};
|
|
@@ -433,12 +403,12 @@ export declare const schemaDict: {
|
|
|
433
403
|
readonly endDate: {
|
|
434
404
|
readonly type: "string";
|
|
435
405
|
readonly format: "datetime";
|
|
436
|
-
readonly description: "When this contribution finished.
|
|
406
|
+
readonly description: "When this contribution finished. This should be a subset of the hypercert timeframe.";
|
|
437
407
|
};
|
|
438
408
|
readonly createdAt: {
|
|
439
409
|
readonly type: "string";
|
|
440
410
|
readonly format: "datetime";
|
|
441
|
-
readonly description: "Client-declared timestamp when this record was originally created";
|
|
411
|
+
readonly description: "Client-declared timestamp when this record was originally created.";
|
|
442
412
|
};
|
|
443
413
|
};
|
|
444
414
|
};
|
|
@@ -501,7 +471,7 @@ export declare const schemaDict: {
|
|
|
501
471
|
};
|
|
502
472
|
readonly measurements: {
|
|
503
473
|
readonly type: "array";
|
|
504
|
-
readonly description: "Optional references to the measurements that contributed to this evaluation. The record(s) referenced must conform with the lexicon org.hypercerts.claim.measurement
|
|
474
|
+
readonly description: "Optional references to the measurements that contributed to this evaluation. The record(s) referenced must conform with the lexicon org.hypercerts.claim.measurement";
|
|
505
475
|
readonly items: {
|
|
506
476
|
readonly type: "ref";
|
|
507
477
|
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
@@ -658,70 +628,6 @@ export declare const schemaDict: {
|
|
|
658
628
|
};
|
|
659
629
|
};
|
|
660
630
|
};
|
|
661
|
-
readonly OrgHypercertsClaimProject: {
|
|
662
|
-
readonly lexicon: 1;
|
|
663
|
-
readonly id: "org.hypercerts.claim.project";
|
|
664
|
-
readonly defs: {
|
|
665
|
-
readonly main: {
|
|
666
|
-
readonly type: "record";
|
|
667
|
-
readonly description: "A project that can include multiple activities, each of which may be linked to at most one project.";
|
|
668
|
-
readonly key: "tid";
|
|
669
|
-
readonly record: {
|
|
670
|
-
readonly type: "object";
|
|
671
|
-
readonly required: ["title", "shortDescription", "createdAt"];
|
|
672
|
-
readonly properties: {
|
|
673
|
-
readonly title: {
|
|
674
|
-
readonly type: "string";
|
|
675
|
-
readonly description: "Title of this project";
|
|
676
|
-
readonly maxLength: 800;
|
|
677
|
-
readonly maxGraphemes: 80;
|
|
678
|
-
};
|
|
679
|
-
readonly shortDescription: {
|
|
680
|
-
readonly type: "string";
|
|
681
|
-
readonly maxLength: 3000;
|
|
682
|
-
readonly maxGraphemes: 300;
|
|
683
|
-
readonly description: "Short summary of this project, suitable for previews and list views.";
|
|
684
|
-
};
|
|
685
|
-
readonly description: {
|
|
686
|
-
readonly type: "ref";
|
|
687
|
-
readonly ref: "lex:pub.leaflet.pages.linearDocument#main";
|
|
688
|
-
readonly description: "Rich-text description of this project, represented as a Leaflet linear document.";
|
|
689
|
-
};
|
|
690
|
-
readonly avatar: {
|
|
691
|
-
readonly type: "blob";
|
|
692
|
-
readonly description: "Primary avatar image representing this project across apps and views; typically a square logo or project identity image.";
|
|
693
|
-
readonly accept: ["image/png", "image/jpeg"];
|
|
694
|
-
readonly maxSize: 1000000;
|
|
695
|
-
};
|
|
696
|
-
readonly coverPhoto: {
|
|
697
|
-
readonly type: "blob";
|
|
698
|
-
readonly description: "The cover photo of this project.";
|
|
699
|
-
readonly accept: ["image/png", "image/jpeg"];
|
|
700
|
-
readonly maxSize: 1000000;
|
|
701
|
-
};
|
|
702
|
-
readonly activities: {
|
|
703
|
-
readonly type: "array";
|
|
704
|
-
readonly description: "Array of activities with their associated weights in this project";
|
|
705
|
-
readonly items: {
|
|
706
|
-
readonly type: "ref";
|
|
707
|
-
readonly ref: "lex:org.hypercerts.claim.activity#activityWeight";
|
|
708
|
-
};
|
|
709
|
-
};
|
|
710
|
-
readonly location: {
|
|
711
|
-
readonly type: "ref";
|
|
712
|
-
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
713
|
-
readonly description: "A strong reference to a location record describing where the work for this project took place. The referenced record must conform to the app.certified.location lexicon.";
|
|
714
|
-
};
|
|
715
|
-
readonly createdAt: {
|
|
716
|
-
readonly type: "string";
|
|
717
|
-
readonly format: "datetime";
|
|
718
|
-
readonly description: "Client-declared timestamp when this record was originally created";
|
|
719
|
-
};
|
|
720
|
-
};
|
|
721
|
-
};
|
|
722
|
-
};
|
|
723
|
-
};
|
|
724
|
-
};
|
|
725
631
|
readonly OrgHypercertsClaimRights: {
|
|
726
632
|
readonly lexicon: 1;
|
|
727
633
|
readonly id: "org.hypercerts.claim.rights";
|
|
@@ -1114,7 +1020,7 @@ export declare const schemas: ({
|
|
|
1114
1020
|
readonly key: "any";
|
|
1115
1021
|
readonly record: {
|
|
1116
1022
|
readonly type: "object";
|
|
1117
|
-
readonly required: ["title", "shortDescription", "createdAt"
|
|
1023
|
+
readonly required: ["title", "shortDescription", "createdAt"];
|
|
1118
1024
|
readonly properties: {
|
|
1119
1025
|
readonly title: {
|
|
1120
1026
|
readonly type: "string";
|
|
@@ -1140,7 +1046,8 @@ export declare const schemas: ({
|
|
|
1140
1046
|
};
|
|
1141
1047
|
readonly workScope: {
|
|
1142
1048
|
readonly type: "ref";
|
|
1143
|
-
readonly ref: "lex:
|
|
1049
|
+
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
1050
|
+
readonly description: "A strong reference to a record defining the scope of work. The record referenced should describe the logical scope using label-based conditions.";
|
|
1144
1051
|
};
|
|
1145
1052
|
readonly startDate: {
|
|
1146
1053
|
readonly type: "string";
|
|
@@ -1154,7 +1061,7 @@ export declare const schemas: ({
|
|
|
1154
1061
|
};
|
|
1155
1062
|
readonly contributions: {
|
|
1156
1063
|
readonly type: "array";
|
|
1157
|
-
readonly description: "A strong reference to the contributions done to create the impact in the hypercerts. The record referenced must conform with the lexicon org.hypercerts.claim.
|
|
1064
|
+
readonly description: "A strong reference to the contributions done to create the impact in the hypercerts. The record referenced must conform with the lexicon org.hypercerts.claim.contributor.";
|
|
1158
1065
|
readonly items: {
|
|
1159
1066
|
readonly type: "ref";
|
|
1160
1067
|
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
@@ -1173,11 +1080,6 @@ export declare const schemas: ({
|
|
|
1173
1080
|
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
1174
1081
|
};
|
|
1175
1082
|
};
|
|
1176
|
-
readonly project: {
|
|
1177
|
-
readonly type: "string";
|
|
1178
|
-
readonly format: "at-uri";
|
|
1179
|
-
readonly description: "A reference (AT-URI) to the project record that this activity is part of. The record referenced must conform with the lexicon org.hypercerts.claim.project. This activity must also be referenced by the project, establishing a bidirectional link.";
|
|
1180
|
-
};
|
|
1181
1083
|
readonly createdAt: {
|
|
1182
1084
|
readonly type: "string";
|
|
1183
1085
|
readonly format: "datetime";
|
|
@@ -1186,36 +1088,6 @@ export declare const schemas: ({
|
|
|
1186
1088
|
};
|
|
1187
1089
|
};
|
|
1188
1090
|
};
|
|
1189
|
-
readonly workScope: {
|
|
1190
|
-
readonly type: "object";
|
|
1191
|
-
readonly description: "Logical scope of the work using label-based conditions. All labels in `withinAllOf` must apply; at least one label in `withinAnyOf` must apply if provided; no label in `withinNoneOf` may apply.";
|
|
1192
|
-
readonly properties: {
|
|
1193
|
-
readonly withinAllOf: {
|
|
1194
|
-
readonly type: "array";
|
|
1195
|
-
readonly description: "Labels that MUST all hold for the scope to apply.";
|
|
1196
|
-
readonly items: {
|
|
1197
|
-
readonly type: "string";
|
|
1198
|
-
};
|
|
1199
|
-
readonly maxLength: 100;
|
|
1200
|
-
};
|
|
1201
|
-
readonly withinAnyOf: {
|
|
1202
|
-
readonly type: "array";
|
|
1203
|
-
readonly description: "Labels of which AT LEAST ONE must hold (optional). If omitted or empty, imposes no additional condition.";
|
|
1204
|
-
readonly items: {
|
|
1205
|
-
readonly type: "string";
|
|
1206
|
-
};
|
|
1207
|
-
readonly maxLength: 100;
|
|
1208
|
-
};
|
|
1209
|
-
readonly withinNoneOf: {
|
|
1210
|
-
readonly type: "array";
|
|
1211
|
-
readonly description: "Labels that MUST NOT hold for the scope to apply.";
|
|
1212
|
-
readonly items: {
|
|
1213
|
-
readonly type: "string";
|
|
1214
|
-
};
|
|
1215
|
-
readonly maxLength: 100;
|
|
1216
|
-
};
|
|
1217
|
-
};
|
|
1218
|
-
};
|
|
1219
1091
|
readonly activityWeight: {
|
|
1220
1092
|
readonly type: "object";
|
|
1221
1093
|
readonly required: ["activity", "weight"];
|
|
@@ -1238,12 +1110,16 @@ export declare const schemas: ({
|
|
|
1238
1110
|
readonly defs: {
|
|
1239
1111
|
readonly main: {
|
|
1240
1112
|
readonly type: "record";
|
|
1241
|
-
readonly description: "A collection/group of
|
|
1113
|
+
readonly description: "A collection/group of items (activities and/or other collections). Collections support recursive nesting. Use app.certified.location as a sidecar (same TID) for location metadata.";
|
|
1242
1114
|
readonly key: "tid";
|
|
1243
1115
|
readonly record: {
|
|
1244
1116
|
readonly type: "object";
|
|
1245
|
-
readonly required: ["title", "
|
|
1117
|
+
readonly required: ["title", "items", "createdAt"];
|
|
1246
1118
|
readonly properties: {
|
|
1119
|
+
readonly type: {
|
|
1120
|
+
readonly type: "string";
|
|
1121
|
+
readonly description: "The type of this collection. Possible fields can be 'favorites', 'project', or any other type of collection.";
|
|
1122
|
+
};
|
|
1247
1123
|
readonly title: {
|
|
1248
1124
|
readonly type: "string";
|
|
1249
1125
|
readonly description: "The title of this collection";
|
|
@@ -1254,26 +1130,19 @@ export declare const schemas: ({
|
|
|
1254
1130
|
readonly type: "string";
|
|
1255
1131
|
readonly maxLength: 3000;
|
|
1256
1132
|
readonly maxGraphemes: 300;
|
|
1257
|
-
readonly description: "
|
|
1258
|
-
};
|
|
1259
|
-
readonly avatar: {
|
|
1260
|
-
readonly type: "blob";
|
|
1261
|
-
readonly description: "Primary avatar image representing this collection across apps and views; typically a square image.";
|
|
1262
|
-
readonly accept: ["image/png", "image/jpeg"];
|
|
1263
|
-
readonly maxSize: 1000000;
|
|
1133
|
+
readonly description: "Short summary of this collection, suitable for previews and list views";
|
|
1264
1134
|
};
|
|
1265
|
-
readonly
|
|
1266
|
-
readonly type: "
|
|
1267
|
-
readonly
|
|
1268
|
-
readonly
|
|
1269
|
-
readonly maxSize: 1000000;
|
|
1135
|
+
readonly description: {
|
|
1136
|
+
readonly type: "ref";
|
|
1137
|
+
readonly ref: "lex:pub.leaflet.pages.linearDocument#main";
|
|
1138
|
+
readonly description: "Rich-text description, represented as a Leaflet linear document.";
|
|
1270
1139
|
};
|
|
1271
|
-
readonly
|
|
1140
|
+
readonly items: {
|
|
1272
1141
|
readonly type: "array";
|
|
1273
|
-
readonly description: "Array of
|
|
1142
|
+
readonly description: "Array of strong references to items in this collection. Items can be activities (org.hypercerts.claim.activity) and/or other collections (org.hypercerts.claim.collection).";
|
|
1274
1143
|
readonly items: {
|
|
1275
1144
|
readonly type: "ref";
|
|
1276
|
-
readonly ref: "lex:
|
|
1145
|
+
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
1277
1146
|
};
|
|
1278
1147
|
};
|
|
1279
1148
|
readonly createdAt: {
|
|
@@ -1287,7 +1156,7 @@ export declare const schemas: ({
|
|
|
1287
1156
|
};
|
|
1288
1157
|
} | {
|
|
1289
1158
|
readonly lexicon: 1;
|
|
1290
|
-
readonly id: "org.hypercerts.claim.
|
|
1159
|
+
readonly id: "org.hypercerts.claim.contributor";
|
|
1291
1160
|
readonly defs: {
|
|
1292
1161
|
readonly main: {
|
|
1293
1162
|
readonly type: "record";
|
|
@@ -1295,23 +1164,30 @@ export declare const schemas: ({
|
|
|
1295
1164
|
readonly key: "tid";
|
|
1296
1165
|
readonly record: {
|
|
1297
1166
|
readonly type: "object";
|
|
1298
|
-
readonly required: ["
|
|
1167
|
+
readonly required: ["createdAt"];
|
|
1299
1168
|
readonly properties: {
|
|
1300
|
-
readonly
|
|
1169
|
+
readonly identifier: {
|
|
1170
|
+
readonly type: "string";
|
|
1171
|
+
readonly description: "DID or a URI to a social profile of the contributor.";
|
|
1172
|
+
};
|
|
1173
|
+
readonly displayName: {
|
|
1301
1174
|
readonly type: "string";
|
|
1302
|
-
readonly description: "
|
|
1175
|
+
readonly description: "Display name of the contributor.";
|
|
1303
1176
|
readonly maxLength: 100;
|
|
1304
1177
|
};
|
|
1305
|
-
readonly
|
|
1306
|
-
readonly type: "
|
|
1307
|
-
readonly
|
|
1308
|
-
readonly
|
|
1309
|
-
readonly type: "string";
|
|
1310
|
-
};
|
|
1178
|
+
readonly image: {
|
|
1179
|
+
readonly type: "union";
|
|
1180
|
+
readonly refs: ["lex:org.hypercerts.defs#uri", "lex:org.hypercerts.defs#smallImage"];
|
|
1181
|
+
readonly description: "The contributor visual representation as a URI or image blob.";
|
|
1311
1182
|
};
|
|
1312
|
-
readonly
|
|
1183
|
+
readonly role: {
|
|
1184
|
+
readonly type: "string";
|
|
1185
|
+
readonly description: "Role or title of the contributor.";
|
|
1186
|
+
readonly maxLength: 100;
|
|
1187
|
+
};
|
|
1188
|
+
readonly contributionDescription: {
|
|
1313
1189
|
readonly type: "string";
|
|
1314
|
-
readonly description: "What the contribution concretely achieved";
|
|
1190
|
+
readonly description: "What the contribution concretely achieved.";
|
|
1315
1191
|
readonly maxLength: 2000;
|
|
1316
1192
|
readonly maxGraphemes: 500;
|
|
1317
1193
|
};
|
|
@@ -1323,12 +1199,12 @@ export declare const schemas: ({
|
|
|
1323
1199
|
readonly endDate: {
|
|
1324
1200
|
readonly type: "string";
|
|
1325
1201
|
readonly format: "datetime";
|
|
1326
|
-
readonly description: "When this contribution finished.
|
|
1202
|
+
readonly description: "When this contribution finished. This should be a subset of the hypercert timeframe.";
|
|
1327
1203
|
};
|
|
1328
1204
|
readonly createdAt: {
|
|
1329
1205
|
readonly type: "string";
|
|
1330
1206
|
readonly format: "datetime";
|
|
1331
|
-
readonly description: "Client-declared timestamp when this record was originally created";
|
|
1207
|
+
readonly description: "Client-declared timestamp when this record was originally created.";
|
|
1332
1208
|
};
|
|
1333
1209
|
};
|
|
1334
1210
|
};
|
|
@@ -1390,7 +1266,7 @@ export declare const schemas: ({
|
|
|
1390
1266
|
};
|
|
1391
1267
|
readonly measurements: {
|
|
1392
1268
|
readonly type: "array";
|
|
1393
|
-
readonly description: "Optional references to the measurements that contributed to this evaluation. The record(s) referenced must conform with the lexicon org.hypercerts.claim.measurement
|
|
1269
|
+
readonly description: "Optional references to the measurements that contributed to this evaluation. The record(s) referenced must conform with the lexicon org.hypercerts.claim.measurement";
|
|
1394
1270
|
readonly items: {
|
|
1395
1271
|
readonly type: "ref";
|
|
1396
1272
|
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
@@ -1544,69 +1420,6 @@ export declare const schemas: ({
|
|
|
1544
1420
|
};
|
|
1545
1421
|
};
|
|
1546
1422
|
};
|
|
1547
|
-
} | {
|
|
1548
|
-
readonly lexicon: 1;
|
|
1549
|
-
readonly id: "org.hypercerts.claim.project";
|
|
1550
|
-
readonly defs: {
|
|
1551
|
-
readonly main: {
|
|
1552
|
-
readonly type: "record";
|
|
1553
|
-
readonly description: "A project that can include multiple activities, each of which may be linked to at most one project.";
|
|
1554
|
-
readonly key: "tid";
|
|
1555
|
-
readonly record: {
|
|
1556
|
-
readonly type: "object";
|
|
1557
|
-
readonly required: ["title", "shortDescription", "createdAt"];
|
|
1558
|
-
readonly properties: {
|
|
1559
|
-
readonly title: {
|
|
1560
|
-
readonly type: "string";
|
|
1561
|
-
readonly description: "Title of this project";
|
|
1562
|
-
readonly maxLength: 800;
|
|
1563
|
-
readonly maxGraphemes: 80;
|
|
1564
|
-
};
|
|
1565
|
-
readonly shortDescription: {
|
|
1566
|
-
readonly type: "string";
|
|
1567
|
-
readonly maxLength: 3000;
|
|
1568
|
-
readonly maxGraphemes: 300;
|
|
1569
|
-
readonly description: "Short summary of this project, suitable for previews and list views.";
|
|
1570
|
-
};
|
|
1571
|
-
readonly description: {
|
|
1572
|
-
readonly type: "ref";
|
|
1573
|
-
readonly ref: "lex:pub.leaflet.pages.linearDocument#main";
|
|
1574
|
-
readonly description: "Rich-text description of this project, represented as a Leaflet linear document.";
|
|
1575
|
-
};
|
|
1576
|
-
readonly avatar: {
|
|
1577
|
-
readonly type: "blob";
|
|
1578
|
-
readonly description: "Primary avatar image representing this project across apps and views; typically a square logo or project identity image.";
|
|
1579
|
-
readonly accept: ["image/png", "image/jpeg"];
|
|
1580
|
-
readonly maxSize: 1000000;
|
|
1581
|
-
};
|
|
1582
|
-
readonly coverPhoto: {
|
|
1583
|
-
readonly type: "blob";
|
|
1584
|
-
readonly description: "The cover photo of this project.";
|
|
1585
|
-
readonly accept: ["image/png", "image/jpeg"];
|
|
1586
|
-
readonly maxSize: 1000000;
|
|
1587
|
-
};
|
|
1588
|
-
readonly activities: {
|
|
1589
|
-
readonly type: "array";
|
|
1590
|
-
readonly description: "Array of activities with their associated weights in this project";
|
|
1591
|
-
readonly items: {
|
|
1592
|
-
readonly type: "ref";
|
|
1593
|
-
readonly ref: "lex:org.hypercerts.claim.activity#activityWeight";
|
|
1594
|
-
};
|
|
1595
|
-
};
|
|
1596
|
-
readonly location: {
|
|
1597
|
-
readonly type: "ref";
|
|
1598
|
-
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
1599
|
-
readonly description: "A strong reference to a location record describing where the work for this project took place. The referenced record must conform to the app.certified.location lexicon.";
|
|
1600
|
-
};
|
|
1601
|
-
readonly createdAt: {
|
|
1602
|
-
readonly type: "string";
|
|
1603
|
-
readonly format: "datetime";
|
|
1604
|
-
readonly description: "Client-declared timestamp when this record was originally created";
|
|
1605
|
-
};
|
|
1606
|
-
};
|
|
1607
|
-
};
|
|
1608
|
-
};
|
|
1609
|
-
};
|
|
1610
1423
|
} | {
|
|
1611
1424
|
readonly lexicon: 1;
|
|
1612
1425
|
readonly id: "org.hypercerts.claim.rights";
|
|
@@ -1799,11 +1612,10 @@ export declare const ids: {
|
|
|
1799
1612
|
readonly ComAtprotoRepoStrongRef: "com.atproto.repo.strongRef";
|
|
1800
1613
|
readonly OrgHypercertsClaimActivity: "org.hypercerts.claim.activity";
|
|
1801
1614
|
readonly OrgHypercertsClaimCollection: "org.hypercerts.claim.collection";
|
|
1802
|
-
readonly
|
|
1615
|
+
readonly OrgHypercertsClaimContributor: "org.hypercerts.claim.contributor";
|
|
1803
1616
|
readonly OrgHypercertsClaimEvaluation: "org.hypercerts.claim.evaluation";
|
|
1804
1617
|
readonly OrgHypercertsClaimEvidence: "org.hypercerts.claim.evidence";
|
|
1805
1618
|
readonly OrgHypercertsClaimMeasurement: "org.hypercerts.claim.measurement";
|
|
1806
|
-
readonly OrgHypercertsClaimProject: "org.hypercerts.claim.project";
|
|
1807
1619
|
readonly OrgHypercertsClaimRights: "org.hypercerts.claim.rights";
|
|
1808
1620
|
readonly OrgHypercertsDefs: "org.hypercerts.defs";
|
|
1809
1621
|
readonly OrgHypercertsFundingReceipt: "org.hypercerts.funding.receipt";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lexicons.d.ts","sourceRoot":"","sources":["../../generated/lexicons.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAEL,QAAQ,EAER,KAAK,gBAAgB,EACtB,MAAM,kBAAkB,CAAA;AAGzB,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"lexicons.d.ts","sourceRoot":"","sources":["../../generated/lexicons.ts"],"names":[],"mappings":"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"}
|
|
@@ -16,18 +16,16 @@ export interface Main {
|
|
|
16
16
|
image?: $Typed<OrgHypercertsDefs.Uri> | $Typed<OrgHypercertsDefs.SmallImage> | {
|
|
17
17
|
$type: string;
|
|
18
18
|
};
|
|
19
|
-
workScope?:
|
|
19
|
+
workScope?: ComAtprotoRepoStrongRef.Main;
|
|
20
20
|
/** When the work began */
|
|
21
|
-
startDate
|
|
21
|
+
startDate?: string;
|
|
22
22
|
/** When the work ended */
|
|
23
|
-
endDate
|
|
24
|
-
/** A strong reference to the contributions done to create the impact in the hypercerts. The record referenced must conform with the lexicon org.hypercerts.claim.
|
|
23
|
+
endDate?: string;
|
|
24
|
+
/** A strong reference to the contributions done to create the impact in the hypercerts. The record referenced must conform with the lexicon org.hypercerts.claim.contributor. */
|
|
25
25
|
contributions?: ComAtprotoRepoStrongRef.Main[];
|
|
26
26
|
rights?: ComAtprotoRepoStrongRef.Main;
|
|
27
27
|
/** An array of strong references to the location where activity was performed. The record referenced must conform with the lexicon app.certified.location. */
|
|
28
28
|
locations?: ComAtprotoRepoStrongRef.Main[];
|
|
29
|
-
/** A reference (AT-URI) to the project record that this activity is part of. The record referenced must conform with the lexicon org.hypercerts.claim.project. This activity must also be referenced by the project, establishing a bidirectional link. */
|
|
30
|
-
project?: string;
|
|
31
29
|
/** Client-declared timestamp when this record was originally created */
|
|
32
30
|
createdAt: string;
|
|
33
31
|
[k: string]: unknown;
|
|
@@ -35,18 +33,6 @@ export interface Main {
|
|
|
35
33
|
export declare function isMain<V>(v: V): v is import("../../../../util").$TypedObject<V, "org.hypercerts.claim.activity", "main">;
|
|
36
34
|
export declare function validateMain<V>(v: V): ValidationResult<Main & V>;
|
|
37
35
|
export { type Main as Record, isMain as isRecord, validateMain as validateRecord, };
|
|
38
|
-
/** Logical scope of the work using label-based conditions. All labels in `withinAllOf` must apply; at least one label in `withinAnyOf` must apply if provided; no label in `withinNoneOf` may apply. */
|
|
39
|
-
export interface WorkScope {
|
|
40
|
-
$type?: 'org.hypercerts.claim.activity#workScope';
|
|
41
|
-
/** Labels that MUST all hold for the scope to apply. */
|
|
42
|
-
withinAllOf?: string[];
|
|
43
|
-
/** Labels of which AT LEAST ONE must hold (optional). If omitted or empty, imposes no additional condition. */
|
|
44
|
-
withinAnyOf?: string[];
|
|
45
|
-
/** Labels that MUST NOT hold for the scope to apply. */
|
|
46
|
-
withinNoneOf?: string[];
|
|
47
|
-
}
|
|
48
|
-
export declare function isWorkScope<V>(v: V): v is import("../../../../util").$TypedObject<V, "org.hypercerts.claim.activity", "workScope">;
|
|
49
|
-
export declare function validateWorkScope<V>(v: V): ValidationResult<WorkScope & V>;
|
|
50
36
|
export interface ActivityWeight {
|
|
51
37
|
$type?: 'org.hypercerts.claim.activity#activityWeight';
|
|
52
38
|
activity: ComAtprotoRepoStrongRef.Main;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"activity.d.ts","sourceRoot":"","sources":["../../../../../../generated/types/org/hypercerts/claim/activity.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,KAAK,gBAAgB,EAAW,MAAM,kBAAkB,CAAA;AAGjE,OAAO,EACL,KAAK,MAAM,EAGZ,MAAM,kBAAkB,CAAA;AACzB,OAAO,KAAK,KAAK,iBAAiB,MAAM,YAAY,CAAA;AACpD,OAAO,KAAK,KAAK,uBAAuB,MAAM,wCAAwC,CAAA;AAMtF,MAAM,WAAW,IAAI;IACnB,KAAK,EAAE,+BAA+B,CAAA;IACtC,8BAA8B;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,2CAA2C;IAC3C,gBAAgB,EAAE,MAAM,CAAA;IACxB,2DAA2D;IAC3D,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,KAAK,CAAC,EACF,MAAM,CAAC,iBAAiB,CAAC,GAAG,CAAC,GAC7B,MAAM,CAAC,iBAAiB,CAAC,UAAU,CAAC,GACpC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,CAAA;IACrB,SAAS,CAAC,EAAE,
|
|
1
|
+
{"version":3,"file":"activity.d.ts","sourceRoot":"","sources":["../../../../../../generated/types/org/hypercerts/claim/activity.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,KAAK,gBAAgB,EAAW,MAAM,kBAAkB,CAAA;AAGjE,OAAO,EACL,KAAK,MAAM,EAGZ,MAAM,kBAAkB,CAAA;AACzB,OAAO,KAAK,KAAK,iBAAiB,MAAM,YAAY,CAAA;AACpD,OAAO,KAAK,KAAK,uBAAuB,MAAM,wCAAwC,CAAA;AAMtF,MAAM,WAAW,IAAI;IACnB,KAAK,EAAE,+BAA+B,CAAA;IACtC,8BAA8B;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,2CAA2C;IAC3C,gBAAgB,EAAE,MAAM,CAAA;IACxB,2DAA2D;IAC3D,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,KAAK,CAAC,EACF,MAAM,CAAC,iBAAiB,CAAC,GAAG,CAAC,GAC7B,MAAM,CAAC,iBAAiB,CAAC,UAAU,CAAC,GACpC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,CAAA;IACrB,SAAS,CAAC,EAAE,uBAAuB,CAAC,IAAI,CAAA;IACxC,0BAA0B;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,0BAA0B;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,iLAAiL;IACjL,aAAa,CAAC,EAAE,uBAAuB,CAAC,IAAI,EAAE,CAAA;IAC9C,MAAM,CAAC,EAAE,uBAAuB,CAAC,IAAI,CAAA;IACrC,8JAA8J;IAC9J,SAAS,CAAC,EAAE,uBAAuB,CAAC,IAAI,EAAE,CAAA;IAC1C,wEAAwE;IACxE,SAAS,EAAE,MAAM,CAAA;IACjB,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;CACrB;AAID,wBAAgB,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,4FAE7B;AAED,wBAAgB,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,8BAEnC;AAED,OAAO,EACL,KAAK,IAAI,IAAI,MAAM,EACnB,MAAM,IAAI,QAAQ,EAClB,YAAY,IAAI,cAAc,GAC/B,CAAA;AAED,MAAM,WAAW,cAAc;IAC7B,KAAK,CAAC,EAAE,8CAA8C,CAAA;IACtD,QAAQ,EAAE,uBAAuB,CAAC,IAAI,CAAA;IACtC,oRAAoR;IACpR,MAAM,EAAE,MAAM,CAAA;CACf;AAID,wBAAgB,gBAAgB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,sGAEvC;AAED,wBAAgB,sBAAsB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,wCAE7C"}
|