@codetanzania/emis-api-client
Advanced tools
Comparing version 0.10.0 to 0.11.0
@@ -0,1 +1,11 @@ | ||
#### 0.11.0 (2019-03-18) | ||
##### Chores | ||
* force latest dependencies ([c3429b71](https://github.com/CodeTanzania/emis-api-client/commit/c3429b717ad22effd6bc07268673c772478662ce)) | ||
##### Bug Fixes | ||
* add default keys for item unit & category predefines ([08162e57](https://github.com/CodeTanzania/emis-api-client/commit/08162e5786b35f5a335123210d7d1bbfb615f32e)) | ||
#### 0.10.0 (2019-03-14) | ||
@@ -2,0 +12,0 @@ |
@@ -919,3 +919,3 @@ import moment from 'moment'; | ||
params: merge({}, DEFAULT_PARAMS, { | ||
filter: { namespace: 'ItemUnit' }, | ||
filter: { namespace: 'ItemUnit', key:'unit' }, | ||
}), | ||
@@ -927,3 +927,3 @@ }, | ||
params: merge({}, DEFAULT_PARAMS, { | ||
filter: { namespace: 'ItemCategory' }, | ||
filter: { namespace: 'ItemCategory', key:'category' }, | ||
}), | ||
@@ -930,0 +930,0 @@ }, |
@@ -925,3 +925,3 @@ 'use strict'; | ||
params: lodash.merge({}, DEFAULT_PARAMS, { | ||
filter: { namespace: 'ItemUnit' }, | ||
filter: { namespace: 'ItemUnit', key:'unit' }, | ||
}), | ||
@@ -933,3 +933,3 @@ }, | ||
params: lodash.merge({}, DEFAULT_PARAMS, { | ||
filter: { namespace: 'ItemCategory' }, | ||
filter: { namespace: 'ItemCategory', key:'category' }, | ||
}), | ||
@@ -936,0 +936,0 @@ }, |
{ | ||
"name": "@codetanzania/emis-api-client", | ||
"version": "0.10.0", | ||
"version": "0.11.0", | ||
"description": "http client for EMIS API.", | ||
@@ -48,3 +48,3 @@ "main": "lib/index.js", | ||
"cz-conventional-changelog": "^2.1.0", | ||
"eslint": "^5.15.1", | ||
"eslint": "^5.15.2", | ||
"eslint-config-airbnb-base": "^13.1.0", | ||
@@ -51,0 +51,0 @@ "eslint-config-prettier": "^4.1.0", |
@@ -148,3 +148,3 @@ import { clone, forEach, merge, upperFirst } from 'lodash'; | ||
params: merge({}, DEFAULT_PARAMS, { | ||
filter: { namespace: 'ItemUnit' }, | ||
filter: { namespace: 'ItemUnit', key: 'unit' }, | ||
}), | ||
@@ -156,3 +156,3 @@ }, | ||
params: merge({}, DEFAULT_PARAMS, { | ||
filter: { namespace: 'ItemCategory' }, | ||
filter: { namespace: 'ItemCategory', key: 'category' }, | ||
}), | ||
@@ -159,0 +159,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
99743