repzo 1.0.1 → 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 ADDED
@@ -0,0 +1,19 @@
1
+ # Release Notes
2
+
3
+ ## [v1.0.0 (2022-03-14)](https://github.com/Repzo/repzo-ts.git)
4
+
5
+ ### Added
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
+
13
+ ### Changed
14
+
15
+ ### Fixed
16
+
17
+ ### Removed
18
+
19
+ ## [unreleased (date)](path)
package/package.json CHANGED
@@ -1,25 +1,34 @@
1
- {
2
- "name": "repzo",
3
- "version": "1.0.1",
4
- "description": "Repzo TypeScript SDK",
5
- "main": "index.js",
6
- "scripts": {
7
- "test": "npm run test"
8
- },
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/Repzo/repzo-ts.git"
12
- },
13
- "keywords": [
14
- "repzo"
15
- ],
16
- "author": "mohammad khamis <Mohammad.khamis@repzoapp.com>",
17
- "license": "ISC",
18
- "bugs": {
19
- "url": "https://github.com/Repzo/repzo-ts/issues"
20
- },
21
- "homepage": "https://github.com/Repzo/repzo-ts#readme",
22
- "dependencies": {
23
- "axios": "^0.26.1"
24
- }
25
- }
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
+ }