cloud-ide-model-schema 1.1.68 → 1.1.69
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CoreSystemEntity } from "cloud-ide-lms-model";
|
|
2
2
|
import mongoose from "mongoose";
|
|
3
|
-
declare const CCoreSyen: mongoose.Model<
|
|
3
|
+
declare const CCoreSyen: mongoose.Model<CoreSystemEntity, {}, {}, {}, mongoose.Document<unknown, {}, CoreSystemEntity, {}> & CoreSystemEntity & Required<{
|
|
4
4
|
_id: string;
|
|
5
5
|
}> & {
|
|
6
6
|
__v: number;
|
|
@@ -14,7 +14,7 @@ var core_system_entity = new mongoose_1.Schema({
|
|
|
14
14
|
maxlength: 150,
|
|
15
15
|
trim: true
|
|
16
16
|
},
|
|
17
|
-
|
|
17
|
+
syen_entity_type_sygms: {
|
|
18
18
|
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
19
19
|
ref: "core_general_master"
|
|
20
20
|
},
|
|
@@ -46,11 +46,9 @@ var core_system_entity = new mongoose_1.Schema({
|
|
|
46
46
|
maxlength: 40,
|
|
47
47
|
trim: true
|
|
48
48
|
},
|
|
49
|
-
|
|
50
|
-
type:
|
|
51
|
-
|
|
52
|
-
maxlength: 50,
|
|
53
|
-
trim: true
|
|
49
|
+
syen_corporate_country_syctr: {
|
|
50
|
+
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
51
|
+
ref: "core_system_country"
|
|
54
52
|
},
|
|
55
53
|
syen_corporate_contact_person_user: {
|
|
56
54
|
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
@@ -121,7 +119,7 @@ var core_system_entity = new mongoose_1.Schema({
|
|
|
121
119
|
maxlength: 40,
|
|
122
120
|
trim: true
|
|
123
121
|
},
|
|
124
|
-
|
|
122
|
+
syen_registered_country_syctr: {
|
|
125
123
|
type: String,
|
|
126
124
|
minlength: 0,
|
|
127
125
|
maxlength: 50,
|
|
@@ -163,7 +161,7 @@ var core_system_entity = new mongoose_1.Schema({
|
|
|
163
161
|
maxlength: 50,
|
|
164
162
|
trim: true
|
|
165
163
|
},
|
|
166
|
-
|
|
164
|
+
syen_photo_id_cyfm: {
|
|
167
165
|
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
168
166
|
ref: "auth_user_mst"
|
|
169
167
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"dependencies": {
|
|
3
|
-
"cloud-ide-lms-model": "^1.0.
|
|
3
|
+
"cloud-ide-lms-model": "^1.0.221",
|
|
4
4
|
"dotenv": "^16.5.0",
|
|
5
5
|
"mongoose": "^8.15.0"
|
|
6
6
|
},
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"typescript": "^5.8.3"
|
|
10
10
|
},
|
|
11
11
|
"name": "cloud-ide-model-schema",
|
|
12
|
-
"version": "1.1.
|
|
12
|
+
"version": "1.1.69",
|
|
13
13
|
"description": "Pachage for schema management of Cloud IDEsys LMS",
|
|
14
14
|
"main": "lib/index.js",
|
|
15
15
|
"types": "lib/index.d.ts",
|