@softheon/armature 19.20.0 → 19.20.3

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.
@@ -5,6 +5,8 @@ export declare class MarketSelectionConfig {
5
5
  export interface MarketSelection {
6
6
  name?: string;
7
7
  icon?: string;
8
+ /** Logo Url */
9
+ logoUrl?: String;
8
10
  /** Api Url */
9
11
  apiUrl?: string;
10
12
  }
@@ -9,7 +9,6 @@
9
9
  * https://github.com/swagger-api/swagger-codegen.git
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { ApplicationType } from './applicationType';
13
12
  import { Policy } from './policy';
14
13
  /**
15
14
  * The account management assertion model
@@ -47,12 +46,4 @@ export interface AccountManagementAssertionModel {
47
46
  * Gets or sets the broker identifier type
48
47
  */
49
48
  brokerIdType?: string;
50
- /**
51
- * Gets or sets application type
52
- */
53
- applicationType?: ApplicationType;
54
- /**
55
- * Gets or sets plan name source (repo)
56
- */
57
- planDataSource?: string;
58
49
  }
@@ -9,7 +9,6 @@
9
9
  * https://github.com/swagger-api/swagger-codegen.git
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { ApplicationType } from './applicationType';
13
12
  import { CoverageDetail } from './coverageDetail';
14
13
  import { Finance } from './finance';
15
14
  import { Person } from './person';
@@ -49,12 +48,4 @@ export interface Policy {
49
48
  * Gets or sets the members.
50
49
  */
51
50
  members?: Array<Person>;
52
- /**
53
- * Gets or sets application type
54
- */
55
- applicationType?: ApplicationType;
56
- /**
57
- * Gets or sets plan name source (repo)
58
- */
59
- planDataSource?: string;
60
51
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softheon/armature",
3
- "version": "19.20.0",
3
+ "version": "19.20.3",
4
4
  "dependencies": {
5
5
  "tslib": "^2.5.0"
6
6
  },
@@ -1,31 +0,0 @@
1
- /** The application type enum */
2
- export declare enum ApplicationType {
3
- /**
4
- * The on exchange QHP application type
5
- */
6
- OnExQhp = "OnExQhp",
7
- /**
8
- * The on exchange QHP application type
9
- */
10
- SmallGroup = "SmallGroup",
11
- /**
12
- * The off exchange QHP application type
13
- */
14
- OffExQhp = "OffExQhp",
15
- /**
16
- * The medicare application type
17
- */
18
- Medicare = "Medicare",
19
- /**
20
- * The vision application type
21
- */
22
- Vision = "Vision",
23
- /**
24
- * The dental application type
25
- */
26
- Dental = "Dental",
27
- /**
28
- * The undefined application type
29
- */
30
- Undefined = "Undefined"
31
- }