cloud-ide-lms-model 1.0.340 → 1.0.342
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.
|
@@ -14,6 +14,16 @@ type IFeeAssignmentInsertUpdateErrorLogger = {
|
|
|
14
14
|
[key in keyof MFeeAssignmentInsertUpdatePayload]: string;
|
|
15
15
|
};
|
|
16
16
|
declare class MFeeAssignment extends MTableQueries {
|
|
17
|
+
feeas_student_id?: string;
|
|
18
|
+
feeas_fee_structure_id_feest?: string;
|
|
19
|
+
feeas_fee_structure_item_id_feesi?: string;
|
|
20
|
+
feeas_fee_category_sygms?: string;
|
|
21
|
+
feeas_entity_id_syen?: string;
|
|
22
|
+
feeas_academic_year_id_acayr?: string;
|
|
23
|
+
feeas_class_program_id_acacpm?: string;
|
|
24
|
+
feeas_admission_id_admap?: string;
|
|
25
|
+
feeas_payment_status?: 'PENDING' | 'PARTIALLY_PAID' | 'PAID' | 'OVERDUE' | 'WAIVED' | 'CANCELLED';
|
|
26
|
+
feeas_isactive?: boolean;
|
|
17
27
|
constructor(init: MFeeAssignment);
|
|
18
28
|
Validate?(): Partial<IFeeAssignmentErrorLogger>;
|
|
19
29
|
}
|
|
@@ -16,8 +16,8 @@ export type log_type = 'TRACE' | 'SECURITY' | 'APPLICATION_ERROR';
|
|
|
16
16
|
export type diagnostic_code = "APPLICATION_ERR_200" | "APPLICATION_ERR_500" | "APPLICATION_ERR_201" | "APPLICATION_ERR_401" | "APPLICATION_ERR_400" | "APPLICATION_ERR_427" | "APPLICATION_ERR_783" | "APPLICATION_ERR_430" | "APPLICATION_ERR_449" | "APPLICATION_ERR_419" | "APPLICATION_ERR_403" | "APPLICATION_ERR_404" | "APPLICATION_ERR_409";
|
|
17
17
|
declare class ICoreSylog {
|
|
18
18
|
_id?: string;
|
|
19
|
-
sylog_id_user?: string;
|
|
20
|
-
sylog_id_logses?: string;
|
|
19
|
+
sylog_id_user?: string | null;
|
|
20
|
+
sylog_id_logses?: string | null;
|
|
21
21
|
sylog_log_type?: log_type;
|
|
22
22
|
sylog_action?: string;
|
|
23
23
|
sylog_id_sypg?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { FeeStructure } from './fee_structure';
|
|
2
2
|
export { FeeStructureItem } from './fee_structure_item';
|
|
3
|
-
export { FeeAssignment } from './fee_assignment';
|
|
3
|
+
export { FeeAssignment, FeeAssignmentBase } from './fee_assignment';
|
|
4
4
|
export { FeePayment } from './fee_payment';
|
|
5
5
|
export { FeePaymentItem } from './fee_payment_item';
|
|
6
6
|
export { FeeDiscount } from './fee_discount';
|
package/lib/schema/fees/index.js
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FeeInstallmentItem = exports.FeeInstallmentConfig = exports.FeeCollectionConfig = exports.FeeTransaction = exports.FeeReceiptTemplate = exports.FeeRefund = exports.FeeLateFee = exports.FeeLateFeeRule = exports.FeeScholarship = exports.FeeDiscountRule = exports.FeeDiscount = exports.FeePaymentItem = exports.FeePayment = exports.FeeAssignment = exports.FeeStructureItem = exports.FeeStructure = void 0;
|
|
3
|
+
exports.FeeInstallmentItem = exports.FeeInstallmentConfig = exports.FeeCollectionConfig = exports.FeeTransaction = exports.FeeReceiptTemplate = exports.FeeRefund = exports.FeeLateFee = exports.FeeLateFeeRule = exports.FeeScholarship = exports.FeeDiscountRule = exports.FeeDiscount = exports.FeePaymentItem = exports.FeePayment = exports.FeeAssignmentBase = exports.FeeAssignment = exports.FeeStructureItem = exports.FeeStructure = void 0;
|
|
4
4
|
var fee_structure_1 = require("./fee_structure");
|
|
5
5
|
Object.defineProperty(exports, "FeeStructure", { enumerable: true, get: function () { return fee_structure_1.FeeStructure; } });
|
|
6
6
|
var fee_structure_item_1 = require("./fee_structure_item");
|
|
7
7
|
Object.defineProperty(exports, "FeeStructureItem", { enumerable: true, get: function () { return fee_structure_item_1.FeeStructureItem; } });
|
|
8
8
|
var fee_assignment_1 = require("./fee_assignment");
|
|
9
9
|
Object.defineProperty(exports, "FeeAssignment", { enumerable: true, get: function () { return fee_assignment_1.FeeAssignment; } });
|
|
10
|
+
Object.defineProperty(exports, "FeeAssignmentBase", { enumerable: true, get: function () { return fee_assignment_1.FeeAssignmentBase; } });
|
|
10
11
|
var fee_payment_1 = require("./fee_payment");
|
|
11
12
|
Object.defineProperty(exports, "FeePayment", { enumerable: true, get: function () { return fee_payment_1.FeePayment; } });
|
|
12
13
|
var fee_payment_item_1 = require("./fee_payment_item");
|