@lde/sparql-importer 0.3.1 → 0.4.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/index.d.ts CHANGED
@@ -15,7 +15,8 @@ export interface Importer {
15
15
  export declare class ImportSuccessful {
16
16
  readonly distribution: Distribution;
17
17
  readonly identifier?: string | undefined;
18
- constructor(distribution: Distribution, identifier?: string | undefined);
18
+ readonly tripleCount?: number | undefined;
19
+ constructor(distribution: Distribution, identifier?: string | undefined, tripleCount?: number | undefined);
19
20
  }
20
21
  export declare class ImportFailed {
21
22
  readonly distribution: Distribution;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAErD;;;;;;GAMG;AAEH,MAAM,WAAW,QAAQ;IACvB;;OAEG;IACH,MAAM,CACJ,OAAO,EAAE,OAAO,GACf,OAAO,CAAC,YAAY,GAAG,YAAY,GAAG,gBAAgB,CAAC,CAAC;CAC5D;AAOD,qBAAa,gBAAgB;aAET,YAAY,EAAE,YAAY;aAC1B,UAAU,CAAC,EAAE,MAAM;gBADnB,YAAY,EAAE,YAAY,EAC1B,UAAU,CAAC,EAAE,MAAM,YAAA;CAEtC;AAED,qBAAa,YAAY;aAEL,YAAY,EAAE,YAAY;aAC1B,KAAK,EAAE,MAAM;gBADb,YAAY,EAAE,YAAY,EAC1B,KAAK,EAAE,MAAM;CAEhC;AAED,qBAAa,YAAY;aACK,YAAY,CAAC,EAAE,YAAY;gBAA3B,YAAY,CAAC,EAAE,YAAY,YAAA;CACxD"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAErD;;;;;;GAMG;AAEH,MAAM,WAAW,QAAQ;IACvB;;OAEG;IACH,MAAM,CACJ,OAAO,EAAE,OAAO,GACf,OAAO,CAAC,YAAY,GAAG,YAAY,GAAG,gBAAgB,CAAC,CAAC;CAC5D;AAOD,qBAAa,gBAAgB;aAET,YAAY,EAAE,YAAY;aAC1B,UAAU,CAAC,EAAE,MAAM;aACnB,WAAW,CAAC,EAAE,MAAM;gBAFpB,YAAY,EAAE,YAAY,EAC1B,UAAU,CAAC,EAAE,MAAM,YAAA,EACnB,WAAW,CAAC,EAAE,MAAM,YAAA;CAEvC;AAED,qBAAa,YAAY;aAEL,YAAY,EAAE,YAAY;aAC1B,KAAK,EAAE,MAAM;gBADb,YAAY,EAAE,YAAY,EAC1B,KAAK,EAAE,MAAM;CAEhC;AAED,qBAAa,YAAY;aACK,YAAY,CAAC,EAAE,YAAY;gBAA3B,YAAY,CAAC,EAAE,YAAY,YAAA;CACxD"}
package/dist/index.js CHANGED
@@ -5,9 +5,11 @@
5
5
  export class ImportSuccessful {
6
6
  distribution;
7
7
  identifier;
8
- constructor(distribution, identifier) {
8
+ tripleCount;
9
+ constructor(distribution, identifier, tripleCount) {
9
10
  this.distribution = distribution;
10
11
  this.identifier = identifier;
12
+ this.tripleCount = tripleCount;
11
13
  }
12
14
  }
13
15
  export class ImportFailed {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lde/sparql-importer",
3
- "version": "0.3.1",
3
+ "version": "0.4.0",
4
4
  "repository": {
5
5
  "url": "git+https://github.com/ldelements/lde.git",
6
6
  "directory": "packages/sparql-importer"