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 +6 -0
- package/package.json +34 -26
- package/src/index.ts +1298 -6
- package/src/types/index.ts +3245 -30
- package/test.ts +1 -0
- package/tsconfig.json +1 -1
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.
|
|
4
|
-
"description": "Repzo TypeScript SDK",
|
|
5
|
-
"main": "./lib/index.js",
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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
|
+
}
|