ch-admin-api-client-typescript 5.20.27 → 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.
@@ -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 { PageBlockInputModel } from './page-block-input-model';
13
14
  import { PageSectionListType } from './page-section-list-type';
14
15
  /**
@@ -47,5 +48,11 @@ export interface PageSectionInputModel {
47
48
  * @memberof PageSectionInputModel
48
49
  */
49
50
  'blocks'?: Array<PageBlockInputModel> | null;
51
+ /**
52
+ *
53
+ * @type {Array<MediaModel>}
54
+ * @memberof PageSectionInputModel
55
+ */
56
+ 'medias'?: Array<MediaModel> | null;
50
57
  }
51
58
  //# sourceMappingURL=page-section-input-model.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"page-section-input-model.d.ts","sourceRoot":"","sources":["../../src/models/page-section-input-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAG/D,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAE/D;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;;;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,mBAAmB,CAAC,GAAG,IAAI,CAAC;CAChD"}
1
+ {"version":3,"file":"page-section-input-model.d.ts","sourceRoot":"","sources":["../../src/models/page-section-input-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAG3C,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAG/D,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAE/D;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;;;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,mBAAmB,CAAC,GAAG,IAAI,CAAC;IAC7C;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;CACvC"}
@@ -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"}
@@ -45,6 +45,6 @@ export interface TranslatePageCommand {
45
45
  * @type {boolean}
46
46
  * @memberof TranslatePageCommand
47
47
  */
48
- 'doNotUpdateSlug'?: boolean | null;
48
+ 'useBasisSlugForced'?: boolean | null;
49
49
  }
50
50
  //# sourceMappingURL=translate-page-command.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"translate-page-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-page-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAC1C;;;;OAIG;IACH,0BAA0B,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAClD;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAC3C;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;CACtC"}
1
+ {"version":3,"file":"translate-page-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-page-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAC1C;;;;OAIG;IACH,0BAA0B,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAClD;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAC3C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;CACzC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ch-admin-api-client-typescript",
3
- "version": "5.20.27",
3
+ "version": "5.21.0",
4
4
  "description": "Openapi generated typescript-axios client for CloudHospital admin",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -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 { PageBlockInputModel } from './page-block-input-model';
@@ -56,5 +59,11 @@ export interface PageSectionInputModel {
56
59
  * @memberof PageSectionInputModel
57
60
  */
58
61
  'blocks'?: Array<PageBlockInputModel> | null;
62
+ /**
63
+ *
64
+ * @type {Array<MediaModel>}
65
+ * @memberof PageSectionInputModel
66
+ */
67
+ 'medias'?: Array<MediaModel> | null;
59
68
  }
60
69
 
@@ -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
 
@@ -52,6 +52,6 @@ export interface TranslatePageCommand {
52
52
  * @type {boolean}
53
53
  * @memberof TranslatePageCommand
54
54
  */
55
- 'doNotUpdateSlug'?: boolean | null;
55
+ 'useBasisSlugForced'?: boolean | null;
56
56
  }
57
57