@wrcb/cb-common 1.0.677 → 1.0.679

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,6 +34,7 @@ export * from './types/orderCancelledBy';
34
34
  export * from './types/paymentMethod';
35
35
  export * from './types/paymentStatus';
36
36
  export * from './types/addressType';
37
+ export * from './types/imageProcessingStatus';
37
38
  export * from './types/politicaBetCategory';
38
39
  export * from './types/predictionStatus';
39
40
  export * from './types/disputeStatus';
package/build/index.js CHANGED
@@ -50,6 +50,7 @@ __exportStar(require("./types/orderCancelledBy"), exports);
50
50
  __exportStar(require("./types/paymentMethod"), exports);
51
51
  __exportStar(require("./types/paymentStatus"), exports);
52
52
  __exportStar(require("./types/addressType"), exports);
53
+ __exportStar(require("./types/imageProcessingStatus"), exports);
53
54
  // politicabet
54
55
  __exportStar(require("./types/politicaBetCategory"), exports);
55
56
  __exportStar(require("./types/predictionStatus"), exports);
@@ -0,0 +1,6 @@
1
+ export declare enum ImageProcessingStatus {
2
+ PENDING = "PENDING",
3
+ PROCESSING = "PROCESSING",
4
+ READY = "READY",
5
+ ERROR = "ERROR"
6
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ // cb-common/src/types/imageProcessingStatus.ts
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.ImageProcessingStatus = void 0;
5
+ var ImageProcessingStatus;
6
+ (function (ImageProcessingStatus) {
7
+ ImageProcessingStatus["PENDING"] = "PENDING";
8
+ ImageProcessingStatus["PROCESSING"] = "PROCESSING";
9
+ ImageProcessingStatus["READY"] = "READY";
10
+ ImageProcessingStatus["ERROR"] = "ERROR";
11
+ })(ImageProcessingStatus || (exports.ImageProcessingStatus = ImageProcessingStatus = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrcb/cb-common",
3
- "version": "1.0.677",
3
+ "version": "1.0.679",
4
4
  "description": "Common resources between services",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",