@logicsrc/validators 0.1.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.
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +28 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.js +45 -0
- package/dist/index.js.map +1 -0
- package/dist/index.test.d.ts +1 -0
- package/dist/index.test.js +62 -0
- package/dist/index.test.js.map +1 -0
- package/dist/schemas.d.ts +7094 -0
- package/dist/schemas.js +115 -0
- package/dist/schemas.js.map +1 -0
- package/package.json +32 -0
package/dist/schemas.js
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Every LogicSRC JSON Schema, keyed by kind.
|
|
3
|
+
*
|
|
4
|
+
* Schemas are imported through @logicsrc/schemas package exports rather than by
|
|
5
|
+
* a relative path across the repository. A relative import works in the
|
|
6
|
+
* monorepo and breaks the moment this package is published: "../../schemas/..."
|
|
7
|
+
* resolves outside the published tarball, so an installed @logicsrc/validators
|
|
8
|
+
* could not load a single schema.
|
|
9
|
+
*/
|
|
10
|
+
import agentSchema from "@logicsrc/schemas/agent" with { type: "json" };
|
|
11
|
+
import accountAuditEventSchema from "@logicsrc/schemas/account-audit-event" with { type: "json" };
|
|
12
|
+
import accountGrantSchema from "@logicsrc/schemas/account-grant" with { type: "json" };
|
|
13
|
+
import accountProviderSchema from "@logicsrc/schemas/account-provider" with { type: "json" };
|
|
14
|
+
import connectedAccountSchema from "@logicsrc/schemas/connected-account" with { type: "json" };
|
|
15
|
+
import emailMessageSchema from "@logicsrc/schemas/email-message" with { type: "json" };
|
|
16
|
+
import eventSchema from "@logicsrc/schemas/event" with { type: "json" };
|
|
17
|
+
import pluginSchema from "@logicsrc/schemas/plugin" with { type: "json" };
|
|
18
|
+
import pullRequestSchema from "@logicsrc/schemas/pull-request" with { type: "json" };
|
|
19
|
+
import repoSchema from "@logicsrc/schemas/repo" with { type: "json" };
|
|
20
|
+
import runSchema from "@logicsrc/schemas/run" with { type: "json" };
|
|
21
|
+
import socialPostSchema from "@logicsrc/schemas/social-post" with { type: "json" };
|
|
22
|
+
import taskSchema from "@logicsrc/schemas/task" with { type: "json" };
|
|
23
|
+
import agentadAdSchema from "@logicsrc/schemas/agentad-ad" with { type: "json" };
|
|
24
|
+
import agentadPlacementSchema from "@logicsrc/schemas/agentad-placement" with { type: "json" };
|
|
25
|
+
import agentadAdRequestSchema from "@logicsrc/schemas/agentad-ad-request" with { type: "json" };
|
|
26
|
+
import agentadAdResponseSchema from "@logicsrc/schemas/agentad-ad-response" with { type: "json" };
|
|
27
|
+
import agentadImpressionSchema from "@logicsrc/schemas/agentad-impression" with { type: "json" };
|
|
28
|
+
import agentadClickSchema from "@logicsrc/schemas/agentad-click" with { type: "json" };
|
|
29
|
+
import agentadCampaignSchema from "@logicsrc/schemas/agentad-campaign" with { type: "json" };
|
|
30
|
+
import credentialProviderSchema from "@logicsrc/schemas/credential-provider" with { type: "json" };
|
|
31
|
+
import credentialSyncPlanSchema from "@logicsrc/schemas/credential-sync-plan" with { type: "json" };
|
|
32
|
+
import credentialSyncRunSchema from "@logicsrc/schemas/credential-sync-run" with { type: "json" };
|
|
33
|
+
import credentialAuditEventSchema from "@logicsrc/schemas/credential-audit-event" with { type: "json" };
|
|
34
|
+
import openprdPrdSchema from "@logicsrc/schemas/openprd-prd" with { type: "json" };
|
|
35
|
+
import ontologyManifestSchema from "@logicsrc/schemas/openontology-manifest" with { type: "json" };
|
|
36
|
+
import ontologyNamespaceSchema from "@logicsrc/schemas/openontology-namespace" with { type: "json" };
|
|
37
|
+
import ontologyEntityTypeSchema from "@logicsrc/schemas/openontology-entity-type" with { type: "json" };
|
|
38
|
+
import ontologyPropertySchema from "@logicsrc/schemas/openontology-property" with { type: "json" };
|
|
39
|
+
import ontologyRelationshipTypeSchema from "@logicsrc/schemas/openontology-relationship-type" with { type: "json" };
|
|
40
|
+
import ontologyConstraintSchema from "@logicsrc/schemas/openontology-constraint" with { type: "json" };
|
|
41
|
+
import ontologyQuerySchema from "@logicsrc/schemas/openontology-query" with { type: "json" };
|
|
42
|
+
import ontologyActionSchema from "@logicsrc/schemas/openontology-action" with { type: "json" };
|
|
43
|
+
import ontologyEntitySchema from "@logicsrc/schemas/openontology-entity" with { type: "json" };
|
|
44
|
+
import ontologyClaimSchema from "@logicsrc/schemas/openontology-claim" with { type: "json" };
|
|
45
|
+
import ontologySourceSchema from "@logicsrc/schemas/openontology-source" with { type: "json" };
|
|
46
|
+
import ontologyEvidenceSchema from "@logicsrc/schemas/openontology-evidence" with { type: "json" };
|
|
47
|
+
import ontologyChangeSetSchema from "@logicsrc/schemas/openontology-changeset" with { type: "json" };
|
|
48
|
+
import ontologyReviewSchema from "@logicsrc/schemas/openontology-review" with { type: "json" };
|
|
49
|
+
import ontologyApprovalSchema from "@logicsrc/schemas/openontology-approval" with { type: "json" };
|
|
50
|
+
import ontologyEventSchema from "@logicsrc/schemas/openontology-event" with { type: "json" };
|
|
51
|
+
import ontologyPackageSchema from "@logicsrc/schemas/openontology-package" with { type: "json" };
|
|
52
|
+
import ocManifestSchema from "@logicsrc/schemas/opencontext-manifest" with { type: "json" };
|
|
53
|
+
import ocObjectSchema from "@logicsrc/schemas/opencontext-object" with { type: "json" };
|
|
54
|
+
import ocBundleSchema from "@logicsrc/schemas/opencontext-bundle" with { type: "json" };
|
|
55
|
+
import ocRoleSchema from "@logicsrc/schemas/opencontext-role" with { type: "json" };
|
|
56
|
+
import ocProvenanceSchema from "@logicsrc/schemas/opencontext-provenance" with { type: "json" };
|
|
57
|
+
import ocDecisionSchema from "@logicsrc/schemas/opencontext-decision" with { type: "json" };
|
|
58
|
+
import ocDiagnosticSchema from "@logicsrc/schemas/opencontext-diagnostic" with { type: "json" };
|
|
59
|
+
import ocAuditEventSchema from "@logicsrc/schemas/opencontext-audit-event" with { type: "json" };
|
|
60
|
+
export const schemas = {
|
|
61
|
+
agent: agentSchema,
|
|
62
|
+
"account-audit-event": accountAuditEventSchema,
|
|
63
|
+
"account-grant": accountGrantSchema,
|
|
64
|
+
"account-provider": accountProviderSchema,
|
|
65
|
+
"connected-account": connectedAccountSchema,
|
|
66
|
+
"email-message": emailMessageSchema,
|
|
67
|
+
event: eventSchema,
|
|
68
|
+
plugin: pluginSchema,
|
|
69
|
+
"pull-request": pullRequestSchema,
|
|
70
|
+
repo: repoSchema,
|
|
71
|
+
run: runSchema,
|
|
72
|
+
"social-post": socialPostSchema,
|
|
73
|
+
task: taskSchema,
|
|
74
|
+
"agentad-ad": agentadAdSchema,
|
|
75
|
+
"agentad-placement": agentadPlacementSchema,
|
|
76
|
+
"agentad-ad-request": agentadAdRequestSchema,
|
|
77
|
+
"agentad-ad-response": agentadAdResponseSchema,
|
|
78
|
+
"agentad-impression": agentadImpressionSchema,
|
|
79
|
+
"agentad-click": agentadClickSchema,
|
|
80
|
+
"agentad-campaign": agentadCampaignSchema,
|
|
81
|
+
"credential-provider": credentialProviderSchema,
|
|
82
|
+
"credential-sync-plan": credentialSyncPlanSchema,
|
|
83
|
+
"credential-sync-run": credentialSyncRunSchema,
|
|
84
|
+
"credential-audit-event": credentialAuditEventSchema,
|
|
85
|
+
"openprd-prd": openprdPrdSchema,
|
|
86
|
+
"openontology-manifest": ontologyManifestSchema,
|
|
87
|
+
"openontology-namespace": ontologyNamespaceSchema,
|
|
88
|
+
"openontology-entity-type": ontologyEntityTypeSchema,
|
|
89
|
+
"openontology-property": ontologyPropertySchema,
|
|
90
|
+
"openontology-relationship-type": ontologyRelationshipTypeSchema,
|
|
91
|
+
"openontology-constraint": ontologyConstraintSchema,
|
|
92
|
+
"openontology-query": ontologyQuerySchema,
|
|
93
|
+
"openontology-action": ontologyActionSchema,
|
|
94
|
+
"openontology-entity": ontologyEntitySchema,
|
|
95
|
+
"openontology-claim": ontologyClaimSchema,
|
|
96
|
+
"openontology-source": ontologySourceSchema,
|
|
97
|
+
"openontology-evidence": ontologyEvidenceSchema,
|
|
98
|
+
"openontology-changeset": ontologyChangeSetSchema,
|
|
99
|
+
"openontology-review": ontologyReviewSchema,
|
|
100
|
+
"openontology-approval": ontologyApprovalSchema,
|
|
101
|
+
"openontology-event": ontologyEventSchema,
|
|
102
|
+
"openontology-package": ontologyPackageSchema,
|
|
103
|
+
"opencontext-manifest": ocManifestSchema,
|
|
104
|
+
"opencontext-object": ocObjectSchema,
|
|
105
|
+
"opencontext-bundle": ocBundleSchema,
|
|
106
|
+
"opencontext-role": ocRoleSchema,
|
|
107
|
+
"opencontext-provenance": ocProvenanceSchema,
|
|
108
|
+
"opencontext-decision": ocDecisionSchema,
|
|
109
|
+
"opencontext-diagnostic": ocDiagnosticSchema,
|
|
110
|
+
"opencontext-audit-event": ocAuditEventSchema
|
|
111
|
+
};
|
|
112
|
+
export function isSchemaKind(value) {
|
|
113
|
+
return Object.hasOwn(schemas, value);
|
|
114
|
+
}
|
|
115
|
+
//# sourceMappingURL=schemas.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../src/schemas.ts"],"names":[],"mappings":"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"}
|
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@logicsrc/validators",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "LogicSRC schema validation helpers.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"logicsrc-validate": "./dist/cli.js"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsc -p tsconfig.json",
|
|
13
|
+
"test": "vitest run src",
|
|
14
|
+
"validate:fixtures": "node dist/cli.js task ../schemas/fixtures/task.yaml && node dist/cli.js agent ../schemas/fixtures/agent.yaml && node dist/cli.js agentad-ad ../schemas/fixtures/agentad-ad.yaml && node dist/cli.js agentad-placement ../schemas/fixtures/agentad-placement.yaml && node dist/cli.js repo ../schemas/fixtures/repo.yaml && node dist/cli.js pull-request ../schemas/fixtures/pull-request.yaml && node dist/cli.js openontology-manifest ../schemas/fixtures/openontology/valid/manifest.json && node dist/cli.js openontology-claim ../schemas/fixtures/openontology/valid/claim-relationship.json && node dist/cli.js openontology-changeset ../schemas/fixtures/openontology/valid/changeset.json && node dist/cli.js opencontext-manifest ../schemas/fixtures/opencontext/valid/manifest.json && node dist/cli.js opencontext-object ../schemas/fixtures/opencontext/valid/object-policy.json && node dist/cli.js opencontext-bundle ../schemas/fixtures/opencontext/valid/bundle.json && node dist/cli.js opencontext-decision ../schemas/fixtures/opencontext/valid/decision.json && node dist/cli.js opencontext-role ../schemas/fixtures/opencontext/valid/role.json && node dist/cli.js opencontext-provenance ../schemas/fixtures/opencontext/valid/provenance.json && node dist/cli.js opencontext-diagnostic ../schemas/fixtures/opencontext/valid/diagnostic.json && node dist/cli.js opencontext-audit-event ../schemas/fixtures/opencontext/valid/audit-event.json"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@logicsrc/schemas": "^0.1.0",
|
|
18
|
+
"ajv": "^8.17.1",
|
|
19
|
+
"ajv-formats": "^3.0.1",
|
|
20
|
+
"yaml": "^2.8.1"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"vitest": "^4.0.8"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"license": "MIT"
|
|
32
|
+
}
|