ia-common 1.0.1-beta.175 → 1.0.1-beta.176

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,6 @@
1
+ import { OFSCorporateActionModel } from "../../@model";
2
+ import { IOFSCorporateAction } from "../corporate-actions";
3
+ export interface ICreateOFSCorporateActionRequest extends IOFSCorporateAction {
4
+ }
5
+ export interface ICreateOFSCorporateActionResponse extends OFSCorporateActionModel {
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -63,3 +63,5 @@ export * from "./get-nfo-advice.interface";
63
63
  export * from "./create-nfo-advice.interface";
64
64
  export * from "./create-bulk-advice-using-csv.interface";
65
65
  export * from "./get-organization-entities.interface";
66
+ export * from "./create-ofs.interface";
67
+ export * from "./update-ofs.interface";
@@ -79,3 +79,5 @@ __exportStar(require("./get-nfo-advice.interface"), exports);
79
79
  __exportStar(require("./create-nfo-advice.interface"), exports);
80
80
  __exportStar(require("./create-bulk-advice-using-csv.interface"), exports);
81
81
  __exportStar(require("./get-organization-entities.interface"), exports);
82
+ __exportStar(require("./create-ofs.interface"), exports);
83
+ __exportStar(require("./update-ofs.interface"), exports);
@@ -0,0 +1,6 @@
1
+ import { OFSCorporateActionModel } from "../../@model";
2
+ import { IOFSCorporateAction } from "../corporate-actions";
3
+ export interface IUpdateOFSCorporateActionRequest extends Partial<IOFSCorporateAction> {
4
+ }
5
+ export interface IUpdateOFSCorporateActionResponse extends OFSCorporateActionModel {
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ia-common",
3
- "version": "1.0.1-beta.175",
3
+ "version": "1.0.1-beta.176",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",