tango-api-schema 2.1.56 → 2.1.58
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/index.js +9 -1
- package/package.json +1 -1
- package/schema/appVersion.js +33 -0
- package/schema/lenskartEmployeeMapping.model.js +64 -0
- package/schema/locusOrder.model.js +155 -0
- package/schema/locusOrderUser.model.js +15 -0
package/index.js
CHANGED
|
@@ -58,6 +58,10 @@ import domainModel from "./schema/domain.js";
|
|
|
58
58
|
import hotjarModel from "./schema/hotjar.model.js";
|
|
59
59
|
import downloadModel from "./schema/download.js";
|
|
60
60
|
import aiTicketConfigModel from "./schema/aiTicketConfig.js";
|
|
61
|
+
import appVersionModel from "./schema/appVersion.js";
|
|
62
|
+
import lenskartEmployeeMappingModel from "./schema/lenskartEmployeeMapping.model.js";
|
|
63
|
+
import locusOrderModel from "./schema/locusOrder.model.js";
|
|
64
|
+
import locusOrderUserModel from "./schema/locusOrderUser.model.js";
|
|
61
65
|
|
|
62
66
|
|
|
63
67
|
export default {
|
|
@@ -120,5 +124,9 @@ export default {
|
|
|
120
124
|
domainModel,
|
|
121
125
|
hotjarModel,
|
|
122
126
|
downloadModel,
|
|
123
|
-
aiTicketConfigModel
|
|
127
|
+
aiTicketConfigModel,
|
|
128
|
+
appVersionModel,
|
|
129
|
+
lenskartEmployeeMappingModel,
|
|
130
|
+
locusOrderModel,
|
|
131
|
+
locusOrderUserModel,
|
|
124
132
|
};
|
package/package.json
CHANGED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import mongoose from 'mongoose';
|
|
2
|
+
|
|
3
|
+
const appVersionSchema = new mongoose.Schema({
|
|
4
|
+
appName:{
|
|
5
|
+
type: String,
|
|
6
|
+
enum: ['android', 'ios'],
|
|
7
|
+
default: "android"
|
|
8
|
+
},
|
|
9
|
+
appVersion:{
|
|
10
|
+
type: String,
|
|
11
|
+
default: ""
|
|
12
|
+
},
|
|
13
|
+
forceUpdate:{
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false
|
|
16
|
+
},
|
|
17
|
+
createdAt: {
|
|
18
|
+
type: Date,
|
|
19
|
+
default: Date.now
|
|
20
|
+
},
|
|
21
|
+
updatedAt: {
|
|
22
|
+
type: Date,
|
|
23
|
+
default: Date.now
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
strict: true,
|
|
28
|
+
versionKey: false,
|
|
29
|
+
timestamps: true,
|
|
30
|
+
},
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
export default mongoose.model( 'appVersion', appVersionSchema);
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import mongoose from 'mongoose';
|
|
2
|
+
|
|
3
|
+
const lenskartemployeemappingSchema = new mongoose.Schema({
|
|
4
|
+
clientId:{
|
|
5
|
+
type: String,
|
|
6
|
+
},
|
|
7
|
+
facilityCode: {
|
|
8
|
+
type: String
|
|
9
|
+
},
|
|
10
|
+
storeName: {
|
|
11
|
+
type: String
|
|
12
|
+
},
|
|
13
|
+
aomName: {
|
|
14
|
+
type: String
|
|
15
|
+
},
|
|
16
|
+
employeeId: {
|
|
17
|
+
type: String
|
|
18
|
+
},
|
|
19
|
+
zmName: {
|
|
20
|
+
type: String
|
|
21
|
+
},
|
|
22
|
+
zmEmployeeId: {
|
|
23
|
+
type: String
|
|
24
|
+
},
|
|
25
|
+
circleHeadName: {
|
|
26
|
+
type: String
|
|
27
|
+
},
|
|
28
|
+
chEmployeeId: {
|
|
29
|
+
type: String
|
|
30
|
+
},
|
|
31
|
+
mappingType: {
|
|
32
|
+
type: String,
|
|
33
|
+
trim: true,
|
|
34
|
+
enum: ['aom','salesman'],
|
|
35
|
+
},
|
|
36
|
+
employeeIdNew: {
|
|
37
|
+
type: String
|
|
38
|
+
},
|
|
39
|
+
salesmanName: {
|
|
40
|
+
type: String
|
|
41
|
+
},
|
|
42
|
+
salesmanId: {
|
|
43
|
+
type: String
|
|
44
|
+
},
|
|
45
|
+
franchiseId: {
|
|
46
|
+
type: String
|
|
47
|
+
},
|
|
48
|
+
createdAt: {
|
|
49
|
+
type: Date,
|
|
50
|
+
default: Date.now
|
|
51
|
+
},
|
|
52
|
+
updatedAt: {
|
|
53
|
+
type: Date,
|
|
54
|
+
default: Date.now
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
strict: true,
|
|
59
|
+
versionKey: false,
|
|
60
|
+
timestamps: true,
|
|
61
|
+
},
|
|
62
|
+
);
|
|
63
|
+
|
|
64
|
+
export default mongoose.model( 'lenskartemployeemapping', lenskartemployeemappingSchema);
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
import mongoose from 'mongoose';
|
|
2
|
+
|
|
3
|
+
const locusorderSchema = new mongoose.Schema({
|
|
4
|
+
ST_Code: {
|
|
5
|
+
type: String,
|
|
6
|
+
trim: true,
|
|
7
|
+
},
|
|
8
|
+
Address_Full: {
|
|
9
|
+
type: String,
|
|
10
|
+
trim: true,
|
|
11
|
+
},
|
|
12
|
+
Address_Locality: {
|
|
13
|
+
type: String,
|
|
14
|
+
trim: true,
|
|
15
|
+
},
|
|
16
|
+
Address_Landmark: {
|
|
17
|
+
type: String,
|
|
18
|
+
trim: true,
|
|
19
|
+
},
|
|
20
|
+
Address_City: {
|
|
21
|
+
type: String,
|
|
22
|
+
trim: true,
|
|
23
|
+
},
|
|
24
|
+
Address_State: {
|
|
25
|
+
type: String,
|
|
26
|
+
trim: true,
|
|
27
|
+
},
|
|
28
|
+
Address_PIN_Code: {
|
|
29
|
+
type: String,
|
|
30
|
+
trim: true,
|
|
31
|
+
},
|
|
32
|
+
Latitude: {
|
|
33
|
+
type: String,
|
|
34
|
+
trim: true,
|
|
35
|
+
},
|
|
36
|
+
Longitude: {
|
|
37
|
+
type: String,
|
|
38
|
+
trim: true,
|
|
39
|
+
},
|
|
40
|
+
type: {
|
|
41
|
+
type: String,
|
|
42
|
+
trim: true,
|
|
43
|
+
default:'inserted'
|
|
44
|
+
},
|
|
45
|
+
AOM: {
|
|
46
|
+
type: String,
|
|
47
|
+
trim: true,
|
|
48
|
+
},
|
|
49
|
+
AOM_EMP_CODE: {
|
|
50
|
+
type: String,
|
|
51
|
+
trim: true,
|
|
52
|
+
},
|
|
53
|
+
PS_Locus: {
|
|
54
|
+
type: String,
|
|
55
|
+
trim: true,
|
|
56
|
+
},
|
|
57
|
+
Region: {
|
|
58
|
+
type: String,
|
|
59
|
+
trim: true,
|
|
60
|
+
},
|
|
61
|
+
ZM: {
|
|
62
|
+
type: String,
|
|
63
|
+
trim: true,
|
|
64
|
+
},
|
|
65
|
+
Status: {
|
|
66
|
+
type: String,
|
|
67
|
+
trim: true,
|
|
68
|
+
},
|
|
69
|
+
date:{
|
|
70
|
+
type: Date,
|
|
71
|
+
trim: true,
|
|
72
|
+
},
|
|
73
|
+
createdBy: {
|
|
74
|
+
type: String,
|
|
75
|
+
trim: true,
|
|
76
|
+
},
|
|
77
|
+
|
|
78
|
+
Task_ID: {
|
|
79
|
+
type: String,
|
|
80
|
+
trim: true,
|
|
81
|
+
},
|
|
82
|
+
Service_Type: {
|
|
83
|
+
type: String,
|
|
84
|
+
trim: true,
|
|
85
|
+
},
|
|
86
|
+
Customer_Name: {
|
|
87
|
+
type: String,
|
|
88
|
+
trim: true,
|
|
89
|
+
},
|
|
90
|
+
Customer_Contact: {
|
|
91
|
+
type: String,
|
|
92
|
+
trim: true,
|
|
93
|
+
},
|
|
94
|
+
Customer_Address: {
|
|
95
|
+
type: String,
|
|
96
|
+
trim: true,
|
|
97
|
+
},
|
|
98
|
+
City: {
|
|
99
|
+
type: String,
|
|
100
|
+
trim: true,
|
|
101
|
+
},
|
|
102
|
+
State: {
|
|
103
|
+
type: String,
|
|
104
|
+
trim: true,
|
|
105
|
+
},
|
|
106
|
+
Country: {
|
|
107
|
+
type: String,
|
|
108
|
+
trim: true,
|
|
109
|
+
},
|
|
110
|
+
Customer_Zipcode: {
|
|
111
|
+
type: String,
|
|
112
|
+
trim: true,
|
|
113
|
+
},
|
|
114
|
+
Task_Date: {
|
|
115
|
+
type: String,
|
|
116
|
+
trim: true,
|
|
117
|
+
},
|
|
118
|
+
Task_Start_Time: {
|
|
119
|
+
type: String,
|
|
120
|
+
trim: true,
|
|
121
|
+
},
|
|
122
|
+
Task_End_Time: {
|
|
123
|
+
type: String,
|
|
124
|
+
trim: true,
|
|
125
|
+
},
|
|
126
|
+
TAT: {
|
|
127
|
+
type: String,
|
|
128
|
+
trim: true,
|
|
129
|
+
},
|
|
130
|
+
Payment_Method: {
|
|
131
|
+
type: String,
|
|
132
|
+
trim: true,
|
|
133
|
+
},
|
|
134
|
+
Amount: {
|
|
135
|
+
type: String,
|
|
136
|
+
trim: true,
|
|
137
|
+
},
|
|
138
|
+
Note: {
|
|
139
|
+
type: String,
|
|
140
|
+
trim: true,
|
|
141
|
+
},
|
|
142
|
+
user_ID: {
|
|
143
|
+
type: String,
|
|
144
|
+
trim: true,
|
|
145
|
+
},
|
|
146
|
+
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
strict: true,
|
|
150
|
+
versionKey: false,
|
|
151
|
+
timestamps: true,
|
|
152
|
+
},
|
|
153
|
+
);
|
|
154
|
+
|
|
155
|
+
export default mongoose.model( 'locusorder', locusorderSchema);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import mongoose from 'mongoose';
|
|
2
|
+
|
|
3
|
+
const locusorderuserSchema = new mongoose.Schema({
|
|
4
|
+
allowedUsers: {
|
|
5
|
+
type: Array,
|
|
6
|
+
}
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
strict: true,
|
|
10
|
+
versionKey: false,
|
|
11
|
+
timestamps: true,
|
|
12
|
+
},
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
export default mongoose.model( 'locusorderuser', locusorderuserSchema);
|