@vizabi/reader-ddfcsv 4.3.2 → 4.3.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/dist/reader-ddfcsv-polyfill.js +1 -1
- package/dist/reader-ddfcsv-polyfill.js.map +1 -1
- package/dist/reader-ddfcsv.js +2 -2
- package/dist/reader-ddfcsv.js.map +1 -1
- package/lib/src/ddf-csv.d.ts +2 -1
- package/lib/src/ddf-csv.js +15 -8
- package/lib/src/ddf-csv.js.map +1 -1
- package/lib/src/ddfcsv-reader.js +1 -1
- package/lib/src/ddfcsv-reader.js.map +1 -1
- package/lib/src/resource-selection-optimizer/in-clause-under-conjunction.d.ts +1 -3
- package/lib/src/resource-selection-optimizer/in-clause-under-conjunction.js +38 -83
- package/lib/src/resource-selection-optimizer/in-clause-under-conjunction.js.map +1 -1
- package/lib-web/src/ddf-csv.d.ts +2 -1
- package/lib-web/src/ddf-csv.js +15 -8
- package/lib-web/src/ddf-csv.js.map +1 -1
- package/lib-web/src/ddfcsv-reader.js +1 -1
- package/lib-web/src/ddfcsv-reader.js.map +1 -1
- package/lib-web/src/resource-selection-optimizer/in-clause-under-conjunction.d.ts +1 -3
- package/lib-web/src/resource-selection-optimizer/in-clause-under-conjunction.js +38 -83
- package/lib-web/src/resource-selection-optimizer/in-clause-under-conjunction.js.map +1 -1
- package/package.json +3 -3
- package/src/ddf-csv.ts +13 -9
- package/src/ddfcsv-reader.ts +1 -1
- package/src/resource-selection-optimizer/in-clause-under-conjunction.ts +39 -101
- package/test/definition/datapoints-definition.spec.ts +1 -1
- package/test/main.spec.ts +8 -4
- package/test/result-fixtures/in-clause-under-conjunction-1.json +100 -100
- package/test/result-fixtures/in-clause-under-conjunction-2.json +70169 -70169
- package/test/result-fixtures/multi-instances/entities-sg.json +2 -2
- package/test/tslint.json +3 -2
- package/tslint.json +1 -1
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
{
|
|
353
353
|
"geo": "fra_clipperton",
|
|
354
354
|
"name": "Clipperton",
|
|
355
|
-
"world_4region":
|
|
355
|
+
"world_4region": null,
|
|
356
356
|
"latitude": null,
|
|
357
357
|
"longitude": null
|
|
358
358
|
},
|
|
@@ -597,7 +597,7 @@
|
|
|
597
597
|
{
|
|
598
598
|
"geo": "fra_antarc",
|
|
599
599
|
"name": "French Southern and Antarctic Lands",
|
|
600
|
-
"world_4region":
|
|
600
|
+
"world_4region": null,
|
|
601
601
|
"latitude": null,
|
|
602
602
|
"longitude": null
|
|
603
603
|
},
|
package/test/tslint.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"rules": {
|
|
8
8
|
"no-unused-expression-chai": true,
|
|
9
9
|
"ban-types": false,
|
|
10
|
-
"quotemark":
|
|
10
|
+
"quotemark": false,
|
|
11
11
|
"arrow-parens": false,
|
|
12
12
|
"no-var-requires": false,
|
|
13
13
|
"trailing-comma": false,
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"member-access": false,
|
|
18
18
|
"no-unused-expression": false,
|
|
19
19
|
"ordered-imports": false,
|
|
20
|
-
"max-line-length": false
|
|
20
|
+
"max-line-length": false,
|
|
21
|
+
"no-console": false
|
|
21
22
|
},
|
|
22
23
|
"rulesDirectory": [
|
|
23
24
|
"tslint-no-unused-expression-chai"
|