hububb-saas-shared 1.0.76 → 1.0.77

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.
@@ -1,7 +1,6 @@
1
1
  export declare enum ServiceType {
2
- INTEGRATION = "INTEGRATION",
3
- ON_DEMAND = "ON_DEMAND",
4
- RECURRING = "RECURRING"
2
+ ON_DEMAND = "FULL",
3
+ SUBSCRIPTION = "PRORATED"
5
4
  }
6
5
  export declare enum TaskStatus {
7
6
  PENDING = "PENDING",
@@ -3,9 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SubscriptionStatus = exports.PurchaseStatus = exports.PriceType = exports.InvoiceStatus = exports.InvoiceType = exports.TaskPriority = exports.TaskStatus = exports.ServiceType = void 0;
4
4
  var ServiceType;
5
5
  (function (ServiceType) {
6
- ServiceType["INTEGRATION"] = "INTEGRATION";
7
- ServiceType["ON_DEMAND"] = "ON_DEMAND";
8
- ServiceType["RECURRING"] = "RECURRING";
6
+ ServiceType["ON_DEMAND"] = "FULL";
7
+ ServiceType["SUBSCRIPTION"] = "PRORATED";
9
8
  })(ServiceType || (exports.ServiceType = ServiceType = {}));
10
9
  var TaskStatus;
11
10
  (function (TaskStatus) {
@@ -26,7 +26,8 @@ export declare enum InvoiceStatus {
26
26
  }
27
27
  export declare enum PriceType {
28
28
  PRORATED = "PRORATED",
29
- FULL = "FULL"
29
+ FULL = "FULL",
30
+ HOURLY = "HOURLY"
30
31
  }
31
32
  export declare enum PurchaseStatus {
32
33
  ACTIVE = "ACTIVE",
@@ -36,6 +36,7 @@ var PriceType;
36
36
  (function (PriceType) {
37
37
  PriceType["PRORATED"] = "PRORATED";
38
38
  PriceType["FULL"] = "FULL";
39
+ PriceType["HOURLY"] = "HOURLY";
39
40
  })(PriceType || (exports.PriceType = PriceType = {}));
40
41
  var PurchaseStatus;
41
42
  (function (PurchaseStatus) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "hububb-saas-shared",
4
- "version": "1.0.76",
4
+ "version": "1.0.77",
5
5
  "description": "This is a shared package for the hububb saas project",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",