@esolve/ng-esolve-connect 0.20.5 → 0.20.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.
@@ -0,0 +1,5 @@
1
+ export declare class EsolveSpecialDates {
2
+ start: Date;
3
+ end: Date;
4
+ constructor(start: Date, end: Date);
5
+ }
@@ -10,7 +10,9 @@ export interface EsolveSpecialRecord {
10
10
  special_type: string;
11
11
  location_id: number;
12
12
  from_date: string;
13
+ from_date_timestamp: number;
13
14
  to_date: string;
15
+ to_date_timestamp: number;
14
16
  seo_page_priority: number;
15
17
  seo_page_update_frequency: string;
16
18
  seo_page_title: string;
@@ -3,6 +3,7 @@ import { EsolveSeoInfo } from '../shared/seo/esolve-seo-info.model';
3
3
  import { EsolveSeoDetails } from '../shared/seo/esolve-seo-details.interface';
4
4
  import { EsolveSpecialImageCollection } from './esolve-special-image-collection.model';
5
5
  import { EsolveSpecialRecord } from './esolve-special-record.interface';
6
+ import { EsolveSpecialDates } from './esolve-special-dates.model';
6
7
  export declare class EsolveSpecial implements EsolveSeoDetails {
7
8
  id: number;
8
9
  identifier: string;
@@ -17,5 +18,6 @@ export declare class EsolveSpecial implements EsolveSeoDetails {
17
18
  assets: EsolveLinkedAsset[];
18
19
  seo_details: EsolveSeoInfo;
19
20
  images?: EsolveSpecialImageCollection;
21
+ dates?: EsolveSpecialDates;
20
22
  constructor(record: EsolveSpecialRecord);
21
23
  }
@@ -5,4 +5,5 @@ export * from './esolve-special-image-collection.model';
5
5
  export * from './esolve-special-image.model';
6
6
  export * from './esolve-special.model';
7
7
  export * from './esolve-special-options.interface';
8
+ export * from './esolve-special-dates.model';
8
9
  export * from './esolve-specials.service';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esolve/ng-esolve-connect",
3
- "version": "0.20.5",
3
+ "version": "0.20.6",
4
4
  "description": "An Angular library that speaks to an eSolve instance's API",
5
5
  "ng-add": {
6
6
  "save": "true"