ia-common 1.1.1-beta.33 → 1.1.1-beta.34

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.
@@ -0,0 +1,4 @@
1
+ export interface IDeleteDocumentDetails<T> {
2
+ key: keyof T;
3
+ urls: string[];
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -17,7 +17,7 @@ export interface IEquityAdviceCreateDto {
17
17
  rationale?: string;
18
18
  files: IFiles[];
19
19
  }
20
- export type IEquityAdviceCreateDtoExclude = "advisorOrgId" | "status" | "type" | "targetHitOn" | "targetHitCMP" | "gainLoss";
20
+ export type IEquityAdviceCreateDtoExclude = "advisorOrgId" | "status" | "type" | "targetHitOn" | "targetHitCMP" | "gainLoss" | "noteDocumentUrl" | "videoUrl" | "voiceUrl";
21
21
  export interface IEquityAdviceCreateDtoV2 extends Omit<IEntityCreateDto<EnumEntityType<EntityEnum.EQUITY_ADVICE>>, IEquityAdviceCreateDtoExclude> {
22
22
  }
23
23
  export interface ICreateAdviceResponse extends IEquityAdviceEntity {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ia-common",
3
- "version": "1.1.1-beta.33",
3
+ "version": "1.1.1-beta.34",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",