ch-api-client-typescript2 5.20.29 → 5.21.0

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.
@@ -19,6 +19,7 @@ export declare const PageSectionListType: {
19
19
  readonly List: "List";
20
20
  readonly Grid: "Grid";
21
21
  readonly Slide: "Slide";
22
+ readonly Banner: "Banner";
22
23
  };
23
24
  export type PageSectionListType = typeof PageSectionListType[keyof typeof PageSectionListType];
24
25
  //# sourceMappingURL=page-section-list-type.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"page-section-list-type.d.ts","sourceRoot":"","sources":["../../src/models/page-section-list-type.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,mBAAmB;;;;;CAKtB,CAAC;AAEX,MAAM,MAAM,mBAAmB,GAAG,OAAO,mBAAmB,CAAC,MAAM,OAAO,mBAAmB,CAAC,CAAC"}
1
+ {"version":3,"file":"page-section-list-type.d.ts","sourceRoot":"","sources":["../../src/models/page-section-list-type.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,mBAAmB;;;;;;CAMtB,CAAC;AAEX,MAAM,MAAM,mBAAmB,GAAG,OAAO,mBAAmB,CAAC,MAAM,OAAO,mBAAmB,CAAC,CAAC"}
@@ -23,5 +23,6 @@ exports.PageSectionListType = {
23
23
  None: 'None',
24
24
  List: 'List',
25
25
  Grid: 'Grid',
26
- Slide: 'Slide'
26
+ Slide: 'Slide',
27
+ Banner: 'Banner'
27
28
  };
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { MediaModel } from './media-model';
12
13
  import { PageBlockModel } from './page-block-model';
13
14
  import { PageSectionListType } from './page-section-list-type';
14
15
  /**
@@ -47,5 +48,11 @@ export interface PageSectionModel {
47
48
  * @memberof PageSectionModel
48
49
  */
49
50
  'blocks'?: Array<PageBlockModel> | null;
51
+ /**
52
+ *
53
+ * @type {Array<MediaModel>}
54
+ * @memberof PageSectionModel
55
+ */
56
+ 'medias'?: Array<MediaModel> | null;
50
57
  }
51
58
  //# sourceMappingURL=page-section-model.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"page-section-model.d.ts","sourceRoot":"","sources":["../../src/models/page-section-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAGpD,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAE/D;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,UAAU,CAAC,EAAE,mBAAmB,CAAC;IACjC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;CAC3C"}
1
+ {"version":3,"file":"page-section-model.d.ts","sourceRoot":"","sources":["../../src/models/page-section-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAG3C,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAGpD,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAE/D;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,UAAU,CAAC,EAAE,mBAAmB,CAAC;IACjC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;IACxC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;CACvC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ch-api-client-typescript2",
3
- "version": "5.20.29",
3
+ "version": "5.21.0",
4
4
  "description": "Openapi generated typescript-axios client for CloudHospital",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -24,7 +24,8 @@ export const PageSectionListType = {
24
24
  None: 'None',
25
25
  List: 'List',
26
26
  Grid: 'Grid',
27
- Slide: 'Slide'
27
+ Slide: 'Slide',
28
+ Banner: 'Banner'
28
29
  } as const;
29
30
 
30
31
  export type PageSectionListType = typeof PageSectionListType[keyof typeof PageSectionListType];
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { MediaModel } from './media-model';
16
19
  // May contain unused imports in some cases
17
20
  // @ts-ignore
18
21
  import { PageBlockModel } from './page-block-model';
@@ -56,5 +59,11 @@ export interface PageSectionModel {
56
59
  * @memberof PageSectionModel
57
60
  */
58
61
  'blocks'?: Array<PageBlockModel> | null;
62
+ /**
63
+ *
64
+ * @type {Array<MediaModel>}
65
+ * @memberof PageSectionModel
66
+ */
67
+ 'medias'?: Array<MediaModel> | null;
59
68
  }
60
69