@ruiapp/rapid-configure-tools 0.2.7 → 0.3.0
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/dist/mod.js
CHANGED
|
@@ -632,6 +632,7 @@ function newModelUpdater(rapidConfigApi) {
|
|
|
632
632
|
"displayPropertyCode",
|
|
633
633
|
"indexes",
|
|
634
634
|
"permissionPolicies",
|
|
635
|
+
"softDelete",
|
|
635
636
|
]);
|
|
636
637
|
if (changedFieldNames.length) {
|
|
637
638
|
console.log(`${this.modelType} ${this.inputTitlePrinter(inputEntity)} changed with these fields:`, changedFieldNames);
|
|
@@ -715,6 +716,7 @@ function newPropertyUpdater(rapidConfigApi) {
|
|
|
715
716
|
"selfIdColumnName",
|
|
716
717
|
"linkTableName",
|
|
717
718
|
"linkDbSchema",
|
|
719
|
+
"entityDeletingReaction",
|
|
718
720
|
"readonly",
|
|
719
721
|
]);
|
|
720
722
|
if (changedFieldNames.length) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ruiapp/rapid-configure-tools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/mod.js",
|
|
6
6
|
"keywords": [],
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"axios-cookiejar-support": "^4.0.7",
|
|
21
21
|
"lodash": "^4.17.21",
|
|
22
22
|
"tough-cookie": "^4.1.3",
|
|
23
|
-
"@ruiapp/rapid-extension": "^0.3.
|
|
23
|
+
"@ruiapp/rapid-extension": "^0.3.32"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {},
|
|
26
26
|
"scripts": {
|
|
@@ -44,6 +44,7 @@ export function newModelUpdater(rapidConfigApi: AxiosInstance) {
|
|
|
44
44
|
"displayPropertyCode",
|
|
45
45
|
"indexes",
|
|
46
46
|
"permissionPolicies",
|
|
47
|
+
"softDelete",
|
|
47
48
|
]);
|
|
48
49
|
if (changedFieldNames.length) {
|
|
49
50
|
console.log(`${this.modelType} ${this.inputTitlePrinter(inputEntity)} changed with these fields:`, changedFieldNames);
|