ch-api-client-typescript2 5.19.16 → 5.19.17

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.
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import { HospitalContactItemModel } from './hospital-contact-item-model';
13
13
  import { LocationModel } from './location-model';
14
+ import { MediaModel } from './media-model';
14
15
  /**
15
16
  *
16
17
  * @export
@@ -71,5 +72,11 @@ export interface HospitalBranchItemMappingModel {
71
72
  * @memberof HospitalBranchItemMappingModel
72
73
  */
73
74
  'hospitalContacts'?: Array<HospitalContactItemModel> | null;
75
+ /**
76
+ *
77
+ * @type {Array<MediaModel>}
78
+ * @memberof HospitalBranchItemMappingModel
79
+ */
80
+ 'hospitalMedias'?: Array<MediaModel> | null;
74
81
  }
75
82
  //# sourceMappingURL=hospital-branch-item-mapping-model.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"hospital-branch-item-mapping-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-branch-item-mapping-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AAGzE,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,8BAA8B;IAC3C;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,aAAa,CAAC;IACnC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC;CAC/D"}
1
+ {"version":3,"file":"hospital-branch-item-mapping-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-branch-item-mapping-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AAGzE,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAGjD,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,8BAA8B;IAC3C;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,aAAa,CAAC;IACnC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC;IAC5D;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;CAC/C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ch-api-client-typescript2",
3
- "version": "5.19.16",
3
+ "version": "5.19.17",
4
4
  "description": "Openapi generated typescript-axios client for CloudHospital",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -19,6 +19,9 @@ import { HospitalContactItemModel } from './hospital-contact-item-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import { LocationModel } from './location-model';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import { MediaModel } from './media-model';
22
25
 
23
26
  /**
24
27
  *
@@ -80,5 +83,11 @@ export interface HospitalBranchItemMappingModel {
80
83
  * @memberof HospitalBranchItemMappingModel
81
84
  */
82
85
  'hospitalContacts'?: Array<HospitalContactItemModel> | null;
86
+ /**
87
+ *
88
+ * @type {Array<MediaModel>}
89
+ * @memberof HospitalBranchItemMappingModel
90
+ */
91
+ 'hospitalMedias'?: Array<MediaModel> | null;
83
92
  }
84
93