kcommons 13.11.2 → 13.11.3

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/index.d.ts CHANGED
@@ -65,7 +65,7 @@ export * from "./typings/common/uploadMedia.typings";
65
65
  export * from "./typings/common/retrieveMedia.typings";
66
66
  export * from "./typings/common/lifecycleLogger.typings";
67
67
  export * from "./typings/common/openUOM.typings";
68
- export * from "./typings/common/ocr/ocrGst.typings";
68
+ export * from "./typings/common/ocr.typings";
69
69
  export * from "./constants/permission.constants";
70
70
  export * from "./constants/entityTypes.constants";
71
71
  export * from "./constants/statuses.constants";
package/build/index.js CHANGED
@@ -85,7 +85,7 @@ __exportStar(require("./typings/common/uploadMedia.typings"), exports);
85
85
  __exportStar(require("./typings/common/retrieveMedia.typings"), exports);
86
86
  __exportStar(require("./typings/common/lifecycleLogger.typings"), exports);
87
87
  __exportStar(require("./typings/common/openUOM.typings"), exports);
88
- __exportStar(require("./typings/common/ocr/ocrGst.typings"), exports);
88
+ __exportStar(require("./typings/common/ocr.typings"), exports);
89
89
  // Constants
90
90
  __exportStar(require("./constants/permission.constants"), exports);
91
91
  __exportStar(require("./constants/entityTypes.constants"), exports);
@@ -0,0 +1,6 @@
1
+ export interface IOcrUploadAckReq {
2
+ upload_key: string;
3
+ }
4
+ export interface IOcrUploadAckRes {
5
+ extracted_data: string[] | null;
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "13.11.2",
3
+ "version": "13.11.3",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -1,6 +0,0 @@
1
- export interface IOcrGstUploadAckReq {
2
- upload_key: string;
3
- }
4
- export interface IOcrGstUploadAckRes {
5
- extracted_data: string[] | null;
6
- }