@eway-crm/connector 1.0.146 → 1.0.148

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,7 +1,15 @@
1
1
  export interface IApiItemBase {
2
+ Server_ItemCreated: string | null;
3
+ Server_ItemChanged: string | null;
4
+ ItemCreated: string;
5
+ ItemChanged: string;
6
+ FileAs: string | null | undefined;
7
+ OwnerGUID: string;
8
+ CreatedByGUID: string;
9
+ ModifiedByGUID: string;
10
+ IsPrivate: boolean;
2
11
  ItemGUID: string;
3
12
  ItemVersion: number;
4
- FileAs: string | null | undefined;
5
13
  }
6
14
  export interface IApiBoundRelation {
7
15
  RelationType: string;
@@ -58,6 +58,7 @@ export interface IApiLicense {
58
58
  Invoices: IApiLicenseKeyInvoices | null;
59
59
  GeneratedDate: string;
60
60
  DbSize: IApiLicenseDbSizeModel;
61
+ IsCloudHosted: boolean;
61
62
  }
62
63
  export interface IApiLicenseDbSizeModel {
63
64
  IsFull: boolean;
@@ -1,7 +1,15 @@
1
1
  export interface IApiItemBase {
2
+ Server_ItemCreated: string | null;
3
+ Server_ItemChanged: string | null;
4
+ ItemCreated: string;
5
+ ItemChanged: string;
6
+ FileAs: string | null | undefined;
7
+ OwnerGUID: string;
8
+ CreatedByGUID: string;
9
+ ModifiedByGUID: string;
10
+ IsPrivate: boolean;
2
11
  ItemGUID: string;
3
12
  ItemVersion: number;
4
- FileAs: string | null | undefined;
5
13
  }
6
14
  export interface IApiBoundRelation {
7
15
  RelationType: string;
@@ -58,6 +58,7 @@ export interface IApiLicense {
58
58
  Invoices: IApiLicenseKeyInvoices | null;
59
59
  GeneratedDate: string;
60
60
  DbSize: IApiLicenseDbSizeModel;
61
+ IsCloudHosted: boolean;
61
62
  }
62
63
  export interface IApiLicenseDbSizeModel {
63
64
  IsFull: boolean;
package/lib/index.d.ts CHANGED
@@ -790,9 +790,17 @@ declare class RelationTypes {
790
790
  }
791
791
 
792
792
  interface IApiItemBase {
793
+ Server_ItemCreated: string | null;
794
+ Server_ItemChanged: string | null;
795
+ ItemCreated: string;
796
+ ItemChanged: string;
797
+ FileAs: string | null | undefined;
798
+ OwnerGUID: string;
799
+ CreatedByGUID: string;
800
+ ModifiedByGUID: string;
801
+ IsPrivate: boolean;
793
802
  ItemGUID: string;
794
803
  ItemVersion: number;
795
- FileAs: string | null | undefined;
796
804
  }
797
805
  interface IApiBoundRelation {
798
806
  RelationType: string;
@@ -1866,6 +1874,7 @@ interface IApiLicense {
1866
1874
  Invoices: IApiLicenseKeyInvoices | null;
1867
1875
  GeneratedDate: string;
1868
1876
  DbSize: IApiLicenseDbSizeModel;
1877
+ IsCloudHosted: boolean;
1869
1878
  }
1870
1879
  interface IApiLicenseDbSizeModel {
1871
1880
  IsFull: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eway-crm/connector",
3
- "version": "1.0.146",
3
+ "version": "1.0.148",
4
4
  "description": "eWay-CRM API JavaScript connector library.",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/esm/index.js",