law-common 11.3.19-beta.0 → 11.3.19-beta.2
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.
|
@@ -241,6 +241,7 @@ export * from "./interface/vendor_tds_challan.entity.interface";
|
|
|
241
241
|
export * from "./model/vendor_tds_challan.entity.model";
|
|
242
242
|
export * from "./flow-configs/vendor_tds_challan_flow.config";
|
|
243
243
|
export * from "./enums/vendor_advance_status_enum";
|
|
244
|
+
export * from "./enums/vendor_advance_payment_mode";
|
|
244
245
|
export * from "./interface/vendor_advance.entity.interface";
|
|
245
246
|
export * from "./model/vendor_advance.entity.model";
|
|
246
247
|
export * from "./flow-configs/vendor_advance_flow.config";
|
|
@@ -257,6 +257,7 @@ __exportStar(require("./interface/vendor_tds_challan.entity.interface"), exports
|
|
|
257
257
|
__exportStar(require("./model/vendor_tds_challan.entity.model"), exports);
|
|
258
258
|
__exportStar(require("./flow-configs/vendor_tds_challan_flow.config"), exports);
|
|
259
259
|
__exportStar(require("./enums/vendor_advance_status_enum"), exports);
|
|
260
|
+
__exportStar(require("./enums/vendor_advance_payment_mode"), exports);
|
|
260
261
|
__exportStar(require("./interface/vendor_advance.entity.interface"), exports);
|
|
261
262
|
__exportStar(require("./model/vendor_advance.entity.model"), exports);
|
|
262
263
|
__exportStar(require("./flow-configs/vendor_advance_flow.config"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "law-common",
|
|
3
|
-
"version": "11.3.19-beta.
|
|
3
|
+
"version": "11.3.19-beta.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
"check-version": "npm view law-common versions --json | jq -r '.[-1]'",
|
|
26
26
|
"script:publish": "node scripts/publish.js",
|
|
27
27
|
"script:publish:latest:beta": "npm run build && node scripts/publish.js prerelease beta && git push",
|
|
28
|
-
"script:publish:latest:patch": "npm run build && node scripts/publish.js patch && git push"
|
|
28
|
+
"script:publish:latest:patch": "npm run build && node scripts/publish.js patch && git push",
|
|
29
|
+
"script:nobuild:publish:latest:beta": "node scripts/publish.js prerelease beta && git push"
|
|
29
30
|
},
|
|
30
31
|
"keywords": [],
|
|
31
32
|
"author": "",
|