samls-js-integration 1.0.69 → 1.0.71

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,4 +1,4 @@
1
- interface Entity<T = number> {
1
+ export interface Entity<T = number> {
2
2
  id: T;
3
3
  createDate: string;
4
4
  updateDate: string;
@@ -1 +1,2 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ import { Entity } from './Entity';
2
+ import { Listing } from './listingPartialEntity';
3
+ export interface ListingSchool extends Entity<number> {
4
+ coreListingId: number;
5
+ listing: Listing;
6
+ schoolId: number;
7
+ distance: number;
8
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export * from './Entity';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./Entity"), exports);
@@ -0,0 +1,10 @@
1
+ import { Entity } from './Entity';
2
+ import { ListingSchool } from './ListingSchool';
3
+ export interface Listing extends Entity {
4
+ sourceUpdateDate: string | null;
5
+ sourceAgentsChangeDate: string | null;
6
+ sourcePhotosChangeDate: string | null;
7
+ sourceAddressChangeDate: string | null;
8
+ sourcePropertyChangeDate: string | null;
9
+ ListingSchools: ListingSchool[];
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export * from './Entities';
1
2
  export * from './Enums';
2
3
  export * from './Common';
3
4
  export * from './Address';
package/dist/index.js CHANGED
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./Entities"), exports);
17
18
  __exportStar(require("./Enums"), exports);
18
19
  __exportStar(require("./Common"), exports);
19
20
  __exportStar(require("./Address"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "samls-js-integration",
3
- "version": "1.0.69",
3
+ "version": "1.0.71",
4
4
  "description": "samls npm package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",