octopian-apis 1.0.41 → 1.0.42

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.d.ts +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "octopian-apis",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "description": "Transaction APIs SDK that implements Octopian Services which will be used for any node project typescript or javascript",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
package/src/index.d.ts CHANGED
@@ -258,7 +258,7 @@ import { GetMyCorrespondenceListDTO } from "./modals/input-modals/correspondence
258
258
  import { CorrespondenceSubmitDraftInput } from "./modals/input-modals/correspondence-modals/CorrespondenceSubmitDraftInput";
259
259
  import { GenerateDocumentInput } from "./modals/input-modals/transaction-catalog-modals/GenerateDocumentInput";
260
260
  import { GetProviderStepTypeCountOutput } from "./modals/output-modals/request-step-modals/GetProviderStepTypeCountOutput";
261
- import { GetMyCorrespondenceOutput } from "./modals/output-modals/correspondence-modals/GetMyCorrespondenceOutput";
261
+ import { GetMyCorrespondenceOutput, Attachment } from "./modals/output-modals/correspondence-modals/GetMyCorrespondenceOutput";
262
262
  import { RequestStepAssignableRoleInput } from "./modals/input-modals/request-step-modals/RequestStepAssignableRoleInput";
263
263
  import { RequestStepAssignableRoleOutput } from "./modals/output-modals/request-step-modals/RequestStepAssignableRoleOutput";
264
264
  import { ProcessStepSpecialActionInput } from "./modals/input-modals/request-step-modals/ProcessStepSpecialActionInput";
@@ -6971,5 +6971,6 @@ export {
6971
6971
  RequestStepAssignableRoleInput,
6972
6972
  RequestStepAssignableRoleOutput,
6973
6973
  ProcessStepSpecialActionInput,
6974
- LinkedLoginOutput
6974
+ LinkedLoginOutput,
6975
+ Attachment
6975
6976
  };