@eway-crm/connector 1.0.113 → 1.0.115

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
  export declare class ReturnCodes {
2
2
  static readonly rcSuccess = "rcSuccess";
3
3
  static readonly rcBadSession = "rcBadSession";
4
+ static readonly rcDuplicateContact = "rcDuplicateContact";
4
5
  static readonly rcWebServiceMoved = "rcWebServiceMoved";
5
6
  static readonly rcAccessDenied = "rcAccessDenied";
6
7
  static readonly rcLoginUserNameChanged = "rcLoginUserNameChanged";
@@ -6,6 +6,7 @@ var ReturnCodes = /** @class */ (function () {
6
6
  }
7
7
  ReturnCodes.rcSuccess = 'rcSuccess';
8
8
  ReturnCodes.rcBadSession = 'rcBadSession';
9
+ ReturnCodes.rcDuplicateContact = 'rcDuplicateContact';
9
10
  ReturnCodes.rcWebServiceMoved = 'rcWebServiceMoved';
10
11
  ReturnCodes.rcAccessDenied = 'rcAccessDenied';
11
12
  ReturnCodes.rcLoginUserNameChanged = 'rcLoginUserNameChanged';
@@ -50,7 +50,7 @@ export interface IApiLicense {
50
50
  Name: ITranslatableString;
51
51
  })[];
52
52
  BusinessType: LicenceBusinessType;
53
- Features: TFeatureWithEdition[];
53
+ Features: TFeatureWithEdition[] | null;
54
54
  CurrentUserRestrictions: IApiRestrictionsClass;
55
55
  Restrictions: IApiRestrictionsClass;
56
56
  CurrentUserLicenseInfo: IApiCurrentUserLicenseInfo;
@@ -0,0 +1,10 @@
1
+ export interface IApiWebServiceTaskStatus {
2
+ TaskGuid: string;
3
+ IsRunning: boolean;
4
+ FinishedSuccessfully: boolean;
5
+ CurrentIndex: number;
6
+ LastIndex: number;
7
+ ProgressDetail: string;
8
+ Parameters: string;
9
+ AdditionalData: string;
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/lib/index.d.ts CHANGED
@@ -74,6 +74,7 @@ export * from './data/IApiSaveResponse';
74
74
  export * from './data/IApiTask';
75
75
  export * from './data/IApiUser';
76
76
  export * from './data/IApiUserSetting';
77
+ export * from './data/IApiWebServiceTaskStatus';
77
78
  export * from './data/IApiWorkflowActionDerivedItem';
78
79
  export * from './data/IApiWorkflowModel';
79
80
  export * from './data/IApiWorkReport';
package/lib/index.js CHANGED
@@ -113,6 +113,7 @@ __exportStar(require("./data/IApiSaveResponse"), exports);
113
113
  __exportStar(require("./data/IApiTask"), exports);
114
114
  __exportStar(require("./data/IApiUser"), exports);
115
115
  __exportStar(require("./data/IApiUserSetting"), exports);
116
+ __exportStar(require("./data/IApiWebServiceTaskStatus"), exports);
116
117
  __exportStar(require("./data/IApiWorkflowActionDerivedItem"), exports);
117
118
  __exportStar(require("./data/IApiWorkflowModel"), exports);
118
119
  __exportStar(require("./data/IApiWorkReport"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eway-crm/connector",
3
- "version": "1.0.113",
3
+ "version": "1.0.115",
4
4
  "description": "eWay-CRM API JavaScript connector library.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",