@eway-crm/connector 1.0.147 → 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;
@@ -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;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eway-crm/connector",
3
- "version": "1.0.147",
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",