repzo 1.0.3 → 1.0.4

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/changelog.md CHANGED
@@ -4,6 +4,12 @@
4
4
 
5
5
  ### Added
6
6
 
7
+ - add files src/ [index, client, types], test/ [index] @maramalshen
8
+ - add Services: Product, Variant @maramalshen
9
+ - add Services: Category @maramalshen
10
+ - add Services: SubCategory, Brand, ProductGroup, measureunit, measureunitFamily, media, priceList, priceListItem, teams, Rep, Tag, warehouse, channel, paymentTerm, bank, customList, full_invoice, proforma, payment, cycle, transfer, AdjustInventory @maramalshen
11
+ - update Product schema with populatedKeys @maramalshen
12
+
7
13
  ### Changed
8
14
 
9
15
  ### Fixed
package/package.json CHANGED
@@ -1,26 +1,34 @@
1
- {
2
- "name": "repzo",
3
- "version": "1.0.3",
4
- "description": "Repzo TypeScript SDK",
5
- "main": "./lib/index.js",
6
- "scripts": {
7
- "test": "npm run test",
8
- "build": "tsc"
9
- },
10
- "repository": {
11
- "type": "git",
12
- "url": "git+https://github.com/Repzo/repzo-ts.git"
13
- },
14
- "keywords": [
15
- "repzo"
16
- ],
17
- "author": "mohammad khamis <Mohammad.khamis@repzoapp.com>",
18
- "license": "ISC",
19
- "bugs": {
20
- "url": "https://github.com/Repzo/repzo-ts/issues"
21
- },
22
- "homepage": "https://github.com/Repzo/repzo-ts#readme",
23
- "dependencies": {
24
- "axios": "^0.26.1"
25
- }
26
- }
1
+ {
2
+ "name": "repzo",
3
+ "version": "1.0.4",
4
+ "description": "Repzo TypeScript SDK",
5
+ "main": "./lib/index.js",
6
+ "type": "module",
7
+ "scripts": {
8
+ "test": "npm run test",
9
+ "lint": "npx prettier --write .",
10
+ "build": "tsc"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/Repzo/repzo-ts.git"
15
+ },
16
+ "keywords": [
17
+ "repzo"
18
+ ],
19
+ "author": "mohammad khamis <Mohammad.khamis@repzoapp.com>",
20
+ "license": "ISC",
21
+ "bugs": {
22
+ "url": "https://github.com/Repzo/repzo-ts/issues"
23
+ },
24
+ "homepage": "https://github.com/Repzo/repzo-ts#readme",
25
+ "dependencies": {
26
+ "@babel/parser": "^7.14.7"
27
+ },
28
+ "devDependencies": {
29
+ "prettier": "2.1.2",
30
+ "typescript": "^4.3.4",
31
+ "axios": "^0.26.1"
32
+ },
33
+ "build": "tsc"
34
+ }