@movalib/movalib-commons 1.65.1 → 1.65.2
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.
|
@@ -44,7 +44,8 @@ export default class Subscription {
|
|
|
44
44
|
movaPackage: string;
|
|
45
45
|
packInfo: boolean;
|
|
46
46
|
smsCampaign: boolean;
|
|
47
|
+
expertMonthly: boolean;
|
|
47
48
|
checkList: any;
|
|
48
|
-
constructor(id: string, garageId: string, type: SubscriptionType, state: SubscriptionState, companyName: string, companyEmail: string, companySiren: string, companyLegalForm: string, trialDays: number, startDate: Date, activationDate: Date, cancellationDate: Date, paymentInterval: SubscriptionPaymentInterval, paymentIban: string, roi: roiInterface, additionalFormationQuantity: number, webPage: boolean, smsCampaign: boolean, trainingOptionalOne: Date, trainingOptionalTwo: Date, webcam: boolean, billing: boolean, movaPackage: string, packInfo: boolean, checkList: any);
|
|
49
|
+
constructor(id: string, garageId: string, type: SubscriptionType, state: SubscriptionState, companyName: string, companyEmail: string, companySiren: string, companyLegalForm: string, trialDays: number, startDate: Date, activationDate: Date, cancellationDate: Date, paymentInterval: SubscriptionPaymentInterval, paymentIban: string, roi: roiInterface, additionalFormationQuantity: number, webPage: boolean, smsCampaign: boolean, trainingOptionalOne: Date, trainingOptionalTwo: Date, webcam: boolean, billing: boolean, movaPackage: string, packInfo: boolean, checkList: any, expertMonthly: boolean);
|
|
49
50
|
}
|
|
50
51
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
var Subscription = /** @class */ (function () {
|
|
4
|
-
function Subscription(id, garageId, type, state, companyName, companyEmail, companySiren, companyLegalForm, trialDays, startDate, activationDate, cancellationDate, paymentInterval, paymentIban, roi, additionalFormationQuantity, webPage, smsCampaign, trainingOptionalOne, trainingOptionalTwo, webcam, billing, movaPackage, packInfo, checkList) {
|
|
4
|
+
function Subscription(id, garageId, type, state, companyName, companyEmail, companySiren, companyLegalForm, trialDays, startDate, activationDate, cancellationDate, paymentInterval, paymentIban, roi, additionalFormationQuantity, webPage, smsCampaign, trainingOptionalOne, trainingOptionalTwo, webcam, billing, movaPackage, packInfo, checkList, expertMonthly) {
|
|
5
5
|
this.id = id;
|
|
6
6
|
this.garageId = garageId;
|
|
7
7
|
this.type = type;
|
|
@@ -27,6 +27,7 @@ var Subscription = /** @class */ (function () {
|
|
|
27
27
|
this.packInfo = packInfo;
|
|
28
28
|
this.smsCampaign = smsCampaign;
|
|
29
29
|
this.checkList = checkList;
|
|
30
|
+
this.expertMonthly = expertMonthly;
|
|
30
31
|
}
|
|
31
32
|
return Subscription;
|
|
32
33
|
}());
|
package/package.json
CHANGED
|
@@ -49,6 +49,7 @@ export default class Subscription {
|
|
|
49
49
|
movaPackage: string;
|
|
50
50
|
packInfo: boolean;
|
|
51
51
|
smsCampaign: boolean;
|
|
52
|
+
expertMonthly: boolean;
|
|
52
53
|
checkList: any;
|
|
53
54
|
|
|
54
55
|
constructor(
|
|
@@ -76,7 +77,8 @@ export default class Subscription {
|
|
|
76
77
|
billing: boolean,
|
|
77
78
|
movaPackage: string,
|
|
78
79
|
packInfo: boolean,
|
|
79
|
-
checkList: any
|
|
80
|
+
checkList: any,
|
|
81
|
+
expertMonthly: boolean
|
|
80
82
|
) {
|
|
81
83
|
this.id = id;
|
|
82
84
|
this.garageId = garageId;
|
|
@@ -103,5 +105,6 @@ export default class Subscription {
|
|
|
103
105
|
this.packInfo = packInfo;
|
|
104
106
|
this.smsCampaign = smsCampaign;
|
|
105
107
|
this.checkList = checkList;
|
|
108
|
+
this.expertMonthly = expertMonthly;
|
|
106
109
|
}
|
|
107
110
|
}
|