kcommons 5.13.2 → 5.13.4

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
@@ -34,5 +34,6 @@ export * from "./constants/documentStatus.typings";
34
34
  export * from "./constants/form.constants";
35
35
  export * from "./typings/quote.typings";
36
36
  export * from "./typings/common/paginationFilters.typings";
37
+ export * from "./typings/common/uploadMedia.typings";
37
38
  export * from "./classes/asnWrapper.class";
38
39
  export * from "./typings/utils/address.typings";
package/build/index.js CHANGED
@@ -54,6 +54,7 @@ __exportStar(require("./constants/form.constants"), exports);
54
54
  __exportStar(require("./typings/quote.typings"), exports);
55
55
  // Commons
56
56
  __exportStar(require("./typings/common/paginationFilters.typings"), exports);
57
+ __exportStar(require("./typings/common/uploadMedia.typings"), exports);
57
58
  // Classes
58
59
  __exportStar(require("./classes/asnWrapper.class"), exports);
59
60
  // Utils
@@ -0,0 +1,7 @@
1
+ export declare enum UPLOAD_MEDIA_TYPE {
2
+ DOCUMENT = "documents",
3
+ IMAGE = "images"
4
+ }
5
+ export interface IUploadMediaResponse {
6
+ uploadUrl: string;
7
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UPLOAD_MEDIA_TYPE = void 0;
4
+ var UPLOAD_MEDIA_TYPE;
5
+ (function (UPLOAD_MEDIA_TYPE) {
6
+ UPLOAD_MEDIA_TYPE["DOCUMENT"] = "documents";
7
+ UPLOAD_MEDIA_TYPE["IMAGE"] = "images";
8
+ })(UPLOAD_MEDIA_TYPE || (exports.UPLOAD_MEDIA_TYPE = UPLOAD_MEDIA_TYPE = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.13.2",
3
+ "version": "5.13.4",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",