cecon-interfaces 1.1.96 → 1.2.1
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/dist/app/enums/mode.enum.d.ts +2 -0
- package/dist/app/enums/mode.enum.js +2 -0
- package/dist/esm2022/app/enums/mode.enum.mjs +3 -1
- package/dist/esm2022/global-settings/entities/global-setting-master.entity.mjs +5 -3
- package/dist/esm2022/global-settings/interfaces/i-global-setting-master.mjs +1 -1
- package/dist/esm2022/subscription-customer/entities/subscription-customer.entity.mjs +5 -3
- package/dist/esm2022/subscription-customer/interfaces/i-subscription-customer.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +10 -4
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/global-settings/entities/global-setting-master.entity.d.ts +2 -0
- package/dist/global-settings/entities/global-setting-master.entity.js +4 -2
- package/dist/global-settings/interfaces/i-global-setting-master.d.ts +2 -0
- package/dist/package.json +1 -1
- package/dist/subscription-customer/entities/subscription-customer.entity.d.ts +2 -0
- package/dist/subscription-customer/entities/subscription-customer.entity.js +4 -2
- package/dist/subscription-customer/interfaces/i-subscription-customer.d.ts +2 -0
- package/package.json +1 -1
@@ -5,6 +5,8 @@ export declare class GlobalSettingMasterEntity implements IGlobalSettingMaster {
|
|
5
5
|
deleteSubscriptionsPlacedDays: number;
|
6
6
|
subscriptionSuspendedTimes: number;
|
7
7
|
subscriptionsCancelDays: number;
|
8
|
+
subscriptionsCustomerBillingDays: number;
|
9
|
+
subscriptionsCustomerSuspendDays: number;
|
8
10
|
subscriptionsExpireDays: number;
|
9
11
|
subscriptionsSuspendDays: number;
|
10
12
|
constructor(data?: Partial<GlobalSettingMasterEntity>);
|
@@ -2,15 +2,17 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.GlobalSettingMasterEntity = void 0;
|
4
4
|
var GlobalSettingMasterEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (
|
5
|
+
// #endregion Properties (9)
|
6
6
|
// #region Constructors (1)
|
7
7
|
function GlobalSettingMasterEntity(data) {
|
8
|
-
// #region Properties (
|
8
|
+
// #region Properties (9)
|
9
9
|
this.billingDays = 10;
|
10
10
|
this.deleteInvoicesPlacedDays = 10;
|
11
11
|
this.deleteSubscriptionsPlacedDays = 10;
|
12
12
|
this.subscriptionSuspendedTimes = 3;
|
13
13
|
this.subscriptionsCancelDays = 3;
|
14
|
+
this.subscriptionsCustomerBillingDays = 7;
|
15
|
+
this.subscriptionsCustomerSuspendDays = 1;
|
14
16
|
this.subscriptionsExpireDays = 1;
|
15
17
|
this.subscriptionsSuspendDays = 1;
|
16
18
|
if (data) {
|
@@ -4,6 +4,8 @@ export interface IGlobalSettingMaster {
|
|
4
4
|
deleteSubscriptionsPlacedDays: number;
|
5
5
|
subscriptionSuspendedTimes: number;
|
6
6
|
subscriptionsCancelDays: number;
|
7
|
+
subscriptionsCustomerBillingDays: number;
|
8
|
+
subscriptionsCustomerSuspendDays: number;
|
7
9
|
subscriptionsExpireDays: number;
|
8
10
|
subscriptionsSuspendDays: number;
|
9
11
|
}
|
package/dist/package.json
CHANGED
@@ -2,9 +2,11 @@ import { ISubscriptionCustomerProfile } from '../interfaces/i-subscription-custo
|
|
2
2
|
export declare class SubscriptionCustomerProfileEntity implements ISubscriptionCustomerProfile {
|
3
3
|
doc: string | null;
|
4
4
|
docType: string | null;
|
5
|
+
email: string | null;
|
5
6
|
id: string | null;
|
6
7
|
imageUrl: string | null;
|
7
8
|
name: string | null;
|
9
|
+
phoneNumber: string | null;
|
8
10
|
uid: string | null;
|
9
11
|
constructor(data?: Partial<SubscriptionCustomerProfileEntity>);
|
10
12
|
}
|
@@ -2,15 +2,17 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.SubscriptionCustomerProfileEntity = void 0;
|
4
4
|
var SubscriptionCustomerProfileEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (
|
5
|
+
// #endregion Properties (8)
|
6
6
|
// #region Constructors (1)
|
7
7
|
function SubscriptionCustomerProfileEntity(data) {
|
8
|
-
// #region Properties (
|
8
|
+
// #region Properties (8)
|
9
9
|
this.doc = '';
|
10
10
|
this.docType = '';
|
11
|
+
this.email = '';
|
11
12
|
this.id = '';
|
12
13
|
this.imageUrl = '';
|
13
14
|
this.name = '';
|
15
|
+
this.phoneNumber = '';
|
14
16
|
this.uid = '';
|
15
17
|
if (data) {
|
16
18
|
for (var key in data) {
|