@eway-crm/connector 1.0.91 → 1.0.92
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.
|
@@ -23,7 +23,7 @@ interface IApiRestrictionsClass {
|
|
|
23
23
|
FolderName: TFolderName;
|
|
24
24
|
})[];
|
|
25
25
|
}
|
|
26
|
-
interface IApiLicenseExpiration {
|
|
26
|
+
export interface IApiLicenseExpiration {
|
|
27
27
|
ExpiresOn: string;
|
|
28
28
|
Reason: ExpirationReason;
|
|
29
29
|
IsLicenseKeyExpiredAndSystemLocked: boolean;
|
|
@@ -31,7 +31,7 @@ interface IApiLicenseExpiration {
|
|
|
31
31
|
IsLicenseKeyInSilentExpireTimePeriod: boolean;
|
|
32
32
|
NumberOfDaysToLockSystem: number | null;
|
|
33
33
|
}
|
|
34
|
-
interface IApiCurrentUserLicenseInfo {
|
|
34
|
+
export interface IApiCurrentUserLicenseInfo {
|
|
35
35
|
ReceivesAdminLicenseNotifications: boolean;
|
|
36
36
|
ReceivesBillingLicenseNotifications: boolean;
|
|
37
37
|
}
|
|
@@ -39,7 +39,7 @@ interface IApiLicenseKeyInvoices {
|
|
|
39
39
|
UnpaidInvoices: IApiLicenseKeyInvoice[] | null;
|
|
40
40
|
BillingEmails: string[] | null;
|
|
41
41
|
}
|
|
42
|
-
interface IApiLicenseKeyInvoice {
|
|
42
|
+
export interface IApiLicenseKeyInvoice {
|
|
43
43
|
Name: string;
|
|
44
44
|
Url: string;
|
|
45
45
|
DueDate: string;
|