@hypercerts-org/lexicon 0.10.0-beta.7 → 0.10.0-beta.8
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 +26 -0
- package/SCHEMAS.md +12 -8
- package/dist/exports.d.ts +143 -3
- package/dist/exports.d.ts.map +1 -1
- package/dist/generated/exports.d.ts +143 -3
- package/dist/generated/exports.d.ts.map +1 -1
- package/dist/generated/lexicons.d.ts +276 -6
- package/dist/generated/lexicons.d.ts.map +1 -1
- package/dist/generated/types/org/hypercerts/claim/activity.d.ts +3 -1
- package/dist/generated/types/org/hypercerts/claim/activity.d.ts.map +1 -1
- package/dist/generated/types/org/hypercerts/defs.d.ts +44 -0
- package/dist/generated/types/org/hypercerts/defs.d.ts.map +1 -1
- package/dist/generated/types/org/hypercerts/helper/workScopeTag.d.ts +31 -0
- package/dist/generated/types/org/hypercerts/helper/workScopeTag.d.ts.map +1 -0
- package/dist/index.cjs +615 -216
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +607 -212
- package/dist/index.mjs.map +1 -1
- package/dist/lexicons.cjs +162 -3
- package/dist/lexicons.cjs.map +1 -1
- package/dist/lexicons.d.ts +276 -6
- package/dist/lexicons.d.ts.map +1 -1
- package/dist/lexicons.mjs +162 -3
- package/dist/lexicons.mjs.map +1 -1
- package/dist/types/org/hypercerts/claim/activity.d.ts +3 -1
- package/dist/types/org/hypercerts/claim/activity.d.ts.map +1 -1
- package/dist/types/org/hypercerts/defs.d.ts +44 -0
- package/dist/types/org/hypercerts/defs.d.ts.map +1 -1
- package/dist/types/org/hypercerts/helper/workScopeTag.d.ts +31 -0
- package/dist/types/org/hypercerts/helper/workScopeTag.d.ts.map +1 -0
- package/lexicons/org/hypercerts/claim/activity.json +8 -3
- package/lexicons/org/hypercerts/defs.json +88 -0
- package/lexicons/org/hypercerts/helper/workScopeTag.json +65 -0
- package/package.json +1 -1
|
@@ -263,9 +263,9 @@ export declare const schemaDict: {
|
|
|
263
263
|
readonly description: "The hypercert visual representation as a URI or image blob.";
|
|
264
264
|
};
|
|
265
265
|
readonly workScope: {
|
|
266
|
-
readonly type: "
|
|
267
|
-
readonly
|
|
268
|
-
readonly description: "
|
|
266
|
+
readonly type: "union";
|
|
267
|
+
readonly refs: ["lex:org.hypercerts.defs#workScopeAll", "lex:org.hypercerts.defs#workScopeAny", "lex:org.hypercerts.defs#workScopeNot", "lex:org.hypercerts.defs#workScopeAtom"];
|
|
268
|
+
readonly description: "Work scope logic expression using boolean operators (all/any/not) and atomic scope references.";
|
|
269
269
|
};
|
|
270
270
|
readonly startDate: {
|
|
271
271
|
readonly type: "string";
|
|
@@ -816,6 +816,79 @@ export declare const schemaDict: {
|
|
|
816
816
|
};
|
|
817
817
|
};
|
|
818
818
|
};
|
|
819
|
+
readonly workScopeAll: {
|
|
820
|
+
readonly type: "object";
|
|
821
|
+
readonly required: ["op", "args"];
|
|
822
|
+
readonly description: "Logical AND operation: all arguments must be satisfied.";
|
|
823
|
+
readonly properties: {
|
|
824
|
+
readonly op: {
|
|
825
|
+
readonly type: "string";
|
|
826
|
+
readonly const: "all";
|
|
827
|
+
readonly description: "Operator type: 'all' (logical AND)";
|
|
828
|
+
};
|
|
829
|
+
readonly args: {
|
|
830
|
+
readonly type: "array";
|
|
831
|
+
readonly items: {
|
|
832
|
+
readonly type: "union";
|
|
833
|
+
readonly refs: ["lex:org.hypercerts.defs#workScopeAll", "lex:org.hypercerts.defs#workScopeAny", "lex:org.hypercerts.defs#workScopeNot", "lex:org.hypercerts.defs#workScopeAtom"];
|
|
834
|
+
};
|
|
835
|
+
readonly minLength: 1;
|
|
836
|
+
readonly maxLength: 100;
|
|
837
|
+
readonly description: "Array of work scope expressions that must all be satisfied";
|
|
838
|
+
};
|
|
839
|
+
};
|
|
840
|
+
};
|
|
841
|
+
readonly workScopeAny: {
|
|
842
|
+
readonly type: "object";
|
|
843
|
+
readonly required: ["op", "args"];
|
|
844
|
+
readonly description: "Logical OR operation: at least one argument must be satisfied.";
|
|
845
|
+
readonly properties: {
|
|
846
|
+
readonly op: {
|
|
847
|
+
readonly type: "string";
|
|
848
|
+
readonly const: "any";
|
|
849
|
+
readonly description: "Operator type: 'any' (logical OR)";
|
|
850
|
+
};
|
|
851
|
+
readonly args: {
|
|
852
|
+
readonly type: "array";
|
|
853
|
+
readonly items: {
|
|
854
|
+
readonly type: "union";
|
|
855
|
+
readonly refs: ["lex:org.hypercerts.defs#workScopeAll", "lex:org.hypercerts.defs#workScopeAny", "lex:org.hypercerts.defs#workScopeNot", "lex:org.hypercerts.defs#workScopeAtom"];
|
|
856
|
+
};
|
|
857
|
+
readonly minLength: 1;
|
|
858
|
+
readonly maxLength: 100;
|
|
859
|
+
readonly description: "Array of work scope expressions, at least one of which must be satisfied";
|
|
860
|
+
};
|
|
861
|
+
};
|
|
862
|
+
};
|
|
863
|
+
readonly workScopeNot: {
|
|
864
|
+
readonly type: "object";
|
|
865
|
+
readonly required: ["op", "arg"];
|
|
866
|
+
readonly description: "Logical NOT operation: the argument must not be satisfied.";
|
|
867
|
+
readonly properties: {
|
|
868
|
+
readonly op: {
|
|
869
|
+
readonly type: "string";
|
|
870
|
+
readonly const: "not";
|
|
871
|
+
readonly description: "Operator type: 'not' (logical NOT)";
|
|
872
|
+
};
|
|
873
|
+
readonly arg: {
|
|
874
|
+
readonly type: "union";
|
|
875
|
+
readonly refs: ["lex:org.hypercerts.defs#workScopeAll", "lex:org.hypercerts.defs#workScopeAny", "lex:org.hypercerts.defs#workScopeNot", "lex:org.hypercerts.defs#workScopeAtom"];
|
|
876
|
+
readonly description: "Work scope expression that must not be satisfied";
|
|
877
|
+
};
|
|
878
|
+
};
|
|
879
|
+
};
|
|
880
|
+
readonly workScopeAtom: {
|
|
881
|
+
readonly type: "object";
|
|
882
|
+
readonly required: ["atom"];
|
|
883
|
+
readonly description: "Atomic scope reference: a strong reference to a scope record.";
|
|
884
|
+
readonly properties: {
|
|
885
|
+
readonly atom: {
|
|
886
|
+
readonly type: "ref";
|
|
887
|
+
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
888
|
+
readonly description: "Strong reference to an org.hypercerts.helper.workScopeTag record";
|
|
889
|
+
};
|
|
890
|
+
};
|
|
891
|
+
};
|
|
819
892
|
};
|
|
820
893
|
};
|
|
821
894
|
readonly OrgHypercertsFundingReceipt: {
|
|
@@ -884,6 +957,68 @@ export declare const schemaDict: {
|
|
|
884
957
|
};
|
|
885
958
|
};
|
|
886
959
|
};
|
|
960
|
+
readonly OrgHypercertsHelperWorkScopeTag: {
|
|
961
|
+
readonly lexicon: 1;
|
|
962
|
+
readonly id: "org.hypercerts.helper.workScopeTag";
|
|
963
|
+
readonly defs: {
|
|
964
|
+
readonly main: {
|
|
965
|
+
readonly type: "record";
|
|
966
|
+
readonly description: "A reusable scope atom for work scope logic expressions. Scopes can represent topics, languages, domains, deliverables, methods, regions, tags, or other categorical labels.";
|
|
967
|
+
readonly key: "tid";
|
|
968
|
+
readonly record: {
|
|
969
|
+
readonly type: "object";
|
|
970
|
+
readonly required: ["createdAt", "key", "label"];
|
|
971
|
+
readonly properties: {
|
|
972
|
+
readonly createdAt: {
|
|
973
|
+
readonly type: "string";
|
|
974
|
+
readonly format: "datetime";
|
|
975
|
+
readonly description: "Client-declared timestamp when this record was originally created";
|
|
976
|
+
};
|
|
977
|
+
readonly key: {
|
|
978
|
+
readonly type: "string";
|
|
979
|
+
readonly description: "Lowercase, hyphenated machine-readable key for this scope (e.g., 'ipfs', 'go-lang', 'filecoin').";
|
|
980
|
+
readonly maxLength: 120;
|
|
981
|
+
};
|
|
982
|
+
readonly label: {
|
|
983
|
+
readonly type: "string";
|
|
984
|
+
readonly description: "Human-readable label for this scope.";
|
|
985
|
+
readonly maxLength: 200;
|
|
986
|
+
};
|
|
987
|
+
readonly kind: {
|
|
988
|
+
readonly type: "string";
|
|
989
|
+
readonly description: "Category type of this scope. Recommended values: topic, language, domain, method, tag.";
|
|
990
|
+
readonly maxLength: 50;
|
|
991
|
+
};
|
|
992
|
+
readonly description: {
|
|
993
|
+
readonly type: "string";
|
|
994
|
+
readonly description: "Optional longer description of this scope.";
|
|
995
|
+
readonly maxLength: 10000;
|
|
996
|
+
readonly maxGraphemes: 1000;
|
|
997
|
+
};
|
|
998
|
+
readonly parent: {
|
|
999
|
+
readonly type: "ref";
|
|
1000
|
+
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
1001
|
+
readonly description: "Optional strong reference to a parent scope record for taxonomy/hierarchy support.";
|
|
1002
|
+
};
|
|
1003
|
+
readonly aliases: {
|
|
1004
|
+
readonly type: "array";
|
|
1005
|
+
readonly items: {
|
|
1006
|
+
readonly type: "string";
|
|
1007
|
+
readonly maxLength: 200;
|
|
1008
|
+
};
|
|
1009
|
+
readonly maxLength: 50;
|
|
1010
|
+
readonly description: "Optional array of alternative names or identifiers for this scope.";
|
|
1011
|
+
};
|
|
1012
|
+
readonly externalReference: {
|
|
1013
|
+
readonly type: "union";
|
|
1014
|
+
readonly refs: ["lex:org.hypercerts.defs#uri", "lex:org.hypercerts.defs#smallBlob"];
|
|
1015
|
+
readonly description: "Optional external reference for this scope as a URI or blob.";
|
|
1016
|
+
};
|
|
1017
|
+
};
|
|
1018
|
+
};
|
|
1019
|
+
};
|
|
1020
|
+
};
|
|
1021
|
+
};
|
|
887
1022
|
};
|
|
888
1023
|
export declare const schemas: ({
|
|
889
1024
|
readonly lexicon: 1;
|
|
@@ -1139,9 +1274,9 @@ export declare const schemas: ({
|
|
|
1139
1274
|
readonly description: "The hypercert visual representation as a URI or image blob.";
|
|
1140
1275
|
};
|
|
1141
1276
|
readonly workScope: {
|
|
1142
|
-
readonly type: "
|
|
1143
|
-
readonly
|
|
1144
|
-
readonly description: "
|
|
1277
|
+
readonly type: "union";
|
|
1278
|
+
readonly refs: ["lex:org.hypercerts.defs#workScopeAll", "lex:org.hypercerts.defs#workScopeAny", "lex:org.hypercerts.defs#workScopeNot", "lex:org.hypercerts.defs#workScopeAtom"];
|
|
1279
|
+
readonly description: "Work scope logic expression using boolean operators (all/any/not) and atomic scope references.";
|
|
1145
1280
|
};
|
|
1146
1281
|
readonly startDate: {
|
|
1147
1282
|
readonly type: "string";
|
|
@@ -1684,6 +1819,79 @@ export declare const schemas: ({
|
|
|
1684
1819
|
};
|
|
1685
1820
|
};
|
|
1686
1821
|
};
|
|
1822
|
+
readonly workScopeAll: {
|
|
1823
|
+
readonly type: "object";
|
|
1824
|
+
readonly required: ["op", "args"];
|
|
1825
|
+
readonly description: "Logical AND operation: all arguments must be satisfied.";
|
|
1826
|
+
readonly properties: {
|
|
1827
|
+
readonly op: {
|
|
1828
|
+
readonly type: "string";
|
|
1829
|
+
readonly const: "all";
|
|
1830
|
+
readonly description: "Operator type: 'all' (logical AND)";
|
|
1831
|
+
};
|
|
1832
|
+
readonly args: {
|
|
1833
|
+
readonly type: "array";
|
|
1834
|
+
readonly items: {
|
|
1835
|
+
readonly type: "union";
|
|
1836
|
+
readonly refs: ["lex:org.hypercerts.defs#workScopeAll", "lex:org.hypercerts.defs#workScopeAny", "lex:org.hypercerts.defs#workScopeNot", "lex:org.hypercerts.defs#workScopeAtom"];
|
|
1837
|
+
};
|
|
1838
|
+
readonly minLength: 1;
|
|
1839
|
+
readonly maxLength: 100;
|
|
1840
|
+
readonly description: "Array of work scope expressions that must all be satisfied";
|
|
1841
|
+
};
|
|
1842
|
+
};
|
|
1843
|
+
};
|
|
1844
|
+
readonly workScopeAny: {
|
|
1845
|
+
readonly type: "object";
|
|
1846
|
+
readonly required: ["op", "args"];
|
|
1847
|
+
readonly description: "Logical OR operation: at least one argument must be satisfied.";
|
|
1848
|
+
readonly properties: {
|
|
1849
|
+
readonly op: {
|
|
1850
|
+
readonly type: "string";
|
|
1851
|
+
readonly const: "any";
|
|
1852
|
+
readonly description: "Operator type: 'any' (logical OR)";
|
|
1853
|
+
};
|
|
1854
|
+
readonly args: {
|
|
1855
|
+
readonly type: "array";
|
|
1856
|
+
readonly items: {
|
|
1857
|
+
readonly type: "union";
|
|
1858
|
+
readonly refs: ["lex:org.hypercerts.defs#workScopeAll", "lex:org.hypercerts.defs#workScopeAny", "lex:org.hypercerts.defs#workScopeNot", "lex:org.hypercerts.defs#workScopeAtom"];
|
|
1859
|
+
};
|
|
1860
|
+
readonly minLength: 1;
|
|
1861
|
+
readonly maxLength: 100;
|
|
1862
|
+
readonly description: "Array of work scope expressions, at least one of which must be satisfied";
|
|
1863
|
+
};
|
|
1864
|
+
};
|
|
1865
|
+
};
|
|
1866
|
+
readonly workScopeNot: {
|
|
1867
|
+
readonly type: "object";
|
|
1868
|
+
readonly required: ["op", "arg"];
|
|
1869
|
+
readonly description: "Logical NOT operation: the argument must not be satisfied.";
|
|
1870
|
+
readonly properties: {
|
|
1871
|
+
readonly op: {
|
|
1872
|
+
readonly type: "string";
|
|
1873
|
+
readonly const: "not";
|
|
1874
|
+
readonly description: "Operator type: 'not' (logical NOT)";
|
|
1875
|
+
};
|
|
1876
|
+
readonly arg: {
|
|
1877
|
+
readonly type: "union";
|
|
1878
|
+
readonly refs: ["lex:org.hypercerts.defs#workScopeAll", "lex:org.hypercerts.defs#workScopeAny", "lex:org.hypercerts.defs#workScopeNot", "lex:org.hypercerts.defs#workScopeAtom"];
|
|
1879
|
+
readonly description: "Work scope expression that must not be satisfied";
|
|
1880
|
+
};
|
|
1881
|
+
};
|
|
1882
|
+
};
|
|
1883
|
+
readonly workScopeAtom: {
|
|
1884
|
+
readonly type: "object";
|
|
1885
|
+
readonly required: ["atom"];
|
|
1886
|
+
readonly description: "Atomic scope reference: a strong reference to a scope record.";
|
|
1887
|
+
readonly properties: {
|
|
1888
|
+
readonly atom: {
|
|
1889
|
+
readonly type: "ref";
|
|
1890
|
+
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
1891
|
+
readonly description: "Strong reference to an org.hypercerts.helper.workScopeTag record";
|
|
1892
|
+
};
|
|
1893
|
+
};
|
|
1894
|
+
};
|
|
1687
1895
|
};
|
|
1688
1896
|
} | {
|
|
1689
1897
|
readonly lexicon: 1;
|
|
@@ -1750,6 +1958,67 @@ export declare const schemas: ({
|
|
|
1750
1958
|
};
|
|
1751
1959
|
};
|
|
1752
1960
|
};
|
|
1961
|
+
} | {
|
|
1962
|
+
readonly lexicon: 1;
|
|
1963
|
+
readonly id: "org.hypercerts.helper.workScopeTag";
|
|
1964
|
+
readonly defs: {
|
|
1965
|
+
readonly main: {
|
|
1966
|
+
readonly type: "record";
|
|
1967
|
+
readonly description: "A reusable scope atom for work scope logic expressions. Scopes can represent topics, languages, domains, deliverables, methods, regions, tags, or other categorical labels.";
|
|
1968
|
+
readonly key: "tid";
|
|
1969
|
+
readonly record: {
|
|
1970
|
+
readonly type: "object";
|
|
1971
|
+
readonly required: ["createdAt", "key", "label"];
|
|
1972
|
+
readonly properties: {
|
|
1973
|
+
readonly createdAt: {
|
|
1974
|
+
readonly type: "string";
|
|
1975
|
+
readonly format: "datetime";
|
|
1976
|
+
readonly description: "Client-declared timestamp when this record was originally created";
|
|
1977
|
+
};
|
|
1978
|
+
readonly key: {
|
|
1979
|
+
readonly type: "string";
|
|
1980
|
+
readonly description: "Lowercase, hyphenated machine-readable key for this scope (e.g., 'ipfs', 'go-lang', 'filecoin').";
|
|
1981
|
+
readonly maxLength: 120;
|
|
1982
|
+
};
|
|
1983
|
+
readonly label: {
|
|
1984
|
+
readonly type: "string";
|
|
1985
|
+
readonly description: "Human-readable label for this scope.";
|
|
1986
|
+
readonly maxLength: 200;
|
|
1987
|
+
};
|
|
1988
|
+
readonly kind: {
|
|
1989
|
+
readonly type: "string";
|
|
1990
|
+
readonly description: "Category type of this scope. Recommended values: topic, language, domain, method, tag.";
|
|
1991
|
+
readonly maxLength: 50;
|
|
1992
|
+
};
|
|
1993
|
+
readonly description: {
|
|
1994
|
+
readonly type: "string";
|
|
1995
|
+
readonly description: "Optional longer description of this scope.";
|
|
1996
|
+
readonly maxLength: 10000;
|
|
1997
|
+
readonly maxGraphemes: 1000;
|
|
1998
|
+
};
|
|
1999
|
+
readonly parent: {
|
|
2000
|
+
readonly type: "ref";
|
|
2001
|
+
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
2002
|
+
readonly description: "Optional strong reference to a parent scope record for taxonomy/hierarchy support.";
|
|
2003
|
+
};
|
|
2004
|
+
readonly aliases: {
|
|
2005
|
+
readonly type: "array";
|
|
2006
|
+
readonly items: {
|
|
2007
|
+
readonly type: "string";
|
|
2008
|
+
readonly maxLength: 200;
|
|
2009
|
+
};
|
|
2010
|
+
readonly maxLength: 50;
|
|
2011
|
+
readonly description: "Optional array of alternative names or identifiers for this scope.";
|
|
2012
|
+
};
|
|
2013
|
+
readonly externalReference: {
|
|
2014
|
+
readonly type: "union";
|
|
2015
|
+
readonly refs: ["lex:org.hypercerts.defs#uri", "lex:org.hypercerts.defs#smallBlob"];
|
|
2016
|
+
readonly description: "Optional external reference for this scope as a URI or blob.";
|
|
2017
|
+
};
|
|
2018
|
+
};
|
|
2019
|
+
};
|
|
2020
|
+
};
|
|
2021
|
+
};
|
|
1753
2022
|
})[];
|
|
1754
2023
|
export declare const lexicons: Lexicons;
|
|
1755
2024
|
export declare function validate<T extends {
|
|
@@ -1775,5 +2044,6 @@ export declare const ids: {
|
|
|
1775
2044
|
readonly OrgHypercertsClaimRights: "org.hypercerts.claim.rights";
|
|
1776
2045
|
readonly OrgHypercertsDefs: "org.hypercerts.defs";
|
|
1777
2046
|
readonly OrgHypercertsFundingReceipt: "org.hypercerts.funding.receipt";
|
|
2047
|
+
readonly OrgHypercertsHelperWorkScopeTag: "org.hypercerts.helper.workScopeTag";
|
|
1778
2048
|
};
|
|
1779
2049
|
//# sourceMappingURL=lexicons.d.ts.map
|
|
@@ -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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"}
|
|
@@ -21,7 +21,9 @@ export interface Main {
|
|
|
21
21
|
image?: $Typed<OrgHypercertsDefs.Uri> | $Typed<OrgHypercertsDefs.SmallImage> | {
|
|
22
22
|
$type: string;
|
|
23
23
|
};
|
|
24
|
-
workScope?:
|
|
24
|
+
workScope?: $Typed<OrgHypercertsDefs.WorkScopeAll> | $Typed<OrgHypercertsDefs.WorkScopeAny> | $Typed<OrgHypercertsDefs.WorkScopeNot> | $Typed<OrgHypercertsDefs.WorkScopeAtom> | {
|
|
25
|
+
$type: string;
|
|
26
|
+
};
|
|
25
27
|
/** When the work began */
|
|
26
28
|
startDate?: string;
|
|
27
29
|
/** When the work ended */
|
|
@@ -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,oBAAoB,MAAM,qCAAqC,CAAA;AAChF,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,sJAAsJ;IACtJ,gBAAgB,EAAE,MAAM,CAAA;IACxB,oFAAoF;IACpF,sBAAsB,CAAC,EAAE,oBAAoB,CAAC,IAAI,EAAE,CAAA;IACpD,8JAA8J;IAC9J,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,+EAA+E;IAC/E,iBAAiB,CAAC,EAAE,oBAAoB,CAAC,IAAI,EAAE,CAAA;IAC/C,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,
|
|
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,oBAAoB,MAAM,qCAAqC,CAAA;AAChF,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,sJAAsJ;IACtJ,gBAAgB,EAAE,MAAM,CAAA;IACxB,oFAAoF;IACpF,sBAAsB,CAAC,EAAE,oBAAoB,CAAC,IAAI,EAAE,CAAA;IACpD,8JAA8J;IAC9J,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,+EAA+E;IAC/E,iBAAiB,CAAC,EAAE,oBAAoB,CAAC,IAAI,EAAE,CAAA;IAC/C,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,EACN,MAAM,CAAC,iBAAiB,CAAC,YAAY,CAAC,GACtC,MAAM,CAAC,iBAAiB,CAAC,YAAY,CAAC,GACtC,MAAM,CAAC,iBAAiB,CAAC,YAAY,CAAC,GACtC,MAAM,CAAC,iBAAiB,CAAC,aAAa,CAAC,GACvC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,CAAA;IACrB,0BAA0B;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,0BAA0B;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,kHAAkH;IAClH,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;IAC5B,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,WAAW;IAC1B,KAAK,CAAC,EAAE,2CAA2C,CAAA;IACnD,mBAAmB,EACf,MAAM,CAAC,mBAAmB,CAAC,GAC3B,MAAM,CAAC,uBAAuB,CAAC,IAAI,CAAC,GACpC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,CAAA;IACrB,yQAAyQ;IACzQ,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,mBAAmB,CAAC,EAChB,MAAM,CAAC,eAAe,CAAC,GACvB,MAAM,CAAC,uBAAuB,CAAC,IAAI,CAAC,GACpC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,CAAA;CACtB;AAID,wBAAgB,aAAa,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,mGAEpC;AAED,wBAAgB,mBAAmB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,qCAE1C;AAED,+DAA+D;AAC/D,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAA;AACxC,wCAAwC;AACxC,MAAM,MAAM,eAAe,GAAG,MAAM,CAAA"}
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
* GENERATED CODE - DO NOT MODIFY
|
|
3
3
|
*/
|
|
4
4
|
import { type ValidationResult, BlobRef } from '@atproto/lexicon';
|
|
5
|
+
import { type $Typed } from '../../../util';
|
|
6
|
+
import type * as ComAtprotoRepoStrongRef from '../../com/atproto/repo/strongRef.js';
|
|
5
7
|
/** Object containing a URI to external data */
|
|
6
8
|
export interface Uri {
|
|
7
9
|
$type?: 'org.hypercerts.defs#uri';
|
|
@@ -42,4 +44,46 @@ export interface LargeImage {
|
|
|
42
44
|
}
|
|
43
45
|
export declare function isLargeImage<V>(v: V): v is import("../../../util").$TypedObject<V, "org.hypercerts.defs", "largeImage">;
|
|
44
46
|
export declare function validateLargeImage<V>(v: V): ValidationResult<LargeImage & V>;
|
|
47
|
+
/** Logical AND operation: all arguments must be satisfied. */
|
|
48
|
+
export interface WorkScopeAll {
|
|
49
|
+
$type?: 'org.hypercerts.defs#workScopeAll';
|
|
50
|
+
/** Operator type: 'all' (logical AND) */
|
|
51
|
+
op: 'all';
|
|
52
|
+
/** Array of work scope expressions that must all be satisfied */
|
|
53
|
+
args: ($Typed<WorkScopeAll> | $Typed<WorkScopeAny> | $Typed<WorkScopeNot> | $Typed<WorkScopeAtom> | {
|
|
54
|
+
$type: string;
|
|
55
|
+
})[];
|
|
56
|
+
}
|
|
57
|
+
export declare function isWorkScopeAll<V>(v: V): v is import("../../../util").$TypedObject<V, "org.hypercerts.defs", "workScopeAll">;
|
|
58
|
+
export declare function validateWorkScopeAll<V>(v: V): ValidationResult<WorkScopeAll & V>;
|
|
59
|
+
/** Logical OR operation: at least one argument must be satisfied. */
|
|
60
|
+
export interface WorkScopeAny {
|
|
61
|
+
$type?: 'org.hypercerts.defs#workScopeAny';
|
|
62
|
+
/** Operator type: 'any' (logical OR) */
|
|
63
|
+
op: 'any';
|
|
64
|
+
/** Array of work scope expressions, at least one of which must be satisfied */
|
|
65
|
+
args: ($Typed<WorkScopeAll> | $Typed<WorkScopeAny> | $Typed<WorkScopeNot> | $Typed<WorkScopeAtom> | {
|
|
66
|
+
$type: string;
|
|
67
|
+
})[];
|
|
68
|
+
}
|
|
69
|
+
export declare function isWorkScopeAny<V>(v: V): v is import("../../../util").$TypedObject<V, "org.hypercerts.defs", "workScopeAny">;
|
|
70
|
+
export declare function validateWorkScopeAny<V>(v: V): ValidationResult<WorkScopeAny & V>;
|
|
71
|
+
/** Logical NOT operation: the argument must not be satisfied. */
|
|
72
|
+
export interface WorkScopeNot {
|
|
73
|
+
$type?: 'org.hypercerts.defs#workScopeNot';
|
|
74
|
+
/** Operator type: 'not' (logical NOT) */
|
|
75
|
+
op: 'not';
|
|
76
|
+
arg: $Typed<WorkScopeAll> | $Typed<WorkScopeAny> | $Typed<WorkScopeNot> | $Typed<WorkScopeAtom> | {
|
|
77
|
+
$type: string;
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
export declare function isWorkScopeNot<V>(v: V): v is import("../../../util").$TypedObject<V, "org.hypercerts.defs", "workScopeNot">;
|
|
81
|
+
export declare function validateWorkScopeNot<V>(v: V): ValidationResult<WorkScopeNot & V>;
|
|
82
|
+
/** Atomic scope reference: a strong reference to a scope record. */
|
|
83
|
+
export interface WorkScopeAtom {
|
|
84
|
+
$type?: 'org.hypercerts.defs#workScopeAtom';
|
|
85
|
+
atom: ComAtprotoRepoStrongRef.Main;
|
|
86
|
+
}
|
|
87
|
+
export declare function isWorkScopeAtom<V>(v: V): v is import("../../../util").$TypedObject<V, "org.hypercerts.defs", "workScopeAtom">;
|
|
88
|
+
export declare function validateWorkScopeAtom<V>(v: V): ValidationResult<WorkScopeAtom & V>;
|
|
45
89
|
//# sourceMappingURL=defs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"defs.d.ts","sourceRoot":"","sources":["../../../../../generated/types/org/hypercerts/defs.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,KAAK,gBAAgB,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAA;
|
|
1
|
+
{"version":3,"file":"defs.d.ts","sourceRoot":"","sources":["../../../../../generated/types/org/hypercerts/defs.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* GENERATED CODE - DO NOT MODIFY
|
|
3
|
+
*/
|
|
4
|
+
import { type ValidationResult } from '@atproto/lexicon';
|
|
5
|
+
import { type $Typed } from '../../../../util';
|
|
6
|
+
import type * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef.js';
|
|
7
|
+
import type * as OrgHypercertsDefs from '../defs.js';
|
|
8
|
+
export interface Main {
|
|
9
|
+
$type: 'org.hypercerts.helper.workScopeTag';
|
|
10
|
+
/** Client-declared timestamp when this record was originally created */
|
|
11
|
+
createdAt: string;
|
|
12
|
+
/** Lowercase, hyphenated machine-readable key for this scope (e.g., 'ipfs', 'go-lang', 'filecoin'). */
|
|
13
|
+
key: string;
|
|
14
|
+
/** Human-readable label for this scope. */
|
|
15
|
+
label: string;
|
|
16
|
+
/** Category type of this scope. Recommended values: topic, language, domain, method, tag. */
|
|
17
|
+
kind?: string;
|
|
18
|
+
/** Optional longer description of this scope. */
|
|
19
|
+
description?: string;
|
|
20
|
+
parent?: ComAtprotoRepoStrongRef.Main;
|
|
21
|
+
/** Optional array of alternative names or identifiers for this scope. */
|
|
22
|
+
aliases?: string[];
|
|
23
|
+
externalReference?: $Typed<OrgHypercertsDefs.Uri> | $Typed<OrgHypercertsDefs.SmallBlob> | {
|
|
24
|
+
$type: string;
|
|
25
|
+
};
|
|
26
|
+
[k: string]: unknown;
|
|
27
|
+
}
|
|
28
|
+
export declare function isMain<V>(v: V): v is import("../../../../util").$TypedObject<V, "org.hypercerts.helper.workScopeTag", "main">;
|
|
29
|
+
export declare function validateMain<V>(v: V): ValidationResult<Main & V>;
|
|
30
|
+
export { type Main as Record, isMain as isRecord, validateMain as validateRecord, };
|
|
31
|
+
//# sourceMappingURL=workScopeTag.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workScopeTag.d.ts","sourceRoot":"","sources":["../../../../../../generated/types/org/hypercerts/helper/workScopeTag.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,uBAAuB,MAAM,wCAAwC,CAAA;AACtF,OAAO,KAAK,KAAK,iBAAiB,MAAM,YAAY,CAAA;AAMpD,MAAM,WAAW,IAAI;IACnB,KAAK,EAAE,oCAAoC,CAAA;IAC3C,wEAAwE;IACxE,SAAS,EAAE,MAAM,CAAA;IACjB,uGAAuG;IACvG,GAAG,EAAE,MAAM,CAAA;IACX,2CAA2C;IAC3C,KAAK,EAAE,MAAM,CAAA;IACb,6FAA6F;IAC7F,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,iDAAiD;IACjD,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,MAAM,CAAC,EAAE,uBAAuB,CAAC,IAAI,CAAA;IACrC,yEAAyE;IACzE,OAAO,CAAC,EAAE,MAAM,EAAE,CAAA;IAClB,iBAAiB,CAAC,EACd,MAAM,CAAC,iBAAiB,CAAC,GAAG,CAAC,GAC7B,MAAM,CAAC,iBAAiB,CAAC,SAAS,CAAC,GACnC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,CAAA;IACrB,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;CACrB;AAID,wBAAgB,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,iGAE7B;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"}
|