ch-admin-api-client-typescript 5.36.80 → 5.36.82
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.
- package/lib/api/countries-api.d.ts +306 -0
- package/lib/api/countries-api.d.ts.map +1 -1
- package/lib/api/countries-api.js +473 -0
- package/lib/models/country-item-model.d.ts +6 -0
- package/lib/models/country-item-model.d.ts.map +1 -1
- package/lib/models/country-language-item-model.d.ts +49 -0
- package/lib/models/country-language-item-model.d.ts.map +1 -0
- package/lib/models/country-language-item-model.js +15 -0
- package/lib/models/country-language-model.d.ts +49 -0
- package/lib/models/country-language-model.d.ts.map +1 -0
- package/lib/models/country-language-model.js +15 -0
- package/lib/models/country-languages-model.d.ts +33 -0
- package/lib/models/country-languages-model.d.ts.map +1 -0
- package/lib/models/country-languages-model.js +15 -0
- package/lib/models/country-model.d.ts +6 -0
- package/lib/models/country-model.d.ts.map +1 -1
- package/lib/models/create-country-command.d.ts +6 -0
- package/lib/models/create-country-command.d.ts.map +1 -1
- package/lib/models/index.d.ts +5 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +5 -0
- package/lib/models/save-country-language-command.d.ts +25 -0
- package/lib/models/save-country-language-command.d.ts.map +1 -0
- package/lib/models/save-country-language-command.js +15 -0
- package/lib/models/sort-country-languages-command.d.ts +26 -0
- package/lib/models/sort-country-languages-command.d.ts.map +1 -0
- package/lib/models/sort-country-languages-command.js +15 -0
- package/lib/models/update-country-command.d.ts +6 -0
- package/lib/models/update-country-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +5 -0
- package/src/api/countries-api.ts +542 -0
- package/src/models/country-item-model.ts +6 -0
- package/src/models/country-language-item-model.ts +54 -0
- package/src/models/country-language-model.ts +54 -0
- package/src/models/country-languages-model.ts +42 -0
- package/src/models/country-model.ts +6 -0
- package/src/models/create-country-command.ts +6 -0
- package/src/models/index.ts +5 -0
- package/src/models/save-country-language-command.ts +30 -0
- package/src/models/sort-country-languages-command.ts +33 -0
- package/src/models/update-country-command.ts +6 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Admin Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: developer@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CountryLanguageModel
|
|
21
|
+
*/
|
|
22
|
+
export interface CountryLanguageModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CountryLanguageModel
|
|
27
|
+
*/
|
|
28
|
+
'countryId'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CountryLanguageModel
|
|
33
|
+
*/
|
|
34
|
+
'languageCode'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof CountryLanguageModel
|
|
39
|
+
*/
|
|
40
|
+
'order'?: number;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CountryLanguageModel
|
|
45
|
+
*/
|
|
46
|
+
'languageName'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CountryLanguageModel
|
|
51
|
+
*/
|
|
52
|
+
'languageLocalizedName'?: string | null;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Admin Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: developer@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { CountryLanguageItemModel } from './country-language-item-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PagedListMetaData } from './paged-list-meta-data';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface CountryLanguagesModel
|
|
27
|
+
*/
|
|
28
|
+
export interface CountryLanguagesModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<CountryLanguageItemModel>}
|
|
32
|
+
* @memberof CountryLanguagesModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<CountryLanguageItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof CountryLanguagesModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -47,6 +47,12 @@ export interface CreateCountryCommand {
|
|
|
47
47
|
* @memberof CreateCountryCommand
|
|
48
48
|
*/
|
|
49
49
|
'content'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof CreateCountryCommand
|
|
54
|
+
*/
|
|
55
|
+
'countryCode'?: string | null;
|
|
50
56
|
/**
|
|
51
57
|
*
|
|
52
58
|
* @type {string}
|
package/src/models/index.ts
CHANGED
|
@@ -88,6 +88,9 @@ export * from './contributor-sns-handles-model';
|
|
|
88
88
|
export * from './contributors-model';
|
|
89
89
|
export * from './countries-model';
|
|
90
90
|
export * from './country-item-model';
|
|
91
|
+
export * from './country-language-item-model';
|
|
92
|
+
export * from './country-language-model';
|
|
93
|
+
export * from './country-languages-model';
|
|
91
94
|
export * from './country-model';
|
|
92
95
|
export * from './country-sorting-command';
|
|
93
96
|
export * from './create-about-us-page-command';
|
|
@@ -402,6 +405,7 @@ export * from './reschedule-appointment-command';
|
|
|
402
405
|
export * from './review-type';
|
|
403
406
|
export * from './save-appointment-timetable-override-model';
|
|
404
407
|
export * from './save-appointment-timetable-overrides-result-model';
|
|
408
|
+
export * from './save-country-language-command';
|
|
405
409
|
export * from './save-deal-package-appointment-timetable-overrides-command';
|
|
406
410
|
export * from './save-doctor-affiliation-appointment-timetable-overrides-command';
|
|
407
411
|
export * from './save-footer-navigation-item-model';
|
|
@@ -439,6 +443,7 @@ export * from './set-hospital-into-form-template-command';
|
|
|
439
443
|
export * from './set-hospital-into-survey-form-command';
|
|
440
444
|
export * from './sns-handle-model';
|
|
441
445
|
export * from './sns-type';
|
|
446
|
+
export * from './sort-country-languages-command';
|
|
442
447
|
export * from './sort-footer-navigations-command';
|
|
443
448
|
export * from './sorting-item-model';
|
|
444
449
|
export * from './sorting-order';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Admin Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: developer@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface SaveCountryLanguageCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface SaveCountryLanguageCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof SaveCountryLanguageCommand
|
|
27
|
+
*/
|
|
28
|
+
'order'?: number;
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Admin Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: developer@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { SortingItemModel } from './sorting-item-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface SortCountryLanguagesCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface SortCountryLanguagesCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<SortingItemModel>}
|
|
29
|
+
* @memberof SortCountryLanguagesCommand
|
|
30
|
+
*/
|
|
31
|
+
'items'?: Array<SortingItemModel> | null;
|
|
32
|
+
}
|
|
33
|
+
|