@sendhome/common 1.0.115 → 1.0.117

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.
@@ -12,7 +12,7 @@ export interface ModuleCreatedEvent {
12
12
  category: CompanyType;
13
13
  company: string;
14
14
  country: ReceiveCountry;
15
- Locations: string[];
15
+ locations: string[];
16
16
  categories: string[];
17
17
  status: ModuleStatus;
18
18
  created_at: Date;
@@ -12,7 +12,7 @@ export interface ModuleUpdatedEvent {
12
12
  category: CompanyType;
13
13
  company: string;
14
14
  country: ReceiveCountry;
15
- Locations: string[];
15
+ locations: string[];
16
16
  categories: string[];
17
17
  status: ModuleStatus;
18
18
  created_at: Date;
@@ -0,0 +1,5 @@
1
+ export declare enum LocationStatus {
2
+ Created = "created",
3
+ Archived = "archived",
4
+ Deleted = "deleted"
5
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LocationStatus = void 0;
4
+ var LocationStatus;
5
+ (function (LocationStatus) {
6
+ // location created
7
+ LocationStatus["Created"] = "created";
8
+ // location deleted
9
+ LocationStatus["Archived"] = "archived";
10
+ // location deleted
11
+ LocationStatus["Deleted"] = "deleted";
12
+ })(LocationStatus = exports.LocationStatus || (exports.LocationStatus = {}));
package/build/index.d.ts CHANGED
@@ -66,6 +66,7 @@ export * from './events/types/company-status';
66
66
  export * from './events/types/company-type';
67
67
  export * from './events/types/country';
68
68
  export * from './events/types/coupon-status';
69
+ export * from './events/types/location-status';
69
70
  export * from './events/types/media-status';
70
71
  export * from './events/types/module-status';
71
72
  export * from './events/types/order-cancellation-status';
package/build/index.js CHANGED
@@ -79,6 +79,7 @@ __exportStar(require("./events/types/company-status"), exports);
79
79
  __exportStar(require("./events/types/company-type"), exports);
80
80
  __exportStar(require("./events/types/country"), exports);
81
81
  __exportStar(require("./events/types/coupon-status"), exports);
82
+ __exportStar(require("./events/types/location-status"), exports);
82
83
  __exportStar(require("./events/types/media-status"), exports);
83
84
  __exportStar(require("./events/types/module-status"), exports);
84
85
  __exportStar(require("./events/types/order-cancellation-status"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sendhome/common",
3
- "version": "1.0.115",
3
+ "version": "1.0.117",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",