@comunica/actor-dereference-rdf-parse 2.4.2 → 2.5.1-alpha.32.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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ActorDereferenceRdfParse.js","sourceRoot":"","sources":["ActorDereferenceRdfParse.ts"],"names":[],"mappings":";;;AAEA,uEAAoE;AAGpE;;GAEG;AACH,MAAa,wBAAyB,SAAQ,yCAAmB;IAC/D;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACH,YAAmB,IAA8B;QAC/C,KAAK,CAAC,IAAI,CAAC,CAAC;IACd,CAAC;IAEM,KAAK,CAAC,WAAW,CAAC,WAAoC;QAC3D,OAAO,EAAE,OAAO,EAAE,WAAW,CAAC,GAAG,EAAE,CAAC;IACtC,CAAC;CACF;AAhCD,4DAgCC","sourcesContent":["import type { IActorDereferenceOutput } from '@comunica/bus-dereference';\nimport type { IActorDereferenceRdfArgs } from '@comunica/bus-dereference-rdf';\nimport { ActorDereferenceRdf } from '@comunica/bus-dereference-rdf';\nimport type { IActionRdfParseMetadata } from '@comunica/bus-rdf-parse';\n\n/**\n * A comunica Parse Dereference RDF Actor.\n */\nexport class ActorDereferenceRdfParse extends ActorDereferenceRdf {\n /**\n * @param args - @defaultNested {{\n * \"ttl\": \"text/turtle\",\n * \"turtle\": \"text/turtle\",\n * \"nt\": \"application/n-triples\",\n * \"ntriples\": \"application/n-triples\",\n * \"nq\": \"application/n-quads\",\n * \"nquads\": \"application/n-quads\",\n * \"rdf\": \"application/rdf+xml\",\n * \"rdfxml\": \"application/rdf+xml\",\n * \"owl\": \"application/rdf+xml\",\n * \"n3\": \"text/n3\",\n * \"trig\": \"application/trig\",\n * \"jsonld\": \"application/ld+json\",\n * \"json\": \"application/json\",\n * \"html\": \"text/html\",\n * \"htm\": \"text/html\",\n * \"xhtml\": \"application/xhtml+xml\",\n * \"xht\": \"application/xhtml+xml\",\n * \"xml\": \"application/xml\",\n * \"svg\": \"image/svg+xml\",\n * \"svgz\": \"image/svg+xml\"\n * }} mediaMappings\n */\n public constructor(args: IActorDereferenceRdfArgs) {\n super(args);\n }\n\n public async getMetadata(dereference: IActorDereferenceOutput): Promise<IActionRdfParseMetadata> {\n return { baseIRI: dereference.url };\n }\n}\n\nexport interface IActorDereferenceRdfParseArgs extends IActorDereferenceRdfArgs {\n\n}\n"]}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA2C","sourcesContent":["export * from './ActorDereferenceRdfParse';\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comunica/actor-dereference-rdf-parse",
3
- "version": "2.4.2",
3
+ "version": "2.5.1-alpha.32.0",
4
4
  "description": "A parse dereference-rdf actor",
5
5
  "lsd:module": true,
6
6
  "main": "lib/index.js",
@@ -29,17 +29,18 @@
29
29
  "files": [
30
30
  "components",
31
31
  "lib/**/*.d.ts",
32
- "lib/**/*.js"
32
+ "lib/**/*.js",
33
+ "lib/**/*.js.map"
33
34
  ],
34
35
  "dependencies": {
35
- "@comunica/bus-dereference": "^2.4.2",
36
- "@comunica/bus-dereference-rdf": "^2.4.2",
37
- "@comunica/bus-rdf-parse": "^2.4.0"
36
+ "@comunica/bus-dereference": "2.5.1-alpha.32.0",
37
+ "@comunica/bus-dereference-rdf": "2.5.1-alpha.32.0",
38
+ "@comunica/bus-rdf-parse": "2.5.1-alpha.32.0"
38
39
  },
39
40
  "scripts": {
40
41
  "build": "npm run build:ts && npm run build:components",
41
42
  "build:ts": "node \"../../node_modules/typescript/bin/tsc\"",
42
43
  "build:components": "componentsjs-generator"
43
44
  },
44
- "gitHead": "ead42818468757f23a7837969e14b83cf19c4438"
45
+ "gitHead": "3f04fbcb28737ec68227d694c127236ecf46235d"
45
46
  }