ch-admin-api-client-typescript 5.79.27 → 5.79.39
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 +12 -3
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +15 -9
- package/lib/api/search-api.d.ts +76 -0
- package/lib/api/search-api.d.ts.map +1 -1
- package/lib/api/search-api.js +171 -0
- package/lib/models/azure-search-index-indexing-jobs-model.d.ts +26 -0
- package/lib/models/azure-search-index-indexing-jobs-model.d.ts.map +1 -0
- package/lib/models/azure-search-index-indexing-jobs-model.js +15 -0
- package/lib/models/background-job-information.d.ts +56 -0
- package/lib/models/background-job-information.d.ts.map +1 -0
- package/lib/models/background-job-information.js +15 -0
- package/lib/models/background-job-status.d.ts +25 -0
- package/lib/models/background-job-status.d.ts.map +1 -0
- package/lib/models/background-job-status.js +28 -0
- package/lib/models/hospital-simple-item-model.d.ts +18 -0
- package/lib/models/hospital-simple-item-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +3 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +3 -0
- package/package.json +1 -1
package/lib/api/hospitals-api.js
CHANGED
|
@@ -10532,6 +10532,7 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
10532
10532
|
/**
|
|
10533
10533
|
*
|
|
10534
10534
|
* @summary Get all Hospitals. (Auth policies: RequireDefaultAdminAppRole)
|
|
10535
|
+
* @param {boolean} [affiliatedItemsOnly]
|
|
10535
10536
|
* @param {string} [hospitalId]
|
|
10536
10537
|
* @param {StringFilterTypes} [nameFilterType]
|
|
10537
10538
|
* @param {string} [name]
|
|
@@ -10551,12 +10552,12 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
10551
10552
|
* @param {*} [options] Override http request option.
|
|
10552
10553
|
* @throws {RequiredError}
|
|
10553
10554
|
*/
|
|
10554
|
-
apiV1HospitalsSimpleGet: function (hospitalId_1, nameFilterType_1, name_1, countryId_1, created_1, marketingType_1, specialtyTypeId_1, specialtyId_1, exceptHospitalId_1, showHidden_1, languageCode_1, ids_1, paymentEnabled_1, page_1, limit_1, lastRetrieved_1) {
|
|
10555
|
+
apiV1HospitalsSimpleGet: function (affiliatedItemsOnly_1, hospitalId_1, nameFilterType_1, name_1, countryId_1, created_1, marketingType_1, specialtyTypeId_1, specialtyId_1, exceptHospitalId_1, showHidden_1, languageCode_1, ids_1, paymentEnabled_1, page_1, limit_1, lastRetrieved_1) {
|
|
10555
10556
|
var args_1 = [];
|
|
10556
|
-
for (var _i =
|
|
10557
|
-
args_1[_i -
|
|
10557
|
+
for (var _i = 17; _i < arguments.length; _i++) {
|
|
10558
|
+
args_1[_i - 17] = arguments[_i];
|
|
10558
10559
|
}
|
|
10559
|
-
return __awaiter(_this, __spreadArray([hospitalId_1, nameFilterType_1, name_1, countryId_1, created_1, marketingType_1, specialtyTypeId_1, specialtyId_1, exceptHospitalId_1, showHidden_1, languageCode_1, ids_1, paymentEnabled_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (hospitalId, nameFilterType, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
10560
|
+
return __awaiter(_this, __spreadArray([affiliatedItemsOnly_1, hospitalId_1, nameFilterType_1, name_1, countryId_1, created_1, marketingType_1, specialtyTypeId_1, specialtyId_1, exceptHospitalId_1, showHidden_1, languageCode_1, ids_1, paymentEnabled_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (affiliatedItemsOnly, hospitalId, nameFilterType, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
10560
10561
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
10561
10562
|
if (options === void 0) { options = {}; }
|
|
10562
10563
|
return __generator(this, function (_a) {
|
|
@@ -10577,6 +10578,9 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
10577
10578
|
// authentication oauth2 required
|
|
10578
10579
|
// oauth required
|
|
10579
10580
|
_a.sent();
|
|
10581
|
+
if (affiliatedItemsOnly !== undefined) {
|
|
10582
|
+
localVarQueryParameter['AffiliatedItemsOnly'] = affiliatedItemsOnly;
|
|
10583
|
+
}
|
|
10580
10584
|
if (hospitalId !== undefined) {
|
|
10581
10585
|
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
10582
10586
|
}
|
|
@@ -14785,6 +14789,7 @@ var HospitalsApiFp = function (configuration) {
|
|
|
14785
14789
|
/**
|
|
14786
14790
|
*
|
|
14787
14791
|
* @summary Get all Hospitals. (Auth policies: RequireDefaultAdminAppRole)
|
|
14792
|
+
* @param {boolean} [affiliatedItemsOnly]
|
|
14788
14793
|
* @param {string} [hospitalId]
|
|
14789
14794
|
* @param {StringFilterTypes} [nameFilterType]
|
|
14790
14795
|
* @param {string} [name]
|
|
@@ -14804,12 +14809,12 @@ var HospitalsApiFp = function (configuration) {
|
|
|
14804
14809
|
* @param {*} [options] Override http request option.
|
|
14805
14810
|
* @throws {RequiredError}
|
|
14806
14811
|
*/
|
|
14807
|
-
apiV1HospitalsSimpleGet: function (hospitalId, nameFilterType, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
14812
|
+
apiV1HospitalsSimpleGet: function (affiliatedItemsOnly, hospitalId, nameFilterType, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
14808
14813
|
return __awaiter(this, void 0, void 0, function () {
|
|
14809
14814
|
var localVarAxiosArgs;
|
|
14810
14815
|
return __generator(this, function (_a) {
|
|
14811
14816
|
switch (_a.label) {
|
|
14812
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsSimpleGet(hospitalId, nameFilterType, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options)];
|
|
14817
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsSimpleGet(affiliatedItemsOnly, hospitalId, nameFilterType, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options)];
|
|
14813
14818
|
case 1:
|
|
14814
14819
|
localVarAxiosArgs = _a.sent();
|
|
14815
14820
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -17139,6 +17144,7 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
17139
17144
|
/**
|
|
17140
17145
|
*
|
|
17141
17146
|
* @summary Get all Hospitals. (Auth policies: RequireDefaultAdminAppRole)
|
|
17147
|
+
* @param {boolean} [affiliatedItemsOnly]
|
|
17142
17148
|
* @param {string} [hospitalId]
|
|
17143
17149
|
* @param {StringFilterTypes} [nameFilterType]
|
|
17144
17150
|
* @param {string} [name]
|
|
@@ -17158,8 +17164,8 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
17158
17164
|
* @param {*} [options] Override http request option.
|
|
17159
17165
|
* @throws {RequiredError}
|
|
17160
17166
|
*/
|
|
17161
|
-
apiV1HospitalsSimpleGet: function (hospitalId, nameFilterType, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
17162
|
-
return localVarFp.apiV1HospitalsSimpleGet(hospitalId, nameFilterType, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
17167
|
+
apiV1HospitalsSimpleGet: function (affiliatedItemsOnly, hospitalId, nameFilterType, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options) {
|
|
17168
|
+
return localVarFp.apiV1HospitalsSimpleGet(affiliatedItemsOnly, hospitalId, nameFilterType, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
17163
17169
|
},
|
|
17164
17170
|
/**
|
|
17165
17171
|
*
|
|
@@ -19348,7 +19354,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
19348
19354
|
HospitalsApi.prototype.apiV1HospitalsSimpleGet = function (requestParameters, options) {
|
|
19349
19355
|
var _this = this;
|
|
19350
19356
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
19351
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsSimpleGet(requestParameters.hospitalId, requestParameters.nameFilterType, requestParameters.name, requestParameters.countryId, requestParameters.created, requestParameters.marketingType, requestParameters.specialtyTypeId, requestParameters.specialtyId, requestParameters.exceptHospitalId, requestParameters.showHidden, requestParameters.languageCode, requestParameters.ids, requestParameters.paymentEnabled, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
19357
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsSimpleGet(requestParameters.affiliatedItemsOnly, requestParameters.hospitalId, requestParameters.nameFilterType, requestParameters.name, requestParameters.countryId, requestParameters.created, requestParameters.marketingType, requestParameters.specialtyTypeId, requestParameters.specialtyId, requestParameters.exceptHospitalId, requestParameters.showHidden, requestParameters.languageCode, requestParameters.ids, requestParameters.paymentEnabled, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
19352
19358
|
};
|
|
19353
19359
|
/**
|
|
19354
19360
|
*
|
package/lib/api/search-api.d.ts
CHANGED
|
@@ -12,12 +12,28 @@
|
|
|
12
12
|
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { AzureSearchIndexIndexingJobsModel } from '../models';
|
|
15
16
|
import { SearchIndexType } from '../models';
|
|
16
17
|
/**
|
|
17
18
|
* SearchApi - axios parameter creator
|
|
18
19
|
* @export
|
|
19
20
|
*/
|
|
20
21
|
export declare const SearchApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @summary Get azure search index indexing jobs (Auth policies: RequireAdministratorRole)
|
|
25
|
+
* @param {*} [options] Override http request option.
|
|
26
|
+
* @throws {RequiredError}
|
|
27
|
+
*/
|
|
28
|
+
apiV1SearchAzuresearchindexindexingjobsGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @summary Delete azure search index indexing job by jobId (Auth policies: RequireAdministratorRole)
|
|
32
|
+
* @param {string} jobId
|
|
33
|
+
* @param {*} [options] Override http request option.
|
|
34
|
+
* @throws {RequiredError}
|
|
35
|
+
*/
|
|
36
|
+
apiV1SearchAzuresearchindexindexingjobsJobIdDelete: (jobId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21
37
|
/**
|
|
22
38
|
*
|
|
23
39
|
* @summary Upload documents into azure search index. <br>To start uploading from where it left off, enter the current number of documents into skip value. (Auth policies: RequireAdministratorRole)
|
|
@@ -42,6 +58,21 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
42
58
|
* @export
|
|
43
59
|
*/
|
|
44
60
|
export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @summary Get azure search index indexing jobs (Auth policies: RequireAdministratorRole)
|
|
64
|
+
* @param {*} [options] Override http request option.
|
|
65
|
+
* @throws {RequiredError}
|
|
66
|
+
*/
|
|
67
|
+
apiV1SearchAzuresearchindexindexingjobsGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AzureSearchIndexIndexingJobsModel>>;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @summary Delete azure search index indexing job by jobId (Auth policies: RequireAdministratorRole)
|
|
71
|
+
* @param {string} jobId
|
|
72
|
+
* @param {*} [options] Override http request option.
|
|
73
|
+
* @throws {RequiredError}
|
|
74
|
+
*/
|
|
75
|
+
apiV1SearchAzuresearchindexindexingjobsJobIdDelete(jobId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
45
76
|
/**
|
|
46
77
|
*
|
|
47
78
|
* @summary Upload documents into azure search index. <br>To start uploading from where it left off, enter the current number of documents into skip value. (Auth policies: RequireAdministratorRole)
|
|
@@ -66,6 +97,21 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
66
97
|
* @export
|
|
67
98
|
*/
|
|
68
99
|
export declare const SearchApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
* @summary Get azure search index indexing jobs (Auth policies: RequireAdministratorRole)
|
|
103
|
+
* @param {*} [options] Override http request option.
|
|
104
|
+
* @throws {RequiredError}
|
|
105
|
+
*/
|
|
106
|
+
apiV1SearchAzuresearchindexindexingjobsGet(options?: any): AxiosPromise<AzureSearchIndexIndexingJobsModel>;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @summary Delete azure search index indexing job by jobId (Auth policies: RequireAdministratorRole)
|
|
110
|
+
* @param {string} jobId
|
|
111
|
+
* @param {*} [options] Override http request option.
|
|
112
|
+
* @throws {RequiredError}
|
|
113
|
+
*/
|
|
114
|
+
apiV1SearchAzuresearchindexindexingjobsJobIdDelete(jobId: string, options?: any): AxiosPromise<boolean>;
|
|
69
115
|
/**
|
|
70
116
|
*
|
|
71
117
|
* @summary Upload documents into azure search index. <br>To start uploading from where it left off, enter the current number of documents into skip value. (Auth policies: RequireAdministratorRole)
|
|
@@ -85,6 +131,19 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
|
|
|
85
131
|
*/
|
|
86
132
|
apiV1SearchRecreatePost(selectedIndextypes: Array<SearchIndexType>, recreateIndex?: boolean, options?: any): AxiosPromise<string>;
|
|
87
133
|
};
|
|
134
|
+
/**
|
|
135
|
+
* Request parameters for apiV1SearchAzuresearchindexindexingjobsJobIdDelete operation in SearchApi.
|
|
136
|
+
* @export
|
|
137
|
+
* @interface SearchApiApiV1SearchAzuresearchindexindexingjobsJobIdDeleteRequest
|
|
138
|
+
*/
|
|
139
|
+
export interface SearchApiApiV1SearchAzuresearchindexindexingjobsJobIdDeleteRequest {
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {string}
|
|
143
|
+
* @memberof SearchApiApiV1SearchAzuresearchindexindexingjobsJobIdDelete
|
|
144
|
+
*/
|
|
145
|
+
readonly jobId: string;
|
|
146
|
+
}
|
|
88
147
|
/**
|
|
89
148
|
* Request parameters for apiV1SearchDocumentsPost operation in SearchApi.
|
|
90
149
|
* @export
|
|
@@ -130,6 +189,23 @@ export interface SearchApiApiV1SearchRecreatePostRequest {
|
|
|
130
189
|
* @extends {BaseAPI}
|
|
131
190
|
*/
|
|
132
191
|
export declare class SearchApi extends BaseAPI {
|
|
192
|
+
/**
|
|
193
|
+
*
|
|
194
|
+
* @summary Get azure search index indexing jobs (Auth policies: RequireAdministratorRole)
|
|
195
|
+
* @param {*} [options] Override http request option.
|
|
196
|
+
* @throws {RequiredError}
|
|
197
|
+
* @memberof SearchApi
|
|
198
|
+
*/
|
|
199
|
+
apiV1SearchAzuresearchindexindexingjobsGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchIndexIndexingJobsModel, any>>;
|
|
200
|
+
/**
|
|
201
|
+
*
|
|
202
|
+
* @summary Delete azure search index indexing job by jobId (Auth policies: RequireAdministratorRole)
|
|
203
|
+
* @param {SearchApiApiV1SearchAzuresearchindexindexingjobsJobIdDeleteRequest} requestParameters Request parameters.
|
|
204
|
+
* @param {*} [options] Override http request option.
|
|
205
|
+
* @throws {RequiredError}
|
|
206
|
+
* @memberof SearchApi
|
|
207
|
+
*/
|
|
208
|
+
apiV1SearchAzuresearchindexindexingjobsJobIdDelete(requestParameters: SearchApiApiV1SearchAzuresearchindexindexingjobsJobIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
133
209
|
/**
|
|
134
210
|
*
|
|
135
211
|
* @summary Upload documents into azure search index. <br>To start uploading from where it left off, enter the current number of documents into skip value. (Auth policies: RequireAdministratorRole)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-api.d.ts","sourceRoot":"","sources":["../../src/api/search-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"search-api.d.ts","sourceRoot":"","sources":["../../src/api/search-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAE7F,OAAO,EAAE,iCAAiC,EAAE,MAAM,WAAW,CAAC;AAI9D,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAC5C;;;GAGG;AACH,eAAO,MAAM,0BAA0B,mBAA6B,aAAa;IAEzE;;;;;OAKG;2DACyD,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA4B1G;;;;;;OAMG;gEAC+D,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA+BjI;;;;;;;OAOG;kDACiD,eAAe,SAAS,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAsC3I;;;;;;;OAOG;kDACiD,KAAK,CAAC,eAAe,CAAC,kBAAkB,OAAO,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;CAuCnK,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,WAAW,mBAA4B,aAAa;IAGzD;;;;;OAKG;yDACwD,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,iCAAiC,CAAC,CAAC;IAItL;;;;;;OAMG;8DAC6D,MAAM,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,OAAO,CAAC,CAAC;IAInL;;;;;;;OAOG;gDAC+C,eAAe,SAAS,MAAM,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,MAAM,CAAC,CAAC;IAI5L;;;;;;;OAOG;gDAC+C,KAAK,CAAC,eAAe,CAAC,kBAAkB,OAAO,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,MAAM,CAAC,CAAC;CAKpN,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gBAAgB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAGzG;;;;;OAKG;yDACkD,GAAG,GAAG,YAAY,CAAC,iCAAiC,CAAC;IAG1G;;;;;;OAMG;8DACuD,MAAM,YAAY,GAAG,GAAG,YAAY,CAAC,OAAO,CAAC;IAGvG;;;;;;;OAOG;gDACyC,eAAe,SAAS,MAAM,YAAY,GAAG,GAAG,YAAY,CAAC,MAAM,CAAC;IAGhH;;;;;;;OAOG;gDACyC,KAAK,CAAC,eAAe,CAAC,kBAAkB,OAAO,YAAY,GAAG,GAAG,YAAY,CAAC,MAAM,CAAC;CAIxI,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,kEAAkE;IAC/E;;;;OAIG;IACH,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAA;CACzB;AAED;;;;GAIG;AACH,MAAM,WAAW,wCAAwC;IACrD;;;;OAIG;IACH,QAAQ,CAAC,iBAAiB,EAAE,eAAe,CAAA;IAE3C;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;CACzB;AAED;;;;GAIG;AACH,MAAM,WAAW,uCAAuC;IACpD;;;;OAIG;IACH,QAAQ,CAAC,kBAAkB,EAAE,KAAK,CAAC,eAAe,CAAC,CAAA;IAEnD;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,OAAO,CAAA;CACnC;AAED;;;;;GAKG;AACH,qBAAa,SAAU,SAAQ,OAAO;IAClC;;;;;;OAMG;IACI,0CAA0C,CAAC,OAAO,CAAC,EAAE,kBAAkB;IAI9E;;;;;;;OAOG;IACI,kDAAkD,CAAC,iBAAiB,EAAE,kEAAkE,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI7K;;;;;;;OAOG;IACI,wBAAwB,CAAC,iBAAiB,EAAE,wCAAwC,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIzH;;;;;;;OAOG;IACI,uBAAuB,CAAC,iBAAiB,EAAE,uCAAuC,EAAE,OAAO,CAAC,EAAE,kBAAkB;CAG1H"}
|
package/lib/api/search-api.js
CHANGED
|
@@ -101,6 +101,96 @@ var base_1 = require("../base");
|
|
|
101
101
|
var SearchApiAxiosParamCreator = function (configuration) {
|
|
102
102
|
var _this = this;
|
|
103
103
|
return {
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @summary Get azure search index indexing jobs (Auth policies: RequireAdministratorRole)
|
|
107
|
+
* @param {*} [options] Override http request option.
|
|
108
|
+
* @throws {RequiredError}
|
|
109
|
+
*/
|
|
110
|
+
apiV1SearchAzuresearchindexindexingjobsGet: function () {
|
|
111
|
+
var args_1 = [];
|
|
112
|
+
for (var _i = 0; _i < arguments.length; _i++) {
|
|
113
|
+
args_1[_i] = arguments[_i];
|
|
114
|
+
}
|
|
115
|
+
return __awaiter(_this, __spreadArray([], args_1, true), void 0, function (options) {
|
|
116
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
117
|
+
if (options === void 0) { options = {}; }
|
|
118
|
+
return __generator(this, function (_a) {
|
|
119
|
+
switch (_a.label) {
|
|
120
|
+
case 0:
|
|
121
|
+
localVarPath = "/api/v1/search/azuresearchindexindexingjobs";
|
|
122
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
123
|
+
if (configuration) {
|
|
124
|
+
baseOptions = configuration.baseOptions;
|
|
125
|
+
}
|
|
126
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
127
|
+
localVarHeaderParameter = {};
|
|
128
|
+
localVarQueryParameter = {};
|
|
129
|
+
// authentication oauth2 required
|
|
130
|
+
// oauth required
|
|
131
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)];
|
|
132
|
+
case 1:
|
|
133
|
+
// authentication oauth2 required
|
|
134
|
+
// oauth required
|
|
135
|
+
_a.sent();
|
|
136
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
137
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
138
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
139
|
+
return [2 /*return*/, {
|
|
140
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
141
|
+
options: localVarRequestOptions,
|
|
142
|
+
}];
|
|
143
|
+
}
|
|
144
|
+
});
|
|
145
|
+
});
|
|
146
|
+
},
|
|
147
|
+
/**
|
|
148
|
+
*
|
|
149
|
+
* @summary Delete azure search index indexing job by jobId (Auth policies: RequireAdministratorRole)
|
|
150
|
+
* @param {string} jobId
|
|
151
|
+
* @param {*} [options] Override http request option.
|
|
152
|
+
* @throws {RequiredError}
|
|
153
|
+
*/
|
|
154
|
+
apiV1SearchAzuresearchindexindexingjobsJobIdDelete: function (jobId_1) {
|
|
155
|
+
var args_1 = [];
|
|
156
|
+
for (var _i = 1; _i < arguments.length; _i++) {
|
|
157
|
+
args_1[_i - 1] = arguments[_i];
|
|
158
|
+
}
|
|
159
|
+
return __awaiter(_this, __spreadArray([jobId_1], args_1, true), void 0, function (jobId, options) {
|
|
160
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
161
|
+
if (options === void 0) { options = {}; }
|
|
162
|
+
return __generator(this, function (_a) {
|
|
163
|
+
switch (_a.label) {
|
|
164
|
+
case 0:
|
|
165
|
+
// verify required parameter 'jobId' is not null or undefined
|
|
166
|
+
(0, common_1.assertParamExists)('apiV1SearchAzuresearchindexindexingjobsJobIdDelete', 'jobId', jobId);
|
|
167
|
+
localVarPath = "/api/v1/search/azuresearchindexindexingjobs/{jobId}"
|
|
168
|
+
.replace("{".concat("jobId", "}"), encodeURIComponent(String(jobId)));
|
|
169
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
170
|
+
if (configuration) {
|
|
171
|
+
baseOptions = configuration.baseOptions;
|
|
172
|
+
}
|
|
173
|
+
localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), options);
|
|
174
|
+
localVarHeaderParameter = {};
|
|
175
|
+
localVarQueryParameter = {};
|
|
176
|
+
// authentication oauth2 required
|
|
177
|
+
// oauth required
|
|
178
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)];
|
|
179
|
+
case 1:
|
|
180
|
+
// authentication oauth2 required
|
|
181
|
+
// oauth required
|
|
182
|
+
_a.sent();
|
|
183
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
184
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
185
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
186
|
+
return [2 /*return*/, {
|
|
187
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
188
|
+
options: localVarRequestOptions,
|
|
189
|
+
}];
|
|
190
|
+
}
|
|
191
|
+
});
|
|
192
|
+
});
|
|
193
|
+
},
|
|
104
194
|
/**
|
|
105
195
|
*
|
|
106
196
|
* @summary Upload documents into azure search index. <br>To start uploading from where it left off, enter the current number of documents into skip value. (Auth policies: RequireAdministratorRole)
|
|
@@ -217,6 +307,45 @@ exports.SearchApiAxiosParamCreator = SearchApiAxiosParamCreator;
|
|
|
217
307
|
var SearchApiFp = function (configuration) {
|
|
218
308
|
var localVarAxiosParamCreator = (0, exports.SearchApiAxiosParamCreator)(configuration);
|
|
219
309
|
return {
|
|
310
|
+
/**
|
|
311
|
+
*
|
|
312
|
+
* @summary Get azure search index indexing jobs (Auth policies: RequireAdministratorRole)
|
|
313
|
+
* @param {*} [options] Override http request option.
|
|
314
|
+
* @throws {RequiredError}
|
|
315
|
+
*/
|
|
316
|
+
apiV1SearchAzuresearchindexindexingjobsGet: function (options) {
|
|
317
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
318
|
+
var localVarAxiosArgs;
|
|
319
|
+
return __generator(this, function (_a) {
|
|
320
|
+
switch (_a.label) {
|
|
321
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1SearchAzuresearchindexindexingjobsGet(options)];
|
|
322
|
+
case 1:
|
|
323
|
+
localVarAxiosArgs = _a.sent();
|
|
324
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
325
|
+
}
|
|
326
|
+
});
|
|
327
|
+
});
|
|
328
|
+
},
|
|
329
|
+
/**
|
|
330
|
+
*
|
|
331
|
+
* @summary Delete azure search index indexing job by jobId (Auth policies: RequireAdministratorRole)
|
|
332
|
+
* @param {string} jobId
|
|
333
|
+
* @param {*} [options] Override http request option.
|
|
334
|
+
* @throws {RequiredError}
|
|
335
|
+
*/
|
|
336
|
+
apiV1SearchAzuresearchindexindexingjobsJobIdDelete: function (jobId, options) {
|
|
337
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
338
|
+
var localVarAxiosArgs;
|
|
339
|
+
return __generator(this, function (_a) {
|
|
340
|
+
switch (_a.label) {
|
|
341
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1SearchAzuresearchindexindexingjobsJobIdDelete(jobId, options)];
|
|
342
|
+
case 1:
|
|
343
|
+
localVarAxiosArgs = _a.sent();
|
|
344
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
345
|
+
}
|
|
346
|
+
});
|
|
347
|
+
});
|
|
348
|
+
},
|
|
220
349
|
/**
|
|
221
350
|
*
|
|
222
351
|
* @summary Upload documents into azure search index. <br>To start uploading from where it left off, enter the current number of documents into skip value. (Auth policies: RequireAdministratorRole)
|
|
@@ -269,6 +398,25 @@ exports.SearchApiFp = SearchApiFp;
|
|
|
269
398
|
var SearchApiFactory = function (configuration, basePath, axios) {
|
|
270
399
|
var localVarFp = (0, exports.SearchApiFp)(configuration);
|
|
271
400
|
return {
|
|
401
|
+
/**
|
|
402
|
+
*
|
|
403
|
+
* @summary Get azure search index indexing jobs (Auth policies: RequireAdministratorRole)
|
|
404
|
+
* @param {*} [options] Override http request option.
|
|
405
|
+
* @throws {RequiredError}
|
|
406
|
+
*/
|
|
407
|
+
apiV1SearchAzuresearchindexindexingjobsGet: function (options) {
|
|
408
|
+
return localVarFp.apiV1SearchAzuresearchindexindexingjobsGet(options).then(function (request) { return request(axios, basePath); });
|
|
409
|
+
},
|
|
410
|
+
/**
|
|
411
|
+
*
|
|
412
|
+
* @summary Delete azure search index indexing job by jobId (Auth policies: RequireAdministratorRole)
|
|
413
|
+
* @param {string} jobId
|
|
414
|
+
* @param {*} [options] Override http request option.
|
|
415
|
+
* @throws {RequiredError}
|
|
416
|
+
*/
|
|
417
|
+
apiV1SearchAzuresearchindexindexingjobsJobIdDelete: function (jobId, options) {
|
|
418
|
+
return localVarFp.apiV1SearchAzuresearchindexindexingjobsJobIdDelete(jobId, options).then(function (request) { return request(axios, basePath); });
|
|
419
|
+
},
|
|
272
420
|
/**
|
|
273
421
|
*
|
|
274
422
|
* @summary Upload documents into azure search index. <br>To start uploading from where it left off, enter the current number of documents into skip value. (Auth policies: RequireAdministratorRole)
|
|
@@ -305,6 +453,29 @@ var SearchApi = /** @class */ (function (_super) {
|
|
|
305
453
|
function SearchApi() {
|
|
306
454
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
307
455
|
}
|
|
456
|
+
/**
|
|
457
|
+
*
|
|
458
|
+
* @summary Get azure search index indexing jobs (Auth policies: RequireAdministratorRole)
|
|
459
|
+
* @param {*} [options] Override http request option.
|
|
460
|
+
* @throws {RequiredError}
|
|
461
|
+
* @memberof SearchApi
|
|
462
|
+
*/
|
|
463
|
+
SearchApi.prototype.apiV1SearchAzuresearchindexindexingjobsGet = function (options) {
|
|
464
|
+
var _this = this;
|
|
465
|
+
return (0, exports.SearchApiFp)(this.configuration).apiV1SearchAzuresearchindexindexingjobsGet(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
466
|
+
};
|
|
467
|
+
/**
|
|
468
|
+
*
|
|
469
|
+
* @summary Delete azure search index indexing job by jobId (Auth policies: RequireAdministratorRole)
|
|
470
|
+
* @param {SearchApiApiV1SearchAzuresearchindexindexingjobsJobIdDeleteRequest} requestParameters Request parameters.
|
|
471
|
+
* @param {*} [options] Override http request option.
|
|
472
|
+
* @throws {RequiredError}
|
|
473
|
+
* @memberof SearchApi
|
|
474
|
+
*/
|
|
475
|
+
SearchApi.prototype.apiV1SearchAzuresearchindexindexingjobsJobIdDelete = function (requestParameters, options) {
|
|
476
|
+
var _this = this;
|
|
477
|
+
return (0, exports.SearchApiFp)(this.configuration).apiV1SearchAzuresearchindexindexingjobsJobIdDelete(requestParameters.jobId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
478
|
+
};
|
|
308
479
|
/**
|
|
309
480
|
*
|
|
310
481
|
* @summary Upload documents into azure search index. <br>To start uploading from where it left off, enter the current number of documents into skip value. (Auth policies: RequireAdministratorRole)
|
|
@@ -0,0 +1,26 @@
|
|
|
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 { BackgroundJobInformation } from './background-job-information';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface AzureSearchIndexIndexingJobsModel
|
|
17
|
+
*/
|
|
18
|
+
export interface AzureSearchIndexIndexingJobsModel {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<BackgroundJobInformation>}
|
|
22
|
+
* @memberof AzureSearchIndexIndexingJobsModel
|
|
23
|
+
*/
|
|
24
|
+
'items'?: Array<BackgroundJobInformation> | null;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=azure-search-index-indexing-jobs-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"azure-search-index-indexing-jobs-model.d.ts","sourceRoot":"","sources":["../../src/models/azure-search-index-indexing-jobs-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AAExE;;;;GAIG;AACH,MAAM,WAAW,iCAAiC;IAC9C;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC;CACpD"}
|
|
@@ -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,56 @@
|
|
|
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 { BackgroundJobStatus } from './background-job-status';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface BackgroundJobInformation
|
|
17
|
+
*/
|
|
18
|
+
export interface BackgroundJobInformation {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof BackgroundJobInformation
|
|
23
|
+
*/
|
|
24
|
+
'jobId'?: string | null;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {BackgroundJobStatus}
|
|
28
|
+
* @memberof BackgroundJobInformation
|
|
29
|
+
*/
|
|
30
|
+
'status'?: BackgroundJobStatus;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Date}
|
|
34
|
+
* @memberof BackgroundJobInformation
|
|
35
|
+
*/
|
|
36
|
+
'createdAt'?: Date;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof BackgroundJobInformation
|
|
41
|
+
*/
|
|
42
|
+
'description'?: string | null;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof BackgroundJobInformation
|
|
47
|
+
*/
|
|
48
|
+
'domain'?: string | null;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof BackgroundJobInformation
|
|
53
|
+
*/
|
|
54
|
+
'recordId'?: string;
|
|
55
|
+
}
|
|
56
|
+
//# sourceMappingURL=background-job-information.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"background-job-information.d.ts","sourceRoot":"","sources":["../../src/models/background-job-information.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,mBAAmB,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -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,25 @@
|
|
|
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 BackgroundJobStatus: {
|
|
18
|
+
readonly Enqueued: "Enqueued";
|
|
19
|
+
readonly Processing: "Processing";
|
|
20
|
+
readonly Succeeded: "Succeeded";
|
|
21
|
+
readonly Failed: "Failed";
|
|
22
|
+
readonly Deleted: "Deleted";
|
|
23
|
+
};
|
|
24
|
+
export type BackgroundJobStatus = typeof BackgroundJobStatus[keyof typeof BackgroundJobStatus];
|
|
25
|
+
//# sourceMappingURL=background-job-status.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"background-job-status.d.ts","sourceRoot":"","sources":["../../src/models/background-job-status.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"}
|
|
@@ -0,0 +1,28 @@
|
|
|
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.BackgroundJobStatus = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
exports.BackgroundJobStatus = {
|
|
23
|
+
Enqueued: 'Enqueued',
|
|
24
|
+
Processing: 'Processing',
|
|
25
|
+
Succeeded: 'Succeeded',
|
|
26
|
+
Failed: 'Failed',
|
|
27
|
+
Deleted: 'Deleted'
|
|
28
|
+
};
|
|
@@ -27,6 +27,24 @@ export interface HospitalSimpleItemModel {
|
|
|
27
27
|
* @memberof HospitalSimpleItemModel
|
|
28
28
|
*/
|
|
29
29
|
'languageCode'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof HospitalSimpleItemModel
|
|
34
|
+
*/
|
|
35
|
+
'logo'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof HospitalSimpleItemModel
|
|
40
|
+
*/
|
|
41
|
+
'logoTransparent'?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof HospitalSimpleItemModel
|
|
46
|
+
*/
|
|
47
|
+
'logoWhite'?: string | null;
|
|
30
48
|
/**
|
|
31
49
|
*
|
|
32
50
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hospital-simple-item-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-simple-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC9B"}
|
|
1
|
+
{"version":3,"file":"hospital-simple-item-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-simple-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC9B"}
|
package/lib/models/index.d.ts
CHANGED
|
@@ -59,6 +59,9 @@ export * from './articles-categories-model';
|
|
|
59
59
|
export * from './articles-model';
|
|
60
60
|
export * from './auditable-entity';
|
|
61
61
|
export * from './auditable-entity-model';
|
|
62
|
+
export * from './azure-search-index-indexing-jobs-model';
|
|
63
|
+
export * from './background-job-information';
|
|
64
|
+
export * from './background-job-status';
|
|
62
65
|
export * from './bank-account-info-item-model';
|
|
63
66
|
export * from './bank-account-info-model';
|
|
64
67
|
export * from './bank-account-infos-model';
|