cecon-interfaces 1.2.25 → 1.2.26

Sign up to get free protection for your applications and to get access to all the features.
@@ -9,5 +9,7 @@ export declare class GlobalSettingMasterEntity implements IGlobalSettingMaster {
9
9
  subscriptionsCustomerSuspendDays: number;
10
10
  subscriptionsExpireDays: number;
11
11
  subscriptionsSuspendDays: number;
12
+ waServerBaseUrl: string;
13
+ waServerGlobalKey: string;
12
14
  constructor(data?: Partial<GlobalSettingMasterEntity>);
13
15
  }
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GlobalSettingMasterEntity = void 0;
4
4
  var GlobalSettingMasterEntity = /** @class */ (function () {
5
- // #endregion Properties (9)
5
+ // #endregion Properties (11)
6
6
  // #region Constructors (1)
7
7
  function GlobalSettingMasterEntity(data) {
8
- // #region Properties (9)
8
+ // #region Properties (11)
9
9
  this.billingDays = 10;
10
10
  this.deleteInvoicesPlacedDays = 10;
11
11
  this.deleteSubscriptionsPlacedDays = 10;
@@ -15,6 +15,8 @@ var GlobalSettingMasterEntity = /** @class */ (function () {
15
15
  this.subscriptionsCustomerSuspendDays = 1;
16
16
  this.subscriptionsExpireDays = 1;
17
17
  this.subscriptionsSuspendDays = 1;
18
+ this.waServerBaseUrl = '';
19
+ this.waServerGlobalKey = '';
18
20
  if (data) {
19
21
  for (var key in data) {
20
22
  if (data.hasOwnProperty(key) && key in this) {
@@ -1,6 +1,8 @@
1
1
  export interface IGlobalSettingMaster {
2
2
  billingDays: number;
3
3
  deleteInvoicesPlacedDays: number;
4
+ waServerBaseUrl: string;
5
+ waServerGlobalKey: string;
4
6
  deleteSubscriptionsPlacedDays: number;
5
7
  subscriptionSuspendedTimes: number;
6
8
  subscriptionsCancelDays: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.2.25",
3
+ "version": "1.2.26",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",