@wrcb/cb-common 1.0.633 → 1.0.635

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
@@ -31,6 +31,8 @@ export * from './types/oddAlgorithm';
31
31
  export * from './types/compranomiaCategory';
32
32
  export * from './types/measurementUnit';
33
33
  export * from './types/orderCancelledBy';
34
+ export * from './types/paymentMethod';
35
+ export * from './types/paymentStatus';
34
36
  export * from './types/politicaBetCategory';
35
37
  export * from './types/predictionStatus';
36
38
  export * from './types/disputeStatus';
package/build/index.js CHANGED
@@ -47,6 +47,8 @@ __exportStar(require("./types/oddAlgorithm"), exports);
47
47
  __exportStar(require("./types/compranomiaCategory"), exports);
48
48
  __exportStar(require("./types/measurementUnit"), exports);
49
49
  __exportStar(require("./types/orderCancelledBy"), exports);
50
+ __exportStar(require("./types/paymentMethod"), exports);
51
+ __exportStar(require("./types/paymentStatus"), exports);
50
52
  // politicabet
51
53
  __exportStar(require("./types/politicaBetCategory"), exports);
52
54
  __exportStar(require("./types/predictionStatus"), exports);
@@ -0,0 +1,5 @@
1
+ export declare enum PaymentMethod {
2
+ Cash = "Cash",
3
+ CreditCard = "CreditCard",
4
+ Pix = "Pix"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PaymentMethod = void 0;
4
+ var PaymentMethod;
5
+ (function (PaymentMethod) {
6
+ PaymentMethod["Cash"] = "Cash";
7
+ PaymentMethod["CreditCard"] = "CreditCard";
8
+ PaymentMethod["Pix"] = "Pix";
9
+ })(PaymentMethod || (exports.PaymentMethod = PaymentMethod = {}));
@@ -0,0 +1,5 @@
1
+ export declare enum PaymentStatus {
2
+ Pending = "Pending",
3
+ Paid = "Paid",
4
+ Cancelled = "Cancelled"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PaymentStatus = void 0;
4
+ var PaymentStatus;
5
+ (function (PaymentStatus) {
6
+ PaymentStatus["Pending"] = "Pending";
7
+ PaymentStatus["Paid"] = "Paid";
8
+ PaymentStatus["Cancelled"] = "Cancelled";
9
+ })(PaymentStatus || (exports.PaymentStatus = PaymentStatus = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrcb/cb-common",
3
- "version": "1.0.633",
3
+ "version": "1.0.635",
4
4
  "description": "Common resources between services",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",