ia-common 1.1.1-beta.27 → 1.1.1-beta.28
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/build/src/interface/api/create-corporate-action-advice.interface.d.ts +5 -6
- package/build/src/interface/api/update-corporate-action-advice.interface.d.ts +4 -7
- package/build/src/interface/entity/corporate-action-advice-entity.interface.d.ts +3 -3
- package/build/src/model/corporate-actions/corporate-actions-advice-model.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export interface ICreateCorporateActionAdviceResponse extends ICorporateActionsAdviceEntity {
|
|
1
|
+
import { EntityEnum, EnumEntityType, ICorporateActionsEntity, IEntityCreateDto } from "../entity";
|
|
2
|
+
export type ICorporateActionsAdviceCreateDtoExclude = "companyName" | "status" | "advisorOrgId";
|
|
3
|
+
export interface ICorporateActionAdviceCreateDto extends Omit<IEntityCreateDto<EnumEntityType<EntityEnum.CORPORATE_ACTIONS_ADVICE>>, ICorporateActionsAdviceCreateDtoExclude> {
|
|
5
4
|
}
|
|
6
|
-
export interface
|
|
7
|
-
|
|
5
|
+
export interface ICorporateActionAdviceCreateDtoValidationData {
|
|
6
|
+
existingCorporateActionEntity: ICorporateActionsEntity;
|
|
8
7
|
}
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
export interface ICorporateActionAdviceUpdateDto extends IAdviceFileDocuments {
|
|
5
|
-
transactionType: CorporateActionsTransactionType;
|
|
6
|
-
status: CorporateActionAdviceStatus;
|
|
1
|
+
import { EntityEnum, EnumEntityType, IEntityUpdateDto } from "../entity";
|
|
2
|
+
import { ICorporateActionAdviceCreateDtoValidationData } from "./create-corporate-action-advice.interface";
|
|
3
|
+
export interface ICorporateActionAdviceUpdateDto extends IEntityUpdateDto<EnumEntityType<EntityEnum.CORPORATE_ACTIONS_ADVICE>> {
|
|
7
4
|
}
|
|
8
|
-
export interface
|
|
5
|
+
export interface ICorporateActionsAdviceEntityUpdateDtoValidationData extends ICorporateActionAdviceCreateDtoValidationData {
|
|
9
6
|
}
|
|
@@ -7,8 +7,8 @@ export interface ICorporateActionsAdviceEntity extends IAuditColumnEntity {
|
|
|
7
7
|
transactionType: CorporateActionsTransactionType;
|
|
8
8
|
advisorOrgId: number;
|
|
9
9
|
status: CorporateActionAdviceStatus;
|
|
10
|
-
noteDocumentUrl
|
|
11
|
-
videoUrl
|
|
12
|
-
voiceUrl
|
|
10
|
+
noteDocumentUrl?: string | null;
|
|
11
|
+
videoUrl?: string | null;
|
|
12
|
+
voiceUrl?: string | null;
|
|
13
13
|
rationale: string | null;
|
|
14
14
|
}
|
|
@@ -8,9 +8,9 @@ export declare class CorporateActionsAdviceEntityModel extends BaseEntityModel<E
|
|
|
8
8
|
transactionType: CorporateActionsTransactionType;
|
|
9
9
|
advisorOrgId: number;
|
|
10
10
|
status: CorporateActionAdviceStatus;
|
|
11
|
-
noteDocumentUrl
|
|
12
|
-
videoUrl
|
|
13
|
-
voiceUrl
|
|
11
|
+
noteDocumentUrl?: string | null;
|
|
12
|
+
videoUrl?: string | null;
|
|
13
|
+
voiceUrl?: string | null;
|
|
14
14
|
rationale: string | null;
|
|
15
15
|
createdOn: number;
|
|
16
16
|
updatedOn: number;
|