@esolve/ng-esolve-connect 0.47.0 → 0.47.2

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.
@@ -2,6 +2,7 @@ import { EsolveStockImageSize } from '../../stock';
2
2
  import { EsolveTransactionItemRecord } from '../interfaces';
3
3
  import { EsolveTransactionItemPrice } from './esolve-transaction-item-price.model';
4
4
  export declare class EsolveTransactionItem {
5
+ id: number;
5
6
  code: string;
6
7
  name: string;
7
8
  sef_name: string;
@@ -34,6 +35,6 @@ export declare class EsolveTransactionItem {
34
35
  * Path to original stock image
35
36
  */
36
37
  get original_image_src(): string;
37
- constructor(record?: EsolveTransactionItemRecord);
38
+ constructor(record?: Partial<EsolveTransactionItemRecord>);
38
39
  getImagePath(image_size: EsolveStockImageSize): string;
39
40
  }
@@ -1,4 +1,5 @@
1
1
  export interface EsolveTransactionItemRecord {
2
+ id: number;
2
3
  code: string;
3
4
  name: string;
4
5
  sef_name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esolve/ng-esolve-connect",
3
- "version": "0.47.0",
3
+ "version": "0.47.2",
4
4
  "homepage": "https://www.esolve.co.za/",
5
5
  "description": "An Angular library that speaks to an eSolve instance's API",
6
6
  "peerDependencies": {