samls-js-integration 1.1.21 → 1.1.22

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.
@@ -13,6 +13,6 @@ export declare class PolygonLiteResponseModel {
13
13
  zip: string;
14
14
  weight: number;
15
15
  stateShortName: string;
16
- type: GeometryTypeEnum;
16
+ type: keyof typeof GeometryTypeEnum;
17
17
  constructor(data?: Partial<PolygonLiteResponseModel>);
18
18
  }
@@ -1,7 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PolygonLiteResponseModel = void 0;
4
- const Enums_1 = require("../Enums");
5
4
  class PolygonLiteResponseModel {
6
5
  constructor(data) {
7
6
  this.id = 0;
@@ -17,7 +16,7 @@ class PolygonLiteResponseModel {
17
16
  this.zip = '';
18
17
  this.weight = 0;
19
18
  this.stateShortName = '';
20
- this.type = Enums_1.GeometryTypeEnum.Zip;
19
+ this.type = 'Zip';
21
20
  if (data) {
22
21
  Object.assign(this, data);
23
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "samls-js-integration",
3
- "version": "1.1.21",
3
+ "version": "1.1.22",
4
4
  "description": "samls npm package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",