cloud-ide-lms-model 1.0.124 → 1.0.126
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.
|
@@ -3,8 +3,8 @@ import { controllerResponse } from "../../utilities";
|
|
|
3
3
|
type ICoreSycrErrorLogger = {
|
|
4
4
|
[key in keyof ICoreSycr]: string;
|
|
5
5
|
};
|
|
6
|
-
interface
|
|
6
|
+
interface currencyInsertUpdateControllerResponse extends controllerResponse {
|
|
7
7
|
data?: ICoreSycr;
|
|
8
8
|
}
|
|
9
9
|
export { ICoreSycrErrorLogger, //interface
|
|
10
|
-
|
|
10
|
+
currencyInsertUpdateControllerResponse };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { MTableQueries } from "../../common-types/common";
|
|
2
|
+
import { ICoreSyen } from "../../schema";
|
|
2
3
|
import { controllerResponse } from "../../utilities";
|
|
3
4
|
type IEntityErrorLogger = {
|
|
4
5
|
[key in keyof MEntity]: string;
|
|
@@ -11,6 +12,9 @@ declare class MEntity extends MTableQueries {
|
|
|
11
12
|
interface entityControllerResponse extends controllerResponse {
|
|
12
13
|
data?: entityResponseData[];
|
|
13
14
|
}
|
|
15
|
+
interface entityInsertUpdateControllerResponse extends controllerResponse {
|
|
16
|
+
data?: ICoreSyen;
|
|
17
|
+
}
|
|
14
18
|
interface entityResponseData {
|
|
15
19
|
_id?: string;
|
|
16
20
|
syen_id_syen?: string;
|
|
@@ -44,4 +48,4 @@ interface entityResponseData {
|
|
|
44
48
|
}
|
|
45
49
|
export { IEntityErrorLogger, //interface
|
|
46
50
|
MEntity, // model
|
|
47
|
-
entityControllerResponse, entityResponseData };
|
|
51
|
+
entityControllerResponse, entityResponseData, entityInsertUpdateControllerResponse };
|