@esolve/ng-esolve-connect 0.27.4 → 0.27.6

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
  import { EsolveStockImageSize } from '../types';
2
2
  export declare class EsolveStockImage {
3
3
  private image_name;
4
+ private last_modified;
4
5
  /**
5
6
  * Path to tiny stock image
6
7
  */
@@ -21,6 +22,6 @@ export declare class EsolveStockImage {
21
22
  * Path to original stock image
22
23
  */
23
24
  get original_src(): string;
24
- constructor(image_name: string);
25
+ constructor(image_name: string, last_modified?: string);
25
26
  getImagePath(image_size: EsolveStockImageSize): string;
26
27
  }
@@ -173,6 +173,10 @@ export declare class EsolveStockItemBase<T extends EsolveCustomFields = EsolveCu
173
173
  * Image filename
174
174
  */
175
175
  private image_name;
176
+ /**
177
+ * Image Last modified
178
+ */
179
+ private image_last_modified;
176
180
  /**
177
181
  * Path to tiny stock image
178
182
  */
@@ -1,6 +1,7 @@
1
1
  import { EsolveAdditionalStockImageRecord } from './esolve-additional-stock-image-record.interface';
2
2
  export interface EsolveStockImageCollectionRecord {
3
3
  default_image: string;
4
+ default_image_last_modified: string;
4
5
  alt_images: string[];
5
6
  additional_images: EsolveAdditionalStockImageRecord[];
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esolve/ng-esolve-connect",
3
- "version": "0.27.4",
3
+ "version": "0.27.6",
4
4
  "description": "An Angular library that speaks to an eSolve instance's API",
5
5
  "ng-add": {
6
6
  "save": "true"