ch-admin-api-client-typescript 5.91.9 → 5.91.14
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/hospitals-api.d.ts +227 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +272 -0
- package/lib/api/redirect-options-api.d.ts +89 -0
- package/lib/api/redirect-options-api.d.ts.map +1 -0
- package/lib/api/redirect-options-api.js +229 -0
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/article-item-model.d.ts +18 -0
- package/lib/models/article-item-model.d.ts.map +1 -1
- package/lib/models/article-model.d.ts +18 -0
- package/lib/models/article-model.d.ts.map +1 -1
- package/lib/models/batch-update-redirect-options-command.d.ts +26 -0
- package/lib/models/batch-update-redirect-options-command.d.ts.map +1 -0
- package/lib/models/batch-update-redirect-options-command.js +15 -0
- package/lib/models/deal-item-model.d.ts +18 -0
- package/lib/models/deal-item-model.d.ts.map +1 -1
- package/lib/models/deal-model.d.ts +18 -0
- package/lib/models/deal-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-item-model.d.ts +18 -0
- package/lib/models/doctor-affiliation-item-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-model.d.ts +18 -0
- package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
- package/lib/models/hospital-service-item-model.d.ts +18 -0
- package/lib/models/hospital-service-item-model.d.ts.map +1 -1
- package/lib/models/hospital-service-model.d.ts +18 -0
- package/lib/models/hospital-service-model.d.ts.map +1 -1
- package/lib/models/hospital-specialty-item-model.d.ts +18 -0
- package/lib/models/hospital-specialty-item-model.d.ts.map +1 -1
- package/lib/models/hospital-specialty-model.d.ts +18 -0
- package/lib/models/hospital-specialty-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +9 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +9 -0
- package/lib/models/redirect-option-batch-item-model.d.ts +39 -0
- package/lib/models/redirect-option-batch-item-model.d.ts.map +1 -0
- package/lib/models/redirect-option-batch-item-model.js +15 -0
- package/lib/models/redirect-option-batch-item-result-model.d.ts +63 -0
- package/lib/models/redirect-option-batch-item-result-model.d.ts.map +1 -0
- package/lib/models/redirect-option-batch-item-result-model.js +15 -0
- package/lib/models/redirect-option-batch-item-status.d.ts +22 -0
- package/lib/models/redirect-option-batch-item-status.d.ts.map +1 -0
- package/lib/models/redirect-option-batch-item-status.js +25 -0
- package/lib/models/redirect-option-batch-not-processed-item-model.d.ts +69 -0
- package/lib/models/redirect-option-batch-not-processed-item-model.d.ts.map +1 -0
- package/lib/models/redirect-option-batch-not-processed-item-model.js +15 -0
- package/lib/models/redirect-option-batch-not-processed-reason.d.ts +22 -0
- package/lib/models/redirect-option-batch-not-processed-reason.d.ts.map +1 -0
- package/lib/models/redirect-option-batch-not-processed-reason.js +25 -0
- package/lib/models/redirect-option-domain.d.ts +23 -0
- package/lib/models/redirect-option-domain.d.ts.map +1 -0
- package/lib/models/redirect-option-domain.js +26 -0
- package/lib/models/redirect-option-source-key-model.d.ts +38 -0
- package/lib/models/redirect-option-source-key-model.d.ts.map +1 -0
- package/lib/models/redirect-option-source-key-model.js +15 -0
- package/lib/models/redirect-options-batch-result-model.d.ts +51 -0
- package/lib/models/redirect-options-batch-result-model.d.ts.map +1 -0
- package/lib/models/redirect-options-batch-result-model.js +15 -0
- package/package.json +1 -1
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Admin Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { RedirectOptionBatchItemStatus } from './redirect-option-batch-item-status';
|
|
13
|
+
import { RedirectOptionDomain } from './redirect-option-domain';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface RedirectOptionBatchItemResultModel
|
|
18
|
+
*/
|
|
19
|
+
export interface RedirectOptionBatchItemResultModel {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof RedirectOptionBatchItemResultModel
|
|
24
|
+
*/
|
|
25
|
+
'index'?: number;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof RedirectOptionBatchItemResultModel
|
|
30
|
+
*/
|
|
31
|
+
'hospitalId'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {RedirectOptionDomain}
|
|
35
|
+
* @memberof RedirectOptionBatchItemResultModel
|
|
36
|
+
*/
|
|
37
|
+
'domain'?: RedirectOptionDomain;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof RedirectOptionBatchItemResultModel
|
|
42
|
+
*/
|
|
43
|
+
'languageCode'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof RedirectOptionBatchItemResultModel
|
|
48
|
+
*/
|
|
49
|
+
'slug'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof RedirectOptionBatchItemResultModel
|
|
54
|
+
*/
|
|
55
|
+
'entityId'?: string;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {RedirectOptionBatchItemStatus}
|
|
59
|
+
* @memberof RedirectOptionBatchItemResultModel
|
|
60
|
+
*/
|
|
61
|
+
'status'?: RedirectOptionBatchItemStatus;
|
|
62
|
+
}
|
|
63
|
+
//# sourceMappingURL=redirect-option-batch-item-result-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"redirect-option-batch-item-result-model.d.ts","sourceRoot":"","sources":["../../src/models/redirect-option-batch-item-result-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,6BAA6B,EAAE,MAAM,qCAAqC,CAAC;AAGpF,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAEhE;;;;GAIG;AACH,MAAM,WAAW,kCAAkC;IAC/C;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,oBAAoB,CAAC;IAChC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,6BAA6B,CAAC;CAC5C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Admin Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare const RedirectOptionBatchItemStatus: {
|
|
18
|
+
readonly Updated: "Updated";
|
|
19
|
+
readonly Unchanged: "Unchanged";
|
|
20
|
+
};
|
|
21
|
+
export type RedirectOptionBatchItemStatus = typeof RedirectOptionBatchItemStatus[keyof typeof RedirectOptionBatchItemStatus];
|
|
22
|
+
//# sourceMappingURL=redirect-option-batch-item-status.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"redirect-option-batch-item-status.d.ts","sourceRoot":"","sources":["../../src/models/redirect-option-batch-item-status.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,6BAA6B;;;CAGhC,CAAC;AAEX,MAAM,MAAM,6BAA6B,GAAG,OAAO,6BAA6B,CAAC,MAAM,OAAO,6BAA6B,CAAC,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.RedirectOptionBatchItemStatus = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
exports.RedirectOptionBatchItemStatus = {
|
|
23
|
+
Updated: 'Updated',
|
|
24
|
+
Unchanged: 'Unchanged'
|
|
25
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Admin Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { RedirectOptionBatchNotProcessedReason } from './redirect-option-batch-not-processed-reason';
|
|
13
|
+
import { RedirectOptionDomain } from './redirect-option-domain';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface RedirectOptionBatchNotProcessedItemModel
|
|
18
|
+
*/
|
|
19
|
+
export interface RedirectOptionBatchNotProcessedItemModel {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof RedirectOptionBatchNotProcessedItemModel
|
|
24
|
+
*/
|
|
25
|
+
'index'?: number;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof RedirectOptionBatchNotProcessedItemModel
|
|
30
|
+
*/
|
|
31
|
+
'hospitalId'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {RedirectOptionDomain}
|
|
35
|
+
* @memberof RedirectOptionBatchNotProcessedItemModel
|
|
36
|
+
*/
|
|
37
|
+
'domain'?: RedirectOptionDomain;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof RedirectOptionBatchNotProcessedItemModel
|
|
42
|
+
*/
|
|
43
|
+
'languageCode'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof RedirectOptionBatchNotProcessedItemModel
|
|
48
|
+
*/
|
|
49
|
+
'slug'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof RedirectOptionBatchNotProcessedItemModel
|
|
54
|
+
*/
|
|
55
|
+
'entityId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {RedirectOptionBatchNotProcessedReason}
|
|
59
|
+
* @memberof RedirectOptionBatchNotProcessedItemModel
|
|
60
|
+
*/
|
|
61
|
+
'reason'?: RedirectOptionBatchNotProcessedReason;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof RedirectOptionBatchNotProcessedItemModel
|
|
66
|
+
*/
|
|
67
|
+
'message'?: string | null;
|
|
68
|
+
}
|
|
69
|
+
//# sourceMappingURL=redirect-option-batch-not-processed-item-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"redirect-option-batch-not-processed-item-model.d.ts","sourceRoot":"","sources":["../../src/models/redirect-option-batch-not-processed-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,qCAAqC,EAAE,MAAM,8CAA8C,CAAC;AAGrG,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAEhE;;;;GAIG;AACH,MAAM,WAAW,wCAAwC;IACrD;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,oBAAoB,CAAC;IAChC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,qCAAqC,CAAC;IACjD;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Admin Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare const RedirectOptionBatchNotProcessedReason: {
|
|
18
|
+
readonly NotFound: "NotFound";
|
|
19
|
+
readonly Ambiguous: "Ambiguous";
|
|
20
|
+
};
|
|
21
|
+
export type RedirectOptionBatchNotProcessedReason = typeof RedirectOptionBatchNotProcessedReason[keyof typeof RedirectOptionBatchNotProcessedReason];
|
|
22
|
+
//# sourceMappingURL=redirect-option-batch-not-processed-reason.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"redirect-option-batch-not-processed-reason.d.ts","sourceRoot":"","sources":["../../src/models/redirect-option-batch-not-processed-reason.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,qCAAqC;;;CAGxC,CAAC;AAEX,MAAM,MAAM,qCAAqC,GAAG,OAAO,qCAAqC,CAAC,MAAM,OAAO,qCAAqC,CAAC,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.RedirectOptionBatchNotProcessedReason = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
exports.RedirectOptionBatchNotProcessedReason = {
|
|
23
|
+
NotFound: 'NotFound',
|
|
24
|
+
Ambiguous: 'Ambiguous'
|
|
25
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Admin Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare const RedirectOptionDomain: {
|
|
18
|
+
readonly Article: "Article";
|
|
19
|
+
readonly HospitalSpecialty: "HospitalSpecialty";
|
|
20
|
+
readonly HospitalService: "HospitalService";
|
|
21
|
+
};
|
|
22
|
+
export type RedirectOptionDomain = typeof RedirectOptionDomain[keyof typeof RedirectOptionDomain];
|
|
23
|
+
//# sourceMappingURL=redirect-option-domain.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"redirect-option-domain.d.ts","sourceRoot":"","sources":["../../src/models/redirect-option-domain.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,oBAAoB;;;;CAIvB,CAAC;AAEX,MAAM,MAAM,oBAAoB,GAAG,OAAO,oBAAoB,CAAC,MAAM,OAAO,oBAAoB,CAAC,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.RedirectOptionDomain = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
exports.RedirectOptionDomain = {
|
|
23
|
+
Article: 'Article',
|
|
24
|
+
HospitalSpecialty: 'HospitalSpecialty',
|
|
25
|
+
HospitalService: 'HospitalService'
|
|
26
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Admin Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { RedirectOptionDomain } from './redirect-option-domain';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RedirectOptionSourceKeyModel
|
|
17
|
+
*/
|
|
18
|
+
export interface RedirectOptionSourceKeyModel {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {RedirectOptionDomain}
|
|
22
|
+
* @memberof RedirectOptionSourceKeyModel
|
|
23
|
+
*/
|
|
24
|
+
'domain'?: RedirectOptionDomain;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof RedirectOptionSourceKeyModel
|
|
29
|
+
*/
|
|
30
|
+
'languageCode'?: string | null;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof RedirectOptionSourceKeyModel
|
|
35
|
+
*/
|
|
36
|
+
'slug'?: string | null;
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=redirect-option-source-key-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"redirect-option-source-key-model.d.ts","sourceRoot":"","sources":["../../src/models/redirect-option-source-key-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAEhE;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IACzC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,oBAAoB,CAAC;IAChC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Admin Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { RedirectOptionBatchItemResultModel } from './redirect-option-batch-item-result-model';
|
|
13
|
+
import { RedirectOptionBatchNotProcessedItemModel } from './redirect-option-batch-not-processed-item-model';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface RedirectOptionsBatchResultModel
|
|
18
|
+
*/
|
|
19
|
+
export interface RedirectOptionsBatchResultModel {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof RedirectOptionsBatchResultModel
|
|
24
|
+
*/
|
|
25
|
+
'totalCount'?: number;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {number}
|
|
29
|
+
* @memberof RedirectOptionsBatchResultModel
|
|
30
|
+
*/
|
|
31
|
+
'processedCount'?: number;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof RedirectOptionsBatchResultModel
|
|
36
|
+
*/
|
|
37
|
+
'notProcessedCount'?: number;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Array<RedirectOptionBatchItemResultModel>}
|
|
41
|
+
* @memberof RedirectOptionsBatchResultModel
|
|
42
|
+
*/
|
|
43
|
+
'processedItems'?: Array<RedirectOptionBatchItemResultModel> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Array<RedirectOptionBatchNotProcessedItemModel>}
|
|
47
|
+
* @memberof RedirectOptionsBatchResultModel
|
|
48
|
+
*/
|
|
49
|
+
'notProcessedItems'?: Array<RedirectOptionBatchNotProcessedItemModel> | null;
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=redirect-options-batch-result-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"redirect-options-batch-result-model.d.ts","sourceRoot":"","sources":["../../src/models/redirect-options-batch-result-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,kCAAkC,EAAE,MAAM,2CAA2C,CAAC;AAG/F,OAAO,EAAE,wCAAwC,EAAE,MAAM,kDAAkD,CAAC;AAE5G;;;;GAIG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,kCAAkC,CAAC,GAAG,IAAI,CAAC;IACpE;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,KAAK,CAAC,wCAAwC,CAAC,GAAG,IAAI,CAAC;CAChF"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|