@vizabi/reader-ddfcsv 4.5.1 → 4.5.3
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/README.md +98 -88
- package/dist/reader-ddfcsv-polyfill.js +1 -1
- package/dist/reader-ddfcsv-polyfill.js.map +1 -1
- package/dist/reader-ddfcsv.js +1 -8
- package/lib/src/ddf-csv.js +2 -3
- package/lib/src/ddf-csv.js.map +1 -1
- package/lib/src/ddfcsv-reader.js +2 -3
- package/lib/src/ddfcsv-reader.js.map +1 -1
- package/lib/src/file-readers/github-path-adapter.js +1 -2
- package/lib/src/file-readers/github-path-adapter.js.map +1 -1
- package/lib/src/index.js +2 -2
- package/lib/src/resource-selection-optimizer/index.js +1 -2
- package/lib/src/resource-selection-optimizer/index.js.map +1 -1
- package/lib-web/src/ddf-csv.js +2 -3
- package/lib-web/src/ddf-csv.js.map +1 -1
- package/lib-web/src/ddfcsv-reader.js +2 -3
- package/lib-web/src/ddfcsv-reader.js.map +1 -1
- package/lib-web/src/file-readers/frontend-file-reader.js +0 -1
- package/lib-web/src/file-readers/frontend-file-reader.js.map +1 -1
- package/lib-web/src/file-readers/github-path-adapter.js +1 -2
- package/lib-web/src/file-readers/github-path-adapter.js.map +1 -1
- package/lib-web/src/index-web.js +2 -2
- package/lib-web/src/resource-selection-optimizer/index.js +1 -2
- package/lib-web/src/resource-selection-optimizer/index.js.map +1 -1
- package/package.json +3 -4
- package/src/ddf-csv.ts +1 -1
- package/src/ddfcsv-reader.ts +1 -1
- package/src/file-readers/frontend-file-reader.ts +0 -2
- package/src/resource-selection-optimizer/in-clause-under-conjunction.ts +1 -1
- package/src/test-cases/concepts.ts +1 -1
- package/src/test-cases/entities.ts +1 -1
- package/test/definition/concepts-definition.spec.ts +1 -1
- package/test/definition/entities-definition.spec.ts +1 -1
- package/test/definition/schema-definition.spec.ts +1 -1
- package/test/features-service.spec.ts +1 -1
- package/dist/reader-ddfcsv.js.map +0 -1
|
@@ -8,7 +8,7 @@ import * as includes from 'lodash.includes';
|
|
|
8
8
|
import * as compact from 'lodash.compact';
|
|
9
9
|
import { DdfCsvError } from '../ddfcsv-error';
|
|
10
10
|
import { IDatapackage, IResourceSelectionOptimizer, IResourceRead, IBaseReaderOptions } from '../interfaces';
|
|
11
|
-
import { QueryFeature, featureDetectors, IQuery } from 'ddf-query-validator';
|
|
11
|
+
import { QueryFeature, featureDetectors, IQuery } from '@vizabi/ddf-query-validator';
|
|
12
12
|
|
|
13
13
|
const WHERE_KEYWORD = 'where';
|
|
14
14
|
const JOIN_KEYWORD = 'join';
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
selectValueClauseContainsUnavailableItems1,
|
|
11
11
|
WS_TESTING_PATH
|
|
12
12
|
} from '../common';
|
|
13
|
-
import { RESERVED_CONCEPT, RESERVED_CONCEPT_TYPE, RESERVED_DOMAIN, RESERVED_DRILL_UP } from 'ddf-query-validator';
|
|
13
|
+
import { RESERVED_CONCEPT, RESERVED_CONCEPT_TYPE, RESERVED_DOMAIN, RESERVED_DRILL_UP } from '@vizabi/ddf-query-validator';
|
|
14
14
|
import { description, initData, testsDescriptors } from '../../src/test-cases/concepts';
|
|
15
15
|
import * as path from 'path';
|
|
16
16
|
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
RESERVED_CONCEPT_TYPE,
|
|
20
20
|
RESERVED_DOMAIN,
|
|
21
21
|
RESERVED_DRILL_UP
|
|
22
|
-
} from 'ddf-query-validator';
|
|
22
|
+
} from '@vizabi/ddf-query-validator';
|
|
23
23
|
import { testsDescriptors, initData } from '../../src/test-cases/entities';
|
|
24
24
|
|
|
25
25
|
const expect = chai.expect;
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
selectValueClauseContainsUnavailableItems2,
|
|
10
10
|
tooManyQueryDefinitionErrors, WS_TESTING_PATH
|
|
11
11
|
} from '../common';
|
|
12
|
-
import { CONCEPTS, DATAPOINTS, ENTITIES } from 'ddf-query-validator';
|
|
12
|
+
import { CONCEPTS, DATAPOINTS, ENTITIES } from '@vizabi/ddf-query-validator';
|
|
13
13
|
|
|
14
14
|
const expect = chai.expect;
|
|
15
15
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as chai from 'chai';
|
|
2
2
|
import * as compact from 'lodash.compact';
|
|
3
|
-
import { QueryFeature, featureDetectors } from 'ddf-query-validator';
|
|
3
|
+
import { QueryFeature, featureDetectors } from '@vizabi/ddf-query-validator';
|
|
4
4
|
|
|
5
5
|
const expect = chai.expect;
|
|
6
6
|
const conceptsLookupStub = new Map();
|