cloud-ide-model-schema 1.0.23 → 1.1.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/lib/index.d.ts +1 -3
- package/lib/index.js +1 -3
- package/lib/schema/auth/auth_logses.d.ts +2 -14
- package/lib/schema/auth/auth_logses.js +0 -1
- package/lib/schema/auth/auth_mpin.d.ts +30 -0
- package/lib/schema/auth/auth_mpin.js +46 -0
- package/lib/schema/auth/auth_user_mst.d.ts +2 -30
- package/lib/schema/auth/auth_user_mst.js +0 -1
- package/lib/schema/auth/index.d.ts +4 -4
- package/lib/schema/auth/index.js +3 -4
- package/lib/schema/core/core_entity_mapping.d.ts +2 -11
- package/lib/schema/core/core_entity_mapping.js +0 -1
- package/lib/schema/core/core_general_master.d.ts +2 -11
- package/lib/schema/core/core_general_master.js +0 -1
- package/lib/schema/core/core_general_master_type.d.ts +2 -9
- package/lib/schema/core/core_general_master_type.js +0 -1
- package/lib/schema/core/core_page_controls.d.ts +2 -19
- package/lib/schema/core/core_page_controls.js +0 -1
- package/lib/schema/core/core_page_grid.d.ts +2 -8
- package/lib/schema/core/core_page_grid.js +0 -1
- package/lib/schema/core/core_page_tab.d.ts +2 -15
- package/lib/schema/core/core_page_tab.js +0 -1
- package/lib/schema/core/core_pin_code.d.ts +2 -16
- package/lib/schema/core/core_pin_code.js +0 -1
- package/lib/schema/core/core_system_config.d.ts +2 -9
- package/lib/schema/core/core_system_config.js +1 -9
- package/lib/schema/core/core_system_entity.d.ts +2 -35
- package/lib/schema/core/core_system_entity.js +0 -1
- package/lib/schema/core/core_system_logs.d.ts +2 -24
- package/lib/schema/core/core_system_logs.js +1 -9
- package/lib/schema/core/core_system_menu.d.ts +2 -14
- package/lib/schema/core/core_system_menu.js +1 -9
- package/lib/schema/core/core_system_pages.d.ts +2 -11
- package/lib/schema/core/core_system_pages.js +1 -9
- package/lib/schema/core/core_system_pages_theme.d.ts +2 -12
- package/lib/schema/core/core_system_pages_theme.js +1 -9
- package/lib/schema/core/index.d.ts +14 -14
- package/lib/schema/core/index.js +1 -6
- package/lib/schema/email/email_list.d.ts +30 -0
- package/lib/schema/email/email_list.js +34 -0
- package/lib/schema/email/email_log.d.ts +30 -0
- package/lib/schema/email/email_log.js +50 -0
- package/lib/schema/email/email_reference.d.ts +30 -0
- package/lib/schema/email/email_reference.js +35 -0
- package/lib/schema/email/email_subscription_vendor.d.ts +30 -0
- package/lib/schema/email/email_subscription_vendor.js +61 -0
- package/lib/schema/email/email_templete.d.ts +30 -0
- package/lib/schema/email/email_templete.js +33 -0
- package/lib/schema/email/email_vendor.d.ts +30 -0
- package/lib/schema/email/email_vendor.js +33 -0
- package/lib/schema/email/index.d.ts +7 -7
- package/lib/schema/email/index.js +13 -19
- package/package.json +10 -3
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -15,10 +15,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.connectDB = void 0;
|
|
18
|
-
__exportStar(require("./
|
|
18
|
+
__exportStar(require("./schema"), exports);
|
|
19
19
|
__exportStar(require("./config"), exports);
|
|
20
|
-
__exportStar(require("./model"), exports);
|
|
21
|
-
__exportStar(require("./utilities"), exports);
|
|
22
20
|
/* database config */
|
|
23
21
|
var config_1 = require("./config");
|
|
24
22
|
Object.defineProperty(exports, "connectDB", { enumerable: true, get: function () { return config_1.connectDB; } });
|
|
@@ -22,21 +22,9 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ILogses } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
|
-
interface ILogses {
|
|
27
|
-
_id: string;
|
|
28
|
-
logses_id_user: string;
|
|
29
|
-
logses_start_dtm: Date;
|
|
30
|
-
logses_end_dtm: Date;
|
|
31
|
-
logses_end_max_dtm: Date;
|
|
32
|
-
logses_token: string;
|
|
33
|
-
logses_user_ask_mpin: string;
|
|
34
|
-
logses_last_id_logses: string;
|
|
35
|
-
logses_sequence: number;
|
|
36
|
-
logses_isactive: boolean;
|
|
37
|
-
}
|
|
38
27
|
declare const Clogses: mongoose.Model<ILogses, {}, {}, {}, mongoose.Document<unknown, {}, ILogses> & ILogses & Required<{
|
|
39
28
|
_id: string;
|
|
40
29
|
}>, any>;
|
|
41
|
-
export {
|
|
42
|
-
Clogses };
|
|
30
|
+
export { Clogses };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/// <reference types="mongoose/types/aggregate" />
|
|
2
|
+
/// <reference types="mongoose/types/callback" />
|
|
3
|
+
/// <reference types="mongoose/types/collection" />
|
|
4
|
+
/// <reference types="mongoose/types/connection" />
|
|
5
|
+
/// <reference types="mongoose/types/cursor" />
|
|
6
|
+
/// <reference types="mongoose/types/document" />
|
|
7
|
+
/// <reference types="mongoose/types/error" />
|
|
8
|
+
/// <reference types="mongoose/types/expressions" />
|
|
9
|
+
/// <reference types="mongoose/types/helpers" />
|
|
10
|
+
/// <reference types="mongoose/types/middlewares" />
|
|
11
|
+
/// <reference types="mongoose/types/indexes" />
|
|
12
|
+
/// <reference types="mongoose/types/models" />
|
|
13
|
+
/// <reference types="mongoose/types/mongooseoptions" />
|
|
14
|
+
/// <reference types="mongoose/types/pipelinestage" />
|
|
15
|
+
/// <reference types="mongoose/types/populate" />
|
|
16
|
+
/// <reference types="mongoose/types/query" />
|
|
17
|
+
/// <reference types="mongoose/types/schemaoptions" />
|
|
18
|
+
/// <reference types="mongoose/types/schematypes" />
|
|
19
|
+
/// <reference types="mongoose/types/session" />
|
|
20
|
+
/// <reference types="mongoose/types/types" />
|
|
21
|
+
/// <reference types="mongoose/types/utility" />
|
|
22
|
+
/// <reference types="mongoose/types/validation" />
|
|
23
|
+
/// <reference types="mongoose/types/virtuals" />
|
|
24
|
+
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { IMpin } from "cloud-ide-lms-model";
|
|
26
|
+
import mongoose from "mongoose";
|
|
27
|
+
declare const CMpin: mongoose.Model<IMpin, {}, {}, {}, mongoose.Document<unknown, {}, IMpin> & IMpin & {
|
|
28
|
+
_id: mongoose.Types.ObjectId;
|
|
29
|
+
}, any>;
|
|
30
|
+
export { CMpin };
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CMpin = void 0;
|
|
4
|
+
var mongoose_1 = require("mongoose");
|
|
5
|
+
/* SCHEMA START */
|
|
6
|
+
var auth_mpin = new mongoose_1.Schema({
|
|
7
|
+
mpin_id_user: {
|
|
8
|
+
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
9
|
+
ref: 'auth_user_mst',
|
|
10
|
+
required: true,
|
|
11
|
+
comment: "User unique primery key, reference user"
|
|
12
|
+
},
|
|
13
|
+
mpin_pin: {
|
|
14
|
+
type: Number,
|
|
15
|
+
require: true,
|
|
16
|
+
unique: true,
|
|
17
|
+
minlength: 6,
|
|
18
|
+
minlenght: 6
|
|
19
|
+
},
|
|
20
|
+
mpin_generation_dtm: {
|
|
21
|
+
type: Date,
|
|
22
|
+
required: true,
|
|
23
|
+
default: new Date()
|
|
24
|
+
},
|
|
25
|
+
mpin_expiry_dtm: {
|
|
26
|
+
type: Date,
|
|
27
|
+
required: true,
|
|
28
|
+
default: new Date()
|
|
29
|
+
},
|
|
30
|
+
mpin_used: {
|
|
31
|
+
type: Boolean,
|
|
32
|
+
default: false
|
|
33
|
+
},
|
|
34
|
+
mpin_id_logses: {
|
|
35
|
+
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
36
|
+
comment: "logses session table, whre loggin id is stored which used the mpin",
|
|
37
|
+
trim: true
|
|
38
|
+
},
|
|
39
|
+
mpin_isactive: {
|
|
40
|
+
type: Boolean,
|
|
41
|
+
default: true,
|
|
42
|
+
comment: "automaticaly expire when expiry time completes, when authenticator is refreshed new key generates and this will set to false"
|
|
43
|
+
}
|
|
44
|
+
}, { collection: 'auth_mpin' });
|
|
45
|
+
var CMpin = mongoose_1.default.model("auth_mpin", auth_mpin);
|
|
46
|
+
exports.CMpin = CMpin;
|
|
@@ -22,37 +22,9 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { IUser } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
|
-
interface IUser {
|
|
27
|
-
_id?: string;
|
|
28
|
-
user_id_ent?: string;
|
|
29
|
-
user_username?: string;
|
|
30
|
-
user_firstname?: string;
|
|
31
|
-
user_middlename?: string;
|
|
32
|
-
user_lastname?: string;
|
|
33
|
-
user_fullname?: string;
|
|
34
|
-
user_emailid?: string;
|
|
35
|
-
user_mobileno?: number;
|
|
36
|
-
user_password?: string;
|
|
37
|
-
user_activefrom?: Date;
|
|
38
|
-
user_activeupto?: Date;
|
|
39
|
-
user_photo_id_fm?: string;
|
|
40
|
-
user_passwordchangeonlogin?: boolean;
|
|
41
|
-
user_id_role?: string;
|
|
42
|
-
user_id_desg?: string;
|
|
43
|
-
user_id_dept?: string;
|
|
44
|
-
user_permissions?: IUserPermissions[];
|
|
45
|
-
user_isactive?: boolean;
|
|
46
|
-
}
|
|
47
|
-
interface IUserPermissions {
|
|
48
|
-
_id: string;
|
|
49
|
-
create?: boolean;
|
|
50
|
-
read?: boolean;
|
|
51
|
-
update?: boolean;
|
|
52
|
-
delete?: boolean;
|
|
53
|
-
}
|
|
54
27
|
declare const CUser: mongoose.Model<IUser, {}, {}, {}, mongoose.Document<unknown, {}, IUser> & IUser & Required<{
|
|
55
28
|
_id: string;
|
|
56
29
|
}>, any>;
|
|
57
|
-
export {
|
|
58
|
-
IUserPermissions, CUser };
|
|
30
|
+
export { CUser };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CUser
|
|
2
|
-
import { Clogses
|
|
3
|
-
import {
|
|
4
|
-
export { CUser,
|
|
1
|
+
import { CUser } from "./auth_user_mst";
|
|
2
|
+
import { Clogses } from './auth_logses';
|
|
3
|
+
import { CMpin } from './auth_mpin';
|
|
4
|
+
export { CUser, Clogses, CMpin };
|
package/lib/schema/auth/index.js
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CMpin = exports.
|
|
3
|
+
exports.CMpin = exports.Clogses = exports.CUser = void 0;
|
|
4
4
|
var auth_user_mst_1 = require("./auth_user_mst");
|
|
5
5
|
Object.defineProperty(exports, "CUser", { enumerable: true, get: function () { return auth_user_mst_1.CUser; } });
|
|
6
6
|
var auth_logses_1 = require("./auth_logses");
|
|
7
7
|
Object.defineProperty(exports, "Clogses", { enumerable: true, get: function () { return auth_logses_1.Clogses; } });
|
|
8
|
-
var
|
|
9
|
-
Object.defineProperty(exports, "
|
|
10
|
-
Object.defineProperty(exports, "CMpin", { enumerable: true, get: function () { return mpin_1.CMpin; } });
|
|
8
|
+
var auth_mpin_1 = require("./auth_mpin");
|
|
9
|
+
Object.defineProperty(exports, "CMpin", { enumerable: true, get: function () { return auth_mpin_1.CMpin; } });
|
|
@@ -22,18 +22,9 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ICoreSyenm } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
|
-
interface ICoreSyenm {
|
|
27
|
-
_id?: string;
|
|
28
|
-
syenm_id_user?: string;
|
|
29
|
-
syenm_id_syen?: string;
|
|
30
|
-
syenm_id_logses?: string;
|
|
31
|
-
syenm_isactive?: boolean;
|
|
32
|
-
syenm_isdefault?: boolean;
|
|
33
|
-
syenm_isloggedin?: boolean;
|
|
34
|
-
}
|
|
35
27
|
declare const CCoreSyenm: mongoose.Model<ICoreSyenm, {}, {}, {}, mongoose.Document<unknown, {}, ICoreSyenm> & ICoreSyenm & Required<{
|
|
36
28
|
_id: string;
|
|
37
29
|
}>, any>;
|
|
38
|
-
export {
|
|
39
|
-
CCoreSyenm };
|
|
30
|
+
export { CCoreSyenm };
|
|
@@ -22,18 +22,9 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ICoreSygms } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
|
-
interface ICoreSygms {
|
|
27
|
-
_id: string;
|
|
28
|
-
sygms_id_sygmt: string;
|
|
29
|
-
sygms_code: string;
|
|
30
|
-
sygms_title: string;
|
|
31
|
-
sygms_desc: string;
|
|
32
|
-
sygms_isactive: boolean;
|
|
33
|
-
sygms_configuration: object;
|
|
34
|
-
}
|
|
35
27
|
declare const CCoreSygms: mongoose.Model<ICoreSygms, {}, {}, {}, mongoose.Document<unknown, {}, ICoreSygms> & ICoreSygms & Required<{
|
|
36
28
|
_id: string;
|
|
37
29
|
}>, any>;
|
|
38
|
-
export {
|
|
39
|
-
CCoreSygms };
|
|
30
|
+
export { CCoreSygms };
|
|
@@ -22,16 +22,9 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ICoreSygmt } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
|
-
interface ICoreSygmt {
|
|
27
|
-
_id: string;
|
|
28
|
-
sygmt_code: string;
|
|
29
|
-
sygmt_title: string;
|
|
30
|
-
sygmt_desc: string;
|
|
31
|
-
sygmt_isactive: boolean;
|
|
32
|
-
}
|
|
33
27
|
declare const CCoreSygmt: mongoose.Model<ICoreSygmt, {}, {}, {}, mongoose.Document<unknown, {}, ICoreSygmt> & ICoreSygmt & Required<{
|
|
34
28
|
_id: string;
|
|
35
29
|
}>, any>;
|
|
36
|
-
export {
|
|
37
|
-
CCoreSygmt };
|
|
30
|
+
export { CCoreSygmt };
|
|
@@ -22,26 +22,9 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ICoreSypc } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
|
-
interface ICoreSypc {
|
|
27
|
-
_id?: string;
|
|
28
|
-
sypc_key: string;
|
|
29
|
-
sypc_type?: string;
|
|
30
|
-
sypc_placeholder?: string;
|
|
31
|
-
sypc_auto_complete?: string;
|
|
32
|
-
sypc_page_id_sypg?: string;
|
|
33
|
-
sypc_title?: string;
|
|
34
|
-
sypc_min_length?: number;
|
|
35
|
-
sypc_max_length?: number;
|
|
36
|
-
sypc_regex?: string;
|
|
37
|
-
sypc_required?: boolean;
|
|
38
|
-
sypc_tooltip?: string;
|
|
39
|
-
sypc_disabled?: boolean;
|
|
40
|
-
sypc_default?: boolean | string | number;
|
|
41
|
-
sypc_isactive?: boolean;
|
|
42
|
-
}
|
|
43
27
|
declare const CCoreSypc: mongoose.Model<ICoreSypc, {}, {}, {}, mongoose.Document<unknown, {}, ICoreSypc> & ICoreSypc & Required<{
|
|
44
28
|
_id: string;
|
|
45
29
|
}>, any>;
|
|
46
|
-
export {
|
|
47
|
-
CCoreSypc };
|
|
30
|
+
export { CCoreSypc };
|
|
@@ -22,15 +22,9 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ICoreSypgr } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
|
-
interface ICoreSypgr {
|
|
27
|
-
_id?: string;
|
|
28
|
-
sypgr_grid_code: string;
|
|
29
|
-
sypgr_title?: string;
|
|
30
|
-
sypgr_isactive?: boolean;
|
|
31
|
-
}
|
|
32
27
|
declare const CCoreSypgr: mongoose.Model<ICoreSypgr, {}, {}, {}, mongoose.Document<unknown, {}, ICoreSypgr> & ICoreSypgr & Required<{
|
|
33
28
|
_id: string;
|
|
34
29
|
}>, any>;
|
|
35
|
-
export {
|
|
36
|
-
CCoreSypgr };
|
|
30
|
+
export { CCoreSypgr };
|
|
@@ -22,22 +22,9 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ICoreSyptb } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
|
-
interface ICoreSyptb {
|
|
27
|
-
_id?: string;
|
|
28
|
-
syptb_title: string;
|
|
29
|
-
syptb_tabs: ITabs[];
|
|
30
|
-
syptb_tab_code: string;
|
|
31
|
-
syptb_page_id_sypg: string;
|
|
32
|
-
syptb_isactive?: boolean;
|
|
33
|
-
}
|
|
34
|
-
export interface ITabs {
|
|
35
|
-
syptb_path: string;
|
|
36
|
-
syptb_label: string;
|
|
37
|
-
syptb_isactive: boolean;
|
|
38
|
-
}
|
|
39
27
|
declare const CCoreSyptb: mongoose.Model<ICoreSyptb, {}, {}, {}, mongoose.Document<unknown, {}, ICoreSyptb> & ICoreSyptb & Required<{
|
|
40
28
|
_id: string;
|
|
41
29
|
}>, any>;
|
|
42
|
-
export {
|
|
43
|
-
CCoreSyptb };
|
|
30
|
+
export { CCoreSyptb };
|
|
@@ -22,23 +22,9 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ICoreSypin } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
|
-
interface ICoreSypin {
|
|
27
|
-
_id?: string;
|
|
28
|
-
sypin_circle_name: string;
|
|
29
|
-
sypin_region_name: string;
|
|
30
|
-
sypin_division_name: string;
|
|
31
|
-
sypin_office_name: string;
|
|
32
|
-
sypin_pincode: number;
|
|
33
|
-
sypin_office_type: string;
|
|
34
|
-
sypin_delivery: string;
|
|
35
|
-
sypin_district: string;
|
|
36
|
-
sypin_state_name: string;
|
|
37
|
-
sypin_latitude: number;
|
|
38
|
-
sypin_longitude: number;
|
|
39
|
-
}
|
|
40
27
|
declare const CCoreSypin: mongoose.Model<ICoreSypin, {}, {}, {}, mongoose.Document<unknown, {}, ICoreSypin> & ICoreSypin & Required<{
|
|
41
28
|
_id: string;
|
|
42
29
|
}>, any>;
|
|
43
|
-
export {
|
|
44
|
-
CCoreSypin };
|
|
30
|
+
export { CCoreSypin };
|
|
@@ -22,16 +22,9 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ICoreSyco } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
|
-
declare class ICoreSyco {
|
|
27
|
-
syco_for: string;
|
|
28
|
-
syco_title: string;
|
|
29
|
-
syco_desc: string;
|
|
30
|
-
syco_configuration: any;
|
|
31
|
-
syco_isactive: boolean;
|
|
32
|
-
}
|
|
33
27
|
declare const CCoreSyco: mongoose.Model<ICoreSyco, {}, {}, {}, mongoose.Document<unknown, {}, ICoreSyco> & ICoreSyco & {
|
|
34
28
|
_id: mongoose.Types.ObjectId;
|
|
35
29
|
}, any>;
|
|
36
|
-
export {
|
|
37
|
-
CCoreSyco };
|
|
30
|
+
export { CCoreSyco };
|
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CCoreSyco =
|
|
3
|
+
exports.CCoreSyco = void 0;
|
|
4
4
|
var mongoose_1 = require("mongoose");
|
|
5
|
-
/* INTERFASE START */
|
|
6
|
-
var ICoreSyco = /** @class */ (function () {
|
|
7
|
-
function ICoreSyco() {
|
|
8
|
-
}
|
|
9
|
-
return ICoreSyco;
|
|
10
|
-
}());
|
|
11
|
-
exports.ICoreSyco = ICoreSyco;
|
|
12
|
-
/* INTERFACE END */
|
|
13
5
|
/* SCHEMA START */
|
|
14
6
|
var core_system_config = new mongoose_1.Schema({
|
|
15
7
|
syco_for: {
|
|
@@ -22,42 +22,9 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ICoreSyen } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
|
-
interface ICoreSyen {
|
|
27
|
-
_id?: string;
|
|
28
|
-
syen_id_syen?: string;
|
|
29
|
-
syen_entity_type_gmst?: string;
|
|
30
|
-
syen_name?: string;
|
|
31
|
-
syen_entity_code?: string;
|
|
32
|
-
syen_corporate_address?: string;
|
|
33
|
-
syen_corporate_pin_sypc?: string;
|
|
34
|
-
syen_corporate_city_sypc?: string;
|
|
35
|
-
syen_corporate_state_sypc?: string;
|
|
36
|
-
syen_corporate_country_sypc?: string;
|
|
37
|
-
syen_corporate_contact_person_user?: string;
|
|
38
|
-
syen_corporate_phone?: number;
|
|
39
|
-
syen_corporate_phone_alt?: number;
|
|
40
|
-
syen_corporate_fax?: string;
|
|
41
|
-
syen_corporate_email?: string;
|
|
42
|
-
syen_corporate_email_alt?: string;
|
|
43
|
-
syen_website?: string;
|
|
44
|
-
syen_currency_sycr?: string;
|
|
45
|
-
syen_registered_address?: string;
|
|
46
|
-
syen_registered_pin_sypc?: string;
|
|
47
|
-
syen_registered_city_sypc?: string;
|
|
48
|
-
syen_registered_state_sypc?: string;
|
|
49
|
-
syen_registered_country_sypc?: string;
|
|
50
|
-
syen_registered_phone?: number;
|
|
51
|
-
syen_registered_email?: string;
|
|
52
|
-
syen_registered_fax?: string;
|
|
53
|
-
syen_registered_contact_person_user?: string;
|
|
54
|
-
syen_udise_no?: string;
|
|
55
|
-
syen_affiliation_no?: string;
|
|
56
|
-
syen_photo_id_fm?: string;
|
|
57
|
-
syen_isactive?: boolean;
|
|
58
|
-
}
|
|
59
27
|
declare const CCoreSyen: mongoose.Model<ICoreSyen, {}, {}, {}, mongoose.Document<unknown, {}, ICoreSyen> & ICoreSyen & Required<{
|
|
60
28
|
_id: string;
|
|
61
29
|
}>, any>;
|
|
62
|
-
export {
|
|
63
|
-
CCoreSyen };
|
|
30
|
+
export { CCoreSyen };
|
|
@@ -22,32 +22,10 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ICoreSylog } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
27
|
export type log_type = 'TRACE' | 'SECURITY';
|
|
27
|
-
declare class ICoreSylog {
|
|
28
|
-
_id?: string;
|
|
29
|
-
sylog_id_user?: string;
|
|
30
|
-
sylog_id_logses?: string;
|
|
31
|
-
sylog_log_type?: log_type;
|
|
32
|
-
sylog_action?: string;
|
|
33
|
-
sylog_id_sypg?: string;
|
|
34
|
-
sylog_security_event?: string;
|
|
35
|
-
sylog_previous_data?: object;
|
|
36
|
-
sylog_updated_data?: object;
|
|
37
|
-
sylog_diagnostic_code?: string;
|
|
38
|
-
sylog_ip_address?: string;
|
|
39
|
-
sylog_message?: string;
|
|
40
|
-
sylog_timestamp?: Date;
|
|
41
|
-
sylog_method?: string;
|
|
42
|
-
sylog_route?: string;
|
|
43
|
-
sylog_request?: object;
|
|
44
|
-
sylog_monitor_type?: string;
|
|
45
|
-
sylog_monitor_value?: number;
|
|
46
|
-
sylog_config_data?: object;
|
|
47
|
-
sylog_isactive?: boolean;
|
|
48
|
-
}
|
|
49
28
|
declare const CCoreSylog: mongoose.Model<ICoreSylog, {}, {}, {}, mongoose.Document<unknown, {}, ICoreSylog> & ICoreSylog & Required<{
|
|
50
29
|
_id: string;
|
|
51
30
|
}>, any>;
|
|
52
|
-
export {
|
|
53
|
-
CCoreSylog };
|
|
31
|
+
export { CCoreSylog };
|
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CCoreSylog =
|
|
3
|
+
exports.CCoreSylog = void 0;
|
|
4
4
|
var mongoose_1 = require("mongoose");
|
|
5
|
-
/* INTERFASE START */
|
|
6
|
-
var ICoreSylog = /** @class */ (function () {
|
|
7
|
-
function ICoreSylog() {
|
|
8
|
-
}
|
|
9
|
-
return ICoreSylog;
|
|
10
|
-
}());
|
|
11
|
-
exports.ICoreSylog = ICoreSylog;
|
|
12
|
-
/* INTERFACE END */
|
|
13
5
|
/* SCHEMA START */
|
|
14
6
|
var core_system_logs = new mongoose_1.Schema({
|
|
15
7
|
sylog_id_user: {
|
|
@@ -22,21 +22,9 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ICoreSyme } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
|
-
declare class ICoreSyme {
|
|
27
|
-
_id?: string;
|
|
28
|
-
syme_title?: string;
|
|
29
|
-
syme_desc?: string;
|
|
30
|
-
syme_path?: string;
|
|
31
|
-
syme_icon?: string;
|
|
32
|
-
syme_type?: string;
|
|
33
|
-
syme_link?: string;
|
|
34
|
-
syme_order_by?: number;
|
|
35
|
-
syme_id_syme?: string;
|
|
36
|
-
syme_isactive?: boolean;
|
|
37
|
-
}
|
|
38
27
|
declare const CCoreSyme: mongoose.Model<ICoreSyme, {}, {}, {}, mongoose.Document<unknown, {}, ICoreSyme> & ICoreSyme & Required<{
|
|
39
28
|
_id: string;
|
|
40
29
|
}>, any>;
|
|
41
|
-
export {
|
|
42
|
-
CCoreSyme };
|
|
30
|
+
export { CCoreSyme };
|
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CCoreSyme =
|
|
3
|
+
exports.CCoreSyme = void 0;
|
|
4
4
|
var mongoose_1 = require("mongoose");
|
|
5
|
-
/* INTERFASE START */
|
|
6
|
-
var ICoreSyme = /** @class */ (function () {
|
|
7
|
-
function ICoreSyme() {
|
|
8
|
-
}
|
|
9
|
-
return ICoreSyme;
|
|
10
|
-
}());
|
|
11
|
-
exports.ICoreSyme = ICoreSyme;
|
|
12
|
-
/* INTERFACE END */
|
|
13
5
|
/* SCHEMA START */
|
|
14
6
|
var core_system_menu = new mongoose_1.Schema({
|
|
15
7
|
syme_id_syme: {
|
|
@@ -22,18 +22,9 @@
|
|
|
22
22
|
/// <reference types="mongoose/types/validation" />
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ICoreSypg } from "cloud-ide-lms-model";
|
|
25
26
|
import mongoose from "mongoose";
|
|
26
|
-
declare class ICoreSypg {
|
|
27
|
-
_id?: string;
|
|
28
|
-
sypg_page_code?: string;
|
|
29
|
-
sypg_title?: string;
|
|
30
|
-
sypg_desc?: string;
|
|
31
|
-
sypg_configuration?: any;
|
|
32
|
-
sypg_theme_id_sytm?: string;
|
|
33
|
-
sypg_isactive?: boolean;
|
|
34
|
-
}
|
|
35
27
|
declare const CCoreSypg: mongoose.Model<ICoreSypg, {}, {}, {}, mongoose.Document<unknown, {}, ICoreSypg> & ICoreSypg & Required<{
|
|
36
28
|
_id: string;
|
|
37
29
|
}>, any>;
|
|
38
|
-
export {
|
|
39
|
-
CCoreSypg };
|
|
30
|
+
export { CCoreSypg };
|