cloud-ide-model-schema 1.1.112 → 1.1.114
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.
|
@@ -134,14 +134,10 @@ var admission_application_main = new mongoose_1.Schema({
|
|
|
134
134
|
trim: true
|
|
135
135
|
},
|
|
136
136
|
admap_city_sypin: {
|
|
137
|
-
type:
|
|
138
|
-
ref: "core_pin_code",
|
|
139
|
-
comment: "City - Reference to core_pin_code (sypin_district)"
|
|
137
|
+
type: String
|
|
140
138
|
},
|
|
141
139
|
admap_state_sypin: {
|
|
142
|
-
type:
|
|
143
|
-
ref: "core_pin_code",
|
|
144
|
-
comment: "State - Reference to core_pin_code (sypin_state_name)"
|
|
140
|
+
type: String
|
|
145
141
|
},
|
|
146
142
|
admap_zip_postal_code: {
|
|
147
143
|
type: String,
|
|
@@ -163,14 +159,10 @@ var admission_application_main = new mongoose_1.Schema({
|
|
|
163
159
|
trim: true
|
|
164
160
|
},
|
|
165
161
|
admap_correspondence_city_sypin: {
|
|
166
|
-
type:
|
|
167
|
-
ref: "core_pin_code",
|
|
168
|
-
comment: "Correspondence city - Reference to core_pin_code (sypin_district)"
|
|
162
|
+
type: String
|
|
169
163
|
},
|
|
170
164
|
admap_correspondence_state_sypin: {
|
|
171
|
-
type:
|
|
172
|
-
ref: "core_pin_code",
|
|
173
|
-
comment: "Correspondence state - Reference to core_pin_code (sypin_state_name)"
|
|
165
|
+
type: String
|
|
174
166
|
},
|
|
175
167
|
admap_correspondence_zip_postal_code: {
|
|
176
168
|
type: String,
|
|
@@ -35,6 +35,10 @@ var core_general_master = new mongoose_1.Schema({
|
|
|
35
35
|
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
36
36
|
ref: 'core_system_entity'
|
|
37
37
|
},
|
|
38
|
+
sygms_id_sygms: {
|
|
39
|
+
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
40
|
+
ref: 'core_general_master'
|
|
41
|
+
},
|
|
38
42
|
sygms_isactive: {
|
|
39
43
|
type: Boolean,
|
|
40
44
|
default: true
|
package/package.json
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
{
|
|
2
|
-
"dependencies": {
|
|
3
|
-
"cloud-ide-lms-model": "^1.0.334",
|
|
4
|
-
"dotenv": "^16.5.0",
|
|
5
|
-
"mongoose": "^8.15.0"
|
|
6
|
-
},
|
|
7
|
-
"devDependencies": {
|
|
8
|
-
"@types/node": "^20.17.50",
|
|
9
|
-
"typescript": "^5.8.3"
|
|
10
|
-
},
|
|
11
|
-
"name": "cloud-ide-model-schema",
|
|
12
|
-
"version": "1.1.
|
|
13
|
-
"description": "Pachage for schema management of Cloud IDEsys LMS",
|
|
14
|
-
"main": "lib/index.js",
|
|
15
|
-
"types": "lib/index.d.ts",
|
|
16
|
-
"scripts": {
|
|
17
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
18
|
-
"build": "tsc",
|
|
19
|
-
"prepare": "npm run build"
|
|
20
|
-
},
|
|
21
|
-
"keywords": [
|
|
22
|
-
"CloudIDE",
|
|
23
|
-
"LMS",
|
|
24
|
-
"Schema"
|
|
25
|
-
],
|
|
26
|
-
"repository": {
|
|
27
|
-
"type": "git",
|
|
28
|
-
"url": "https://gitlab.com/lms-schools/cloud-ide-model-schema.git"
|
|
29
|
-
},
|
|
30
|
-
"author": "ankush bhure",
|
|
31
|
-
"license": "ISC",
|
|
32
|
-
"files": [
|
|
33
|
-
"lib/**/*"
|
|
34
|
-
]
|
|
35
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"dependencies": {
|
|
3
|
+
"cloud-ide-lms-model": "^1.0.334",
|
|
4
|
+
"dotenv": "^16.5.0",
|
|
5
|
+
"mongoose": "^8.15.0"
|
|
6
|
+
},
|
|
7
|
+
"devDependencies": {
|
|
8
|
+
"@types/node": "^20.17.50",
|
|
9
|
+
"typescript": "^5.8.3"
|
|
10
|
+
},
|
|
11
|
+
"name": "cloud-ide-model-schema",
|
|
12
|
+
"version": "1.1.114",
|
|
13
|
+
"description": "Pachage for schema management of Cloud IDEsys LMS",
|
|
14
|
+
"main": "lib/index.js",
|
|
15
|
+
"types": "lib/index.d.ts",
|
|
16
|
+
"scripts": {
|
|
17
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
18
|
+
"build": "tsc",
|
|
19
|
+
"prepare": "npm run build"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"CloudIDE",
|
|
23
|
+
"LMS",
|
|
24
|
+
"Schema"
|
|
25
|
+
],
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://gitlab.com/lms-schools/cloud-ide-model-schema.git"
|
|
29
|
+
},
|
|
30
|
+
"author": "ankush bhure",
|
|
31
|
+
"license": "ISC",
|
|
32
|
+
"files": [
|
|
33
|
+
"lib/**/*"
|
|
34
|
+
]
|
|
35
|
+
}
|