cloud-ide-lms-model 1.0.238 → 1.0.239
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,14 +1,17 @@
|
|
|
1
|
-
declare class
|
|
1
|
+
declare class CoreUserDocumentsBase {
|
|
2
2
|
_id?: string;
|
|
3
3
|
syusd_user_id_user?: string;
|
|
4
|
-
syusd_address_type_id_sygms?: string;
|
|
5
4
|
syusd_doc_number?: string;
|
|
6
5
|
syusd_doc_name_as_per_doc?: string;
|
|
7
6
|
syusd_doc_issue_date?: Date;
|
|
8
7
|
syusd_doc_expiry_date?: Date;
|
|
8
|
+
syusd_isactive?: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare class CoreUserDocuments extends CoreUserDocumentsBase {
|
|
11
|
+
syusd_document_type_id_sygms?: string;
|
|
9
12
|
syusd_photo_group_id_cyfm?: string;
|
|
10
13
|
syusd_doc_verification_status_id_sygms?: string;
|
|
11
14
|
syusd_doc_kyc_status_id_sygms?: string;
|
|
12
|
-
syusd_isactive?: boolean;
|
|
13
15
|
}
|
|
14
|
-
export {
|
|
16
|
+
export { CoreUserDocumentsBase, // interface
|
|
17
|
+
CoreUserDocuments };
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CoreUserDocuments = void 0;
|
|
4
|
-
class
|
|
3
|
+
exports.CoreUserDocuments = exports.CoreUserDocumentsBase = void 0;
|
|
4
|
+
class CoreUserDocumentsBase {
|
|
5
|
+
}
|
|
6
|
+
exports.CoreUserDocumentsBase = CoreUserDocumentsBase;
|
|
7
|
+
class CoreUserDocuments extends CoreUserDocumentsBase {
|
|
5
8
|
}
|
|
6
9
|
exports.CoreUserDocuments = CoreUserDocuments;
|