@eway-crm/connector 1.0.89 → 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.
@@ -1,6 +1,7 @@
1
1
  declare enum ExpirationReason {
2
2
  UnpaidImportantInvoices = "UnpaidImportantInvoices",
3
3
  UncollectableSubscriptionPayment = "UncollectableSubscriptionPayment",
4
+ UncollectableSubscriptionPaymentWithExpiredCard = "UncollectableSubscriptionPaymentWithExpiredCard",
4
5
  StandardSubscriptionPeriod = "StandardSubscriptionPeriod"
5
6
  }
6
7
  export default ExpirationReason;
@@ -4,6 +4,7 @@ var ExpirationReason;
4
4
  (function (ExpirationReason) {
5
5
  ExpirationReason["UnpaidImportantInvoices"] = "UnpaidImportantInvoices";
6
6
  ExpirationReason["UncollectableSubscriptionPayment"] = "UncollectableSubscriptionPayment";
7
+ ExpirationReason["UncollectableSubscriptionPaymentWithExpiredCard"] = "UncollectableSubscriptionPaymentWithExpiredCard";
7
8
  ExpirationReason["StandardSubscriptionPeriod"] = "StandardSubscriptionPeriod";
8
9
  })(ExpirationReason || (ExpirationReason = {}));
9
10
  exports.default = ExpirationReason;
@@ -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;
@@ -1,7 +1,8 @@
1
1
  import { IApiItemBase } from "./IApiItemBase";
2
2
  export interface IApiWorkflowModel extends IApiItemBase {
3
3
  EnumTypeGuid: string;
4
- IsVisible: boolean;
4
+ IsSystem: boolean;
5
5
  ParentEn: string | null;
6
6
  IsUsingFlows: boolean;
7
+ AllowEditItems: boolean;
7
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eway-crm/connector",
3
- "version": "1.0.89",
3
+ "version": "1.0.92",
4
4
  "description": "eWay-CRM API JavaScript connector library.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",