pristine-member-nest-api-database 1.0.39 → 1.0.40
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/index.js +1 -1
- package/dist/models/Member.model.js +4 -0
- package/index.ts +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -43,4 +43,4 @@ __exportStar(require("./models/UserRole.model"), exports);
|
|
|
43
43
|
__exportStar(require("./models/VehicleCategory.ir.model"), exports);
|
|
44
44
|
__exportStar(require("./src/dbConnect"), exports);
|
|
45
45
|
//packege version 1.0.37 gs1 changes
|
|
46
|
-
//packege version 1.0.38 application verification without GS1 changes
|
|
46
|
+
//packege version 1.0.38 and 1.0.38 after application(application verification stable 1.0.40) verification without GS1 changes
|
|
@@ -165,6 +165,10 @@ const memberSchema = new mongoose_1.Schema({
|
|
|
165
165
|
required: false,
|
|
166
166
|
default: Date.now,
|
|
167
167
|
},
|
|
168
|
+
salesOrderDocEntry: { type: String, default: "" },
|
|
169
|
+
salesOrderStatus: { type: String, default: "" },
|
|
170
|
+
approveRemarks: { type: String, default: "" },
|
|
171
|
+
rejectRemarks: { type: String, default: "" },
|
|
168
172
|
},
|
|
169
173
|
],
|
|
170
174
|
audit: [
|
package/index.ts
CHANGED
|
@@ -28,4 +28,4 @@ export * from "./models/VehicleCategory.ir.model";
|
|
|
28
28
|
export * from "./src/dbConnect";
|
|
29
29
|
|
|
30
30
|
//packege version 1.0.37 gs1 changes
|
|
31
|
-
//packege version 1.0.38 and 1.0.38 after application(application verification stable 1.0.
|
|
31
|
+
//packege version 1.0.38 and 1.0.38 after application(application verification stable 1.0.40) verification without GS1 changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pristine-member-nest-api-database",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.40",
|
|
4
|
+
"description": "application verification stable version without GS1",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"keywords": [
|
|
10
10
|
"member-nest"
|
|
11
11
|
],
|
|
12
|
-
"author": "
|
|
12
|
+
"author": "Pristine Solutions",
|
|
13
13
|
"license": "ISC",
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"mongoose": "^8.1.3",
|