ch-admin-api-client-typescript 5.76.29 → 5.76.37
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/chadmins-api.d.ts +20 -0
- package/lib/api/chadmins-api.d.ts.map +1 -1
- package/lib/api/chadmins-api.js +20 -0
- package/lib/api/chmanagers-api.d.ts +20 -0
- package/lib/api/chmanagers-api.d.ts.map +1 -1
- package/lib/api/chmanagers-api.js +20 -0
- package/lib/api/content-managers-api.d.ts +24 -0
- package/lib/api/content-managers-api.d.ts.map +1 -1
- package/lib/api/content-managers-api.js +24 -0
- package/lib/api/general-articles-api.d.ts +12 -3
- package/lib/api/general-articles-api.d.ts.map +1 -1
- package/lib/api/general-articles-api.js +15 -9
- package/lib/api/patient-managers-api.d.ts +24 -0
- package/lib/api/patient-managers-api.d.ts.map +1 -1
- package/lib/api/patient-managers-api.js +24 -0
- package/lib/api/patients-api.d.ts +48 -0
- package/lib/api/patients-api.d.ts.map +1 -1
- package/lib/api/patients-api.js +48 -0
- package/lib/models/general-article-item-model.d.ts +2 -2
- package/lib/models/general-article-item-model.d.ts.map +1 -1
- package/lib/models/general-article-model.d.ts +2 -2
- package/lib/models/general-article-model.d.ts.map +1 -1
- package/lib/models/hospital-simple-item-model.d.ts +6 -0
- package/lib/models/hospital-simple-item-model.d.ts.map +1 -1
- package/lib/models/hospital-simple-model.d.ts +6 -0
- package/lib/models/hospital-simple-model.d.ts.map +1 -1
- package/lib/models/web-app-item-model.d.ts +6 -6
- package/lib/models/web-app-item-model.d.ts.map +1 -1
- package/lib/models/web-app-model.d.ts +6 -6
- package/lib/models/web-app-model.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1484,6 +1484,7 @@ var GeneralArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
1484
1484
|
* @param {string} [exceptHospitalId]
|
|
1485
1485
|
* @param {string} [contributorId]
|
|
1486
1486
|
* @param {string} [articleCategoryId]
|
|
1487
|
+
* @param {boolean} [includesSubArticleCategoryEntries]
|
|
1487
1488
|
* @param {string} [languageCode]
|
|
1488
1489
|
* @param {boolean} [showHidden]
|
|
1489
1490
|
* @param {number} [page]
|
|
@@ -1492,12 +1493,12 @@ var GeneralArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
1492
1493
|
* @param {*} [options] Override http request option.
|
|
1493
1494
|
* @throws {RequiredError}
|
|
1494
1495
|
*/
|
|
1495
|
-
apiV1GeneralarticlesGet: function (id_1, name_1, description_1, articleType_1, status_1, userId_1, userName_1, hospitalId_1, hospitalName_1, countryId_1, tag_1, exceptArticleId_1, exceptHospitalId_1, contributorId_1, articleCategoryId_1, languageCode_1, showHidden_1, page_1, limit_1, lastRetrieved_1) {
|
|
1496
|
+
apiV1GeneralarticlesGet: function (id_1, name_1, description_1, articleType_1, status_1, userId_1, userName_1, hospitalId_1, hospitalName_1, countryId_1, tag_1, exceptArticleId_1, exceptHospitalId_1, contributorId_1, articleCategoryId_1, includesSubArticleCategoryEntries_1, languageCode_1, showHidden_1, page_1, limit_1, lastRetrieved_1) {
|
|
1496
1497
|
var args_1 = [];
|
|
1497
|
-
for (var _i =
|
|
1498
|
-
args_1[_i -
|
|
1498
|
+
for (var _i = 21; _i < arguments.length; _i++) {
|
|
1499
|
+
args_1[_i - 21] = arguments[_i];
|
|
1499
1500
|
}
|
|
1500
|
-
return __awaiter(_this, __spreadArray([id_1, name_1, description_1, articleType_1, status_1, userId_1, userName_1, hospitalId_1, hospitalName_1, countryId_1, tag_1, exceptArticleId_1, exceptHospitalId_1, contributorId_1, articleCategoryId_1, languageCode_1, showHidden_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (id, name, description, articleType, status, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, articleCategoryId, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
1501
|
+
return __awaiter(_this, __spreadArray([id_1, name_1, description_1, articleType_1, status_1, userId_1, userName_1, hospitalId_1, hospitalName_1, countryId_1, tag_1, exceptArticleId_1, exceptHospitalId_1, contributorId_1, articleCategoryId_1, includesSubArticleCategoryEntries_1, languageCode_1, showHidden_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (id, name, description, articleType, status, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, articleCategoryId, includesSubArticleCategoryEntries, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
1501
1502
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
1502
1503
|
if (options === void 0) { options = {}; }
|
|
1503
1504
|
return __generator(this, function (_a) {
|
|
@@ -1563,6 +1564,9 @@ var GeneralArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
1563
1564
|
if (articleCategoryId !== undefined) {
|
|
1564
1565
|
localVarQueryParameter['ArticleCategoryId'] = articleCategoryId;
|
|
1565
1566
|
}
|
|
1567
|
+
if (includesSubArticleCategoryEntries !== undefined) {
|
|
1568
|
+
localVarQueryParameter['IncludesSubArticleCategoryEntries'] = includesSubArticleCategoryEntries;
|
|
1569
|
+
}
|
|
1566
1570
|
if (languageCode !== undefined) {
|
|
1567
1571
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
1568
1572
|
}
|
|
@@ -2213,6 +2217,7 @@ var GeneralArticlesApiFp = function (configuration) {
|
|
|
2213
2217
|
* @param {string} [exceptHospitalId]
|
|
2214
2218
|
* @param {string} [contributorId]
|
|
2215
2219
|
* @param {string} [articleCategoryId]
|
|
2220
|
+
* @param {boolean} [includesSubArticleCategoryEntries]
|
|
2216
2221
|
* @param {string} [languageCode]
|
|
2217
2222
|
* @param {boolean} [showHidden]
|
|
2218
2223
|
* @param {number} [page]
|
|
@@ -2221,12 +2226,12 @@ var GeneralArticlesApiFp = function (configuration) {
|
|
|
2221
2226
|
* @param {*} [options] Override http request option.
|
|
2222
2227
|
* @throws {RequiredError}
|
|
2223
2228
|
*/
|
|
2224
|
-
apiV1GeneralarticlesGet: function (id, name, description, articleType, status, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, articleCategoryId, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
2229
|
+
apiV1GeneralarticlesGet: function (id, name, description, articleType, status, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, articleCategoryId, includesSubArticleCategoryEntries, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
2225
2230
|
return __awaiter(this, void 0, void 0, function () {
|
|
2226
2231
|
var localVarAxiosArgs;
|
|
2227
2232
|
return __generator(this, function (_a) {
|
|
2228
2233
|
switch (_a.label) {
|
|
2229
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1GeneralarticlesGet(id, name, description, articleType, status, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, articleCategoryId, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
2234
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1GeneralarticlesGet(id, name, description, articleType, status, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, articleCategoryId, includesSubArticleCategoryEntries, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
2230
2235
|
case 1:
|
|
2231
2236
|
localVarAxiosArgs = _a.sent();
|
|
2232
2237
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -2580,6 +2585,7 @@ var GeneralArticlesApiFactory = function (configuration, basePath, axios) {
|
|
|
2580
2585
|
* @param {string} [exceptHospitalId]
|
|
2581
2586
|
* @param {string} [contributorId]
|
|
2582
2587
|
* @param {string} [articleCategoryId]
|
|
2588
|
+
* @param {boolean} [includesSubArticleCategoryEntries]
|
|
2583
2589
|
* @param {string} [languageCode]
|
|
2584
2590
|
* @param {boolean} [showHidden]
|
|
2585
2591
|
* @param {number} [page]
|
|
@@ -2588,8 +2594,8 @@ var GeneralArticlesApiFactory = function (configuration, basePath, axios) {
|
|
|
2588
2594
|
* @param {*} [options] Override http request option.
|
|
2589
2595
|
* @throws {RequiredError}
|
|
2590
2596
|
*/
|
|
2591
|
-
apiV1GeneralarticlesGet: function (id, name, description, articleType, status, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, articleCategoryId, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
2592
|
-
return localVarFp.apiV1GeneralarticlesGet(id, name, description, articleType, status, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, articleCategoryId, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
2597
|
+
apiV1GeneralarticlesGet: function (id, name, description, articleType, status, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, articleCategoryId, includesSubArticleCategoryEntries, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
2598
|
+
return localVarFp.apiV1GeneralarticlesGet(id, name, description, articleType, status, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, articleCategoryId, includesSubArticleCategoryEntries, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
2593
2599
|
},
|
|
2594
2600
|
/**
|
|
2595
2601
|
*
|
|
@@ -2926,7 +2932,7 @@ var GeneralArticlesApi = /** @class */ (function (_super) {
|
|
|
2926
2932
|
GeneralArticlesApi.prototype.apiV1GeneralarticlesGet = function (requestParameters, options) {
|
|
2927
2933
|
var _this = this;
|
|
2928
2934
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
2929
|
-
return (0, exports.GeneralArticlesApiFp)(this.configuration).apiV1GeneralarticlesGet(requestParameters.id, requestParameters.name, requestParameters.description, requestParameters.articleType, requestParameters.status, requestParameters.userId, requestParameters.userName, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.countryId, requestParameters.tag, requestParameters.exceptArticleId, requestParameters.exceptHospitalId, requestParameters.contributorId, requestParameters.articleCategoryId, requestParameters.languageCode, requestParameters.showHidden, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
2935
|
+
return (0, exports.GeneralArticlesApiFp)(this.configuration).apiV1GeneralarticlesGet(requestParameters.id, requestParameters.name, requestParameters.description, requestParameters.articleType, requestParameters.status, requestParameters.userId, requestParameters.userName, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.countryId, requestParameters.tag, requestParameters.exceptArticleId, requestParameters.exceptHospitalId, requestParameters.contributorId, requestParameters.articleCategoryId, requestParameters.includesSubArticleCategoryEntries, requestParameters.languageCode, requestParameters.showHidden, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
2930
2936
|
};
|
|
2931
2937
|
/**
|
|
2932
2938
|
*
|
|
@@ -36,6 +36,7 @@ export declare const PatientManagersApiAxiosParamCreator: (configuration?: Confi
|
|
|
36
36
|
* @param {number} [limit]
|
|
37
37
|
* @param {Date} [lastRetrieved]
|
|
38
38
|
* @param {*} [options] Override http request option.
|
|
39
|
+
* @deprecated
|
|
39
40
|
* @throws {RequiredError}
|
|
40
41
|
*/
|
|
41
42
|
apiV1PatientmanagersGet: (id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -45,6 +46,7 @@ export declare const PatientManagersApiAxiosParamCreator: (configuration?: Confi
|
|
|
45
46
|
* @param {string} patientManagerId
|
|
46
47
|
* @param {boolean} [isPermanent]
|
|
47
48
|
* @param {*} [options] Override http request option.
|
|
49
|
+
* @deprecated
|
|
48
50
|
* @throws {RequiredError}
|
|
49
51
|
*/
|
|
50
52
|
apiV1PatientmanagersPatientManagerIdDelete: (patientManagerId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -53,6 +55,7 @@ export declare const PatientManagersApiAxiosParamCreator: (configuration?: Confi
|
|
|
53
55
|
* @summary Get PatientManager. (Auth policies: RequirePatientManagerRole)
|
|
54
56
|
* @param {string} patientManagerId
|
|
55
57
|
* @param {*} [options] Override http request option.
|
|
58
|
+
* @deprecated
|
|
56
59
|
* @throws {RequiredError}
|
|
57
60
|
*/
|
|
58
61
|
apiV1PatientmanagersPatientManagerIdGet: (patientManagerId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -62,6 +65,7 @@ export declare const PatientManagersApiAxiosParamCreator: (configuration?: Confi
|
|
|
62
65
|
* @param {string} patientManagerId
|
|
63
66
|
* @param {UpdatePatientManagerCommand} [updatePatientManagerCommand]
|
|
64
67
|
* @param {*} [options] Override http request option.
|
|
68
|
+
* @deprecated
|
|
65
69
|
* @throws {RequiredError}
|
|
66
70
|
*/
|
|
67
71
|
apiV1PatientmanagersPatientManagerIdPut: (patientManagerId: string, updatePatientManagerCommand?: UpdatePatientManagerCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -70,6 +74,7 @@ export declare const PatientManagersApiAxiosParamCreator: (configuration?: Confi
|
|
|
70
74
|
* @summary Reactivate PatientManager. (Auth policies: RequireManagerRole)
|
|
71
75
|
* @param {string} patientManagerId
|
|
72
76
|
* @param {*} [options] Override http request option.
|
|
77
|
+
* @deprecated
|
|
73
78
|
* @throws {RequiredError}
|
|
74
79
|
*/
|
|
75
80
|
apiV1PatientmanagersPatientManagerIdReactivatePut: (patientManagerId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -78,6 +83,7 @@ export declare const PatientManagersApiAxiosParamCreator: (configuration?: Confi
|
|
|
78
83
|
* @summary Create a PatientManager. (Auth policies: RequireManagerRole)
|
|
79
84
|
* @param {CreatePatientManagerCommand} [createPatientManagerCommand]
|
|
80
85
|
* @param {*} [options] Override http request option.
|
|
86
|
+
* @deprecated
|
|
81
87
|
* @throws {RequiredError}
|
|
82
88
|
*/
|
|
83
89
|
apiV1PatientmanagersPost: (createPatientManagerCommand?: CreatePatientManagerCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -101,6 +107,7 @@ export declare const PatientManagersApiFp: (configuration?: Configuration) => {
|
|
|
101
107
|
* @param {number} [limit]
|
|
102
108
|
* @param {Date} [lastRetrieved]
|
|
103
109
|
* @param {*} [options] Override http request option.
|
|
110
|
+
* @deprecated
|
|
104
111
|
* @throws {RequiredError}
|
|
105
112
|
*/
|
|
106
113
|
apiV1PatientmanagersGet(id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientManagersModel>>;
|
|
@@ -110,6 +117,7 @@ export declare const PatientManagersApiFp: (configuration?: Configuration) => {
|
|
|
110
117
|
* @param {string} patientManagerId
|
|
111
118
|
* @param {boolean} [isPermanent]
|
|
112
119
|
* @param {*} [options] Override http request option.
|
|
120
|
+
* @deprecated
|
|
113
121
|
* @throws {RequiredError}
|
|
114
122
|
*/
|
|
115
123
|
apiV1PatientmanagersPatientManagerIdDelete(patientManagerId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
@@ -118,6 +126,7 @@ export declare const PatientManagersApiFp: (configuration?: Configuration) => {
|
|
|
118
126
|
* @summary Get PatientManager. (Auth policies: RequirePatientManagerRole)
|
|
119
127
|
* @param {string} patientManagerId
|
|
120
128
|
* @param {*} [options] Override http request option.
|
|
129
|
+
* @deprecated
|
|
121
130
|
* @throws {RequiredError}
|
|
122
131
|
*/
|
|
123
132
|
apiV1PatientmanagersPatientManagerIdGet(patientManagerId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientManagerModel>>;
|
|
@@ -127,6 +136,7 @@ export declare const PatientManagersApiFp: (configuration?: Configuration) => {
|
|
|
127
136
|
* @param {string} patientManagerId
|
|
128
137
|
* @param {UpdatePatientManagerCommand} [updatePatientManagerCommand]
|
|
129
138
|
* @param {*} [options] Override http request option.
|
|
139
|
+
* @deprecated
|
|
130
140
|
* @throws {RequiredError}
|
|
131
141
|
*/
|
|
132
142
|
apiV1PatientmanagersPatientManagerIdPut(patientManagerId: string, updatePatientManagerCommand?: UpdatePatientManagerCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientManagerModel>>;
|
|
@@ -135,6 +145,7 @@ export declare const PatientManagersApiFp: (configuration?: Configuration) => {
|
|
|
135
145
|
* @summary Reactivate PatientManager. (Auth policies: RequireManagerRole)
|
|
136
146
|
* @param {string} patientManagerId
|
|
137
147
|
* @param {*} [options] Override http request option.
|
|
148
|
+
* @deprecated
|
|
138
149
|
* @throws {RequiredError}
|
|
139
150
|
*/
|
|
140
151
|
apiV1PatientmanagersPatientManagerIdReactivatePut(patientManagerId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
@@ -143,6 +154,7 @@ export declare const PatientManagersApiFp: (configuration?: Configuration) => {
|
|
|
143
154
|
* @summary Create a PatientManager. (Auth policies: RequireManagerRole)
|
|
144
155
|
* @param {CreatePatientManagerCommand} [createPatientManagerCommand]
|
|
145
156
|
* @param {*} [options] Override http request option.
|
|
157
|
+
* @deprecated
|
|
146
158
|
* @throws {RequiredError}
|
|
147
159
|
*/
|
|
148
160
|
apiV1PatientmanagersPost(createPatientManagerCommand?: CreatePatientManagerCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientManagerModel>>;
|
|
@@ -166,6 +178,7 @@ export declare const PatientManagersApiFactory: (configuration?: Configuration,
|
|
|
166
178
|
* @param {number} [limit]
|
|
167
179
|
* @param {Date} [lastRetrieved]
|
|
168
180
|
* @param {*} [options] Override http request option.
|
|
181
|
+
* @deprecated
|
|
169
182
|
* @throws {RequiredError}
|
|
170
183
|
*/
|
|
171
184
|
apiV1PatientmanagersGet(id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<PatientManagersModel>;
|
|
@@ -175,6 +188,7 @@ export declare const PatientManagersApiFactory: (configuration?: Configuration,
|
|
|
175
188
|
* @param {string} patientManagerId
|
|
176
189
|
* @param {boolean} [isPermanent]
|
|
177
190
|
* @param {*} [options] Override http request option.
|
|
191
|
+
* @deprecated
|
|
178
192
|
* @throws {RequiredError}
|
|
179
193
|
*/
|
|
180
194
|
apiV1PatientmanagersPatientManagerIdDelete(patientManagerId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
@@ -183,6 +197,7 @@ export declare const PatientManagersApiFactory: (configuration?: Configuration,
|
|
|
183
197
|
* @summary Get PatientManager. (Auth policies: RequirePatientManagerRole)
|
|
184
198
|
* @param {string} patientManagerId
|
|
185
199
|
* @param {*} [options] Override http request option.
|
|
200
|
+
* @deprecated
|
|
186
201
|
* @throws {RequiredError}
|
|
187
202
|
*/
|
|
188
203
|
apiV1PatientmanagersPatientManagerIdGet(patientManagerId: string, options?: any): AxiosPromise<PatientManagerModel>;
|
|
@@ -192,6 +207,7 @@ export declare const PatientManagersApiFactory: (configuration?: Configuration,
|
|
|
192
207
|
* @param {string} patientManagerId
|
|
193
208
|
* @param {UpdatePatientManagerCommand} [updatePatientManagerCommand]
|
|
194
209
|
* @param {*} [options] Override http request option.
|
|
210
|
+
* @deprecated
|
|
195
211
|
* @throws {RequiredError}
|
|
196
212
|
*/
|
|
197
213
|
apiV1PatientmanagersPatientManagerIdPut(patientManagerId: string, updatePatientManagerCommand?: UpdatePatientManagerCommand, options?: any): AxiosPromise<PatientManagerModel>;
|
|
@@ -200,6 +216,7 @@ export declare const PatientManagersApiFactory: (configuration?: Configuration,
|
|
|
200
216
|
* @summary Reactivate PatientManager. (Auth policies: RequireManagerRole)
|
|
201
217
|
* @param {string} patientManagerId
|
|
202
218
|
* @param {*} [options] Override http request option.
|
|
219
|
+
* @deprecated
|
|
203
220
|
* @throws {RequiredError}
|
|
204
221
|
*/
|
|
205
222
|
apiV1PatientmanagersPatientManagerIdReactivatePut(patientManagerId: string, options?: any): AxiosPromise<boolean>;
|
|
@@ -208,6 +225,7 @@ export declare const PatientManagersApiFactory: (configuration?: Configuration,
|
|
|
208
225
|
* @summary Create a PatientManager. (Auth policies: RequireManagerRole)
|
|
209
226
|
* @param {CreatePatientManagerCommand} [createPatientManagerCommand]
|
|
210
227
|
* @param {*} [options] Override http request option.
|
|
228
|
+
* @deprecated
|
|
211
229
|
* @throws {RequiredError}
|
|
212
230
|
*/
|
|
213
231
|
apiV1PatientmanagersPost(createPatientManagerCommand?: CreatePatientManagerCommand, options?: any): AxiosPromise<PatientManagerModel>;
|
|
@@ -368,6 +386,7 @@ export declare class PatientManagersApi extends BaseAPI {
|
|
|
368
386
|
* @summary Get all PatientManagers. (Auth policies: RequireManagerRole)
|
|
369
387
|
* @param {PatientManagersApiApiV1PatientmanagersGetRequest} requestParameters Request parameters.
|
|
370
388
|
* @param {*} [options] Override http request option.
|
|
389
|
+
* @deprecated
|
|
371
390
|
* @throws {RequiredError}
|
|
372
391
|
* @memberof PatientManagersApi
|
|
373
392
|
*/
|
|
@@ -377,6 +396,7 @@ export declare class PatientManagersApi extends BaseAPI {
|
|
|
377
396
|
* @summary Delete PatientManager. (Auth policies: RequireManagerRole)
|
|
378
397
|
* @param {PatientManagersApiApiV1PatientmanagersPatientManagerIdDeleteRequest} requestParameters Request parameters.
|
|
379
398
|
* @param {*} [options] Override http request option.
|
|
399
|
+
* @deprecated
|
|
380
400
|
* @throws {RequiredError}
|
|
381
401
|
* @memberof PatientManagersApi
|
|
382
402
|
*/
|
|
@@ -386,6 +406,7 @@ export declare class PatientManagersApi extends BaseAPI {
|
|
|
386
406
|
* @summary Get PatientManager. (Auth policies: RequirePatientManagerRole)
|
|
387
407
|
* @param {PatientManagersApiApiV1PatientmanagersPatientManagerIdGetRequest} requestParameters Request parameters.
|
|
388
408
|
* @param {*} [options] Override http request option.
|
|
409
|
+
* @deprecated
|
|
389
410
|
* @throws {RequiredError}
|
|
390
411
|
* @memberof PatientManagersApi
|
|
391
412
|
*/
|
|
@@ -395,6 +416,7 @@ export declare class PatientManagersApi extends BaseAPI {
|
|
|
395
416
|
* @summary Update PatientManager. (Auth policies: RequirePatientManagerRole)
|
|
396
417
|
* @param {PatientManagersApiApiV1PatientmanagersPatientManagerIdPutRequest} requestParameters Request parameters.
|
|
397
418
|
* @param {*} [options] Override http request option.
|
|
419
|
+
* @deprecated
|
|
398
420
|
* @throws {RequiredError}
|
|
399
421
|
* @memberof PatientManagersApi
|
|
400
422
|
*/
|
|
@@ -404,6 +426,7 @@ export declare class PatientManagersApi extends BaseAPI {
|
|
|
404
426
|
* @summary Reactivate PatientManager. (Auth policies: RequireManagerRole)
|
|
405
427
|
* @param {PatientManagersApiApiV1PatientmanagersPatientManagerIdReactivatePutRequest} requestParameters Request parameters.
|
|
406
428
|
* @param {*} [options] Override http request option.
|
|
429
|
+
* @deprecated
|
|
407
430
|
* @throws {RequiredError}
|
|
408
431
|
* @memberof PatientManagersApi
|
|
409
432
|
*/
|
|
@@ -413,6 +436,7 @@ export declare class PatientManagersApi extends BaseAPI {
|
|
|
413
436
|
* @summary Create a PatientManager. (Auth policies: RequireManagerRole)
|
|
414
437
|
* @param {PatientManagersApiApiV1PatientmanagersPostRequest} requestParameters Request parameters.
|
|
415
438
|
* @param {*} [options] Override http request option.
|
|
439
|
+
* @deprecated
|
|
416
440
|
* @throws {RequiredError}
|
|
417
441
|
* @memberof PatientManagersApi
|
|
418
442
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"patient-managers-api.d.ts","sourceRoot":"","sources":["../../src/api/patient-managers-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,2BAA2B,EAAE,MAAM,WAAW,CAAC;AAExD,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAEnC,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAEhD,OAAO,EAAE,oBAAoB,EAAE,MAAM,WAAW,CAAC;AAIjD,OAAO,EAAE,2BAA2B,EAAE,MAAM,WAAW,CAAC;AACxD;;;GAGG;AACH,eAAO,MAAM,mCAAmC,mBAA6B,aAAa;IAElF
|
|
1
|
+
{"version":3,"file":"patient-managers-api.d.ts","sourceRoot":"","sources":["../../src/api/patient-managers-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -115,6 +115,7 @@ var PatientManagersApiAxiosParamCreator = function (configuration) {
|
|
|
115
115
|
* @param {number} [limit]
|
|
116
116
|
* @param {Date} [lastRetrieved]
|
|
117
117
|
* @param {*} [options] Override http request option.
|
|
118
|
+
* @deprecated
|
|
118
119
|
* @throws {RequiredError}
|
|
119
120
|
*/
|
|
120
121
|
apiV1PatientmanagersGet: function (id_1, fullname_1, email_1, gender_1, dateOfBirth_1, created_1, showHidden_1, page_1, limit_1, lastRetrieved_1) {
|
|
@@ -196,6 +197,7 @@ var PatientManagersApiAxiosParamCreator = function (configuration) {
|
|
|
196
197
|
* @param {string} patientManagerId
|
|
197
198
|
* @param {boolean} [isPermanent]
|
|
198
199
|
* @param {*} [options] Override http request option.
|
|
200
|
+
* @deprecated
|
|
199
201
|
* @throws {RequiredError}
|
|
200
202
|
*/
|
|
201
203
|
apiV1PatientmanagersPatientManagerIdDelete: function (patientManagerId_1, isPermanent_1) {
|
|
@@ -246,6 +248,7 @@ var PatientManagersApiAxiosParamCreator = function (configuration) {
|
|
|
246
248
|
* @summary Get PatientManager. (Auth policies: RequirePatientManagerRole)
|
|
247
249
|
* @param {string} patientManagerId
|
|
248
250
|
* @param {*} [options] Override http request option.
|
|
251
|
+
* @deprecated
|
|
249
252
|
* @throws {RequiredError}
|
|
250
253
|
*/
|
|
251
254
|
apiV1PatientmanagersPatientManagerIdGet: function (patientManagerId_1) {
|
|
@@ -294,6 +297,7 @@ var PatientManagersApiAxiosParamCreator = function (configuration) {
|
|
|
294
297
|
* @param {string} patientManagerId
|
|
295
298
|
* @param {UpdatePatientManagerCommand} [updatePatientManagerCommand]
|
|
296
299
|
* @param {*} [options] Override http request option.
|
|
300
|
+
* @deprecated
|
|
297
301
|
* @throws {RequiredError}
|
|
298
302
|
*/
|
|
299
303
|
apiV1PatientmanagersPatientManagerIdPut: function (patientManagerId_1, updatePatientManagerCommand_1) {
|
|
@@ -343,6 +347,7 @@ var PatientManagersApiAxiosParamCreator = function (configuration) {
|
|
|
343
347
|
* @summary Reactivate PatientManager. (Auth policies: RequireManagerRole)
|
|
344
348
|
* @param {string} patientManagerId
|
|
345
349
|
* @param {*} [options] Override http request option.
|
|
350
|
+
* @deprecated
|
|
346
351
|
* @throws {RequiredError}
|
|
347
352
|
*/
|
|
348
353
|
apiV1PatientmanagersPatientManagerIdReactivatePut: function (patientManagerId_1) {
|
|
@@ -390,6 +395,7 @@ var PatientManagersApiAxiosParamCreator = function (configuration) {
|
|
|
390
395
|
* @summary Create a PatientManager. (Auth policies: RequireManagerRole)
|
|
391
396
|
* @param {CreatePatientManagerCommand} [createPatientManagerCommand]
|
|
392
397
|
* @param {*} [options] Override http request option.
|
|
398
|
+
* @deprecated
|
|
393
399
|
* @throws {RequiredError}
|
|
394
400
|
*/
|
|
395
401
|
apiV1PatientmanagersPost: function (createPatientManagerCommand_1) {
|
|
@@ -455,6 +461,7 @@ var PatientManagersApiFp = function (configuration) {
|
|
|
455
461
|
* @param {number} [limit]
|
|
456
462
|
* @param {Date} [lastRetrieved]
|
|
457
463
|
* @param {*} [options] Override http request option.
|
|
464
|
+
* @deprecated
|
|
458
465
|
* @throws {RequiredError}
|
|
459
466
|
*/
|
|
460
467
|
apiV1PatientmanagersGet: function (id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
@@ -476,6 +483,7 @@ var PatientManagersApiFp = function (configuration) {
|
|
|
476
483
|
* @param {string} patientManagerId
|
|
477
484
|
* @param {boolean} [isPermanent]
|
|
478
485
|
* @param {*} [options] Override http request option.
|
|
486
|
+
* @deprecated
|
|
479
487
|
* @throws {RequiredError}
|
|
480
488
|
*/
|
|
481
489
|
apiV1PatientmanagersPatientManagerIdDelete: function (patientManagerId, isPermanent, options) {
|
|
@@ -496,6 +504,7 @@ var PatientManagersApiFp = function (configuration) {
|
|
|
496
504
|
* @summary Get PatientManager. (Auth policies: RequirePatientManagerRole)
|
|
497
505
|
* @param {string} patientManagerId
|
|
498
506
|
* @param {*} [options] Override http request option.
|
|
507
|
+
* @deprecated
|
|
499
508
|
* @throws {RequiredError}
|
|
500
509
|
*/
|
|
501
510
|
apiV1PatientmanagersPatientManagerIdGet: function (patientManagerId, options) {
|
|
@@ -517,6 +526,7 @@ var PatientManagersApiFp = function (configuration) {
|
|
|
517
526
|
* @param {string} patientManagerId
|
|
518
527
|
* @param {UpdatePatientManagerCommand} [updatePatientManagerCommand]
|
|
519
528
|
* @param {*} [options] Override http request option.
|
|
529
|
+
* @deprecated
|
|
520
530
|
* @throws {RequiredError}
|
|
521
531
|
*/
|
|
522
532
|
apiV1PatientmanagersPatientManagerIdPut: function (patientManagerId, updatePatientManagerCommand, options) {
|
|
@@ -537,6 +547,7 @@ var PatientManagersApiFp = function (configuration) {
|
|
|
537
547
|
* @summary Reactivate PatientManager. (Auth policies: RequireManagerRole)
|
|
538
548
|
* @param {string} patientManagerId
|
|
539
549
|
* @param {*} [options] Override http request option.
|
|
550
|
+
* @deprecated
|
|
540
551
|
* @throws {RequiredError}
|
|
541
552
|
*/
|
|
542
553
|
apiV1PatientmanagersPatientManagerIdReactivatePut: function (patientManagerId, options) {
|
|
@@ -557,6 +568,7 @@ var PatientManagersApiFp = function (configuration) {
|
|
|
557
568
|
* @summary Create a PatientManager. (Auth policies: RequireManagerRole)
|
|
558
569
|
* @param {CreatePatientManagerCommand} [createPatientManagerCommand]
|
|
559
570
|
* @param {*} [options] Override http request option.
|
|
571
|
+
* @deprecated
|
|
560
572
|
* @throws {RequiredError}
|
|
561
573
|
*/
|
|
562
574
|
apiV1PatientmanagersPost: function (createPatientManagerCommand, options) {
|
|
@@ -596,6 +608,7 @@ var PatientManagersApiFactory = function (configuration, basePath, axios) {
|
|
|
596
608
|
* @param {number} [limit]
|
|
597
609
|
* @param {Date} [lastRetrieved]
|
|
598
610
|
* @param {*} [options] Override http request option.
|
|
611
|
+
* @deprecated
|
|
599
612
|
* @throws {RequiredError}
|
|
600
613
|
*/
|
|
601
614
|
apiV1PatientmanagersGet: function (id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
@@ -607,6 +620,7 @@ var PatientManagersApiFactory = function (configuration, basePath, axios) {
|
|
|
607
620
|
* @param {string} patientManagerId
|
|
608
621
|
* @param {boolean} [isPermanent]
|
|
609
622
|
* @param {*} [options] Override http request option.
|
|
623
|
+
* @deprecated
|
|
610
624
|
* @throws {RequiredError}
|
|
611
625
|
*/
|
|
612
626
|
apiV1PatientmanagersPatientManagerIdDelete: function (patientManagerId, isPermanent, options) {
|
|
@@ -617,6 +631,7 @@ var PatientManagersApiFactory = function (configuration, basePath, axios) {
|
|
|
617
631
|
* @summary Get PatientManager. (Auth policies: RequirePatientManagerRole)
|
|
618
632
|
* @param {string} patientManagerId
|
|
619
633
|
* @param {*} [options] Override http request option.
|
|
634
|
+
* @deprecated
|
|
620
635
|
* @throws {RequiredError}
|
|
621
636
|
*/
|
|
622
637
|
apiV1PatientmanagersPatientManagerIdGet: function (patientManagerId, options) {
|
|
@@ -628,6 +643,7 @@ var PatientManagersApiFactory = function (configuration, basePath, axios) {
|
|
|
628
643
|
* @param {string} patientManagerId
|
|
629
644
|
* @param {UpdatePatientManagerCommand} [updatePatientManagerCommand]
|
|
630
645
|
* @param {*} [options] Override http request option.
|
|
646
|
+
* @deprecated
|
|
631
647
|
* @throws {RequiredError}
|
|
632
648
|
*/
|
|
633
649
|
apiV1PatientmanagersPatientManagerIdPut: function (patientManagerId, updatePatientManagerCommand, options) {
|
|
@@ -638,6 +654,7 @@ var PatientManagersApiFactory = function (configuration, basePath, axios) {
|
|
|
638
654
|
* @summary Reactivate PatientManager. (Auth policies: RequireManagerRole)
|
|
639
655
|
* @param {string} patientManagerId
|
|
640
656
|
* @param {*} [options] Override http request option.
|
|
657
|
+
* @deprecated
|
|
641
658
|
* @throws {RequiredError}
|
|
642
659
|
*/
|
|
643
660
|
apiV1PatientmanagersPatientManagerIdReactivatePut: function (patientManagerId, options) {
|
|
@@ -648,6 +665,7 @@ var PatientManagersApiFactory = function (configuration, basePath, axios) {
|
|
|
648
665
|
* @summary Create a PatientManager. (Auth policies: RequireManagerRole)
|
|
649
666
|
* @param {CreatePatientManagerCommand} [createPatientManagerCommand]
|
|
650
667
|
* @param {*} [options] Override http request option.
|
|
668
|
+
* @deprecated
|
|
651
669
|
* @throws {RequiredError}
|
|
652
670
|
*/
|
|
653
671
|
apiV1PatientmanagersPost: function (createPatientManagerCommand, options) {
|
|
@@ -672,6 +690,7 @@ var PatientManagersApi = /** @class */ (function (_super) {
|
|
|
672
690
|
* @summary Get all PatientManagers. (Auth policies: RequireManagerRole)
|
|
673
691
|
* @param {PatientManagersApiApiV1PatientmanagersGetRequest} requestParameters Request parameters.
|
|
674
692
|
* @param {*} [options] Override http request option.
|
|
693
|
+
* @deprecated
|
|
675
694
|
* @throws {RequiredError}
|
|
676
695
|
* @memberof PatientManagersApi
|
|
677
696
|
*/
|
|
@@ -685,6 +704,7 @@ var PatientManagersApi = /** @class */ (function (_super) {
|
|
|
685
704
|
* @summary Delete PatientManager. (Auth policies: RequireManagerRole)
|
|
686
705
|
* @param {PatientManagersApiApiV1PatientmanagersPatientManagerIdDeleteRequest} requestParameters Request parameters.
|
|
687
706
|
* @param {*} [options] Override http request option.
|
|
707
|
+
* @deprecated
|
|
688
708
|
* @throws {RequiredError}
|
|
689
709
|
* @memberof PatientManagersApi
|
|
690
710
|
*/
|
|
@@ -697,6 +717,7 @@ var PatientManagersApi = /** @class */ (function (_super) {
|
|
|
697
717
|
* @summary Get PatientManager. (Auth policies: RequirePatientManagerRole)
|
|
698
718
|
* @param {PatientManagersApiApiV1PatientmanagersPatientManagerIdGetRequest} requestParameters Request parameters.
|
|
699
719
|
* @param {*} [options] Override http request option.
|
|
720
|
+
* @deprecated
|
|
700
721
|
* @throws {RequiredError}
|
|
701
722
|
* @memberof PatientManagersApi
|
|
702
723
|
*/
|
|
@@ -709,6 +730,7 @@ var PatientManagersApi = /** @class */ (function (_super) {
|
|
|
709
730
|
* @summary Update PatientManager. (Auth policies: RequirePatientManagerRole)
|
|
710
731
|
* @param {PatientManagersApiApiV1PatientmanagersPatientManagerIdPutRequest} requestParameters Request parameters.
|
|
711
732
|
* @param {*} [options] Override http request option.
|
|
733
|
+
* @deprecated
|
|
712
734
|
* @throws {RequiredError}
|
|
713
735
|
* @memberof PatientManagersApi
|
|
714
736
|
*/
|
|
@@ -721,6 +743,7 @@ var PatientManagersApi = /** @class */ (function (_super) {
|
|
|
721
743
|
* @summary Reactivate PatientManager. (Auth policies: RequireManagerRole)
|
|
722
744
|
* @param {PatientManagersApiApiV1PatientmanagersPatientManagerIdReactivatePutRequest} requestParameters Request parameters.
|
|
723
745
|
* @param {*} [options] Override http request option.
|
|
746
|
+
* @deprecated
|
|
724
747
|
* @throws {RequiredError}
|
|
725
748
|
* @memberof PatientManagersApi
|
|
726
749
|
*/
|
|
@@ -733,6 +756,7 @@ var PatientManagersApi = /** @class */ (function (_super) {
|
|
|
733
756
|
* @summary Create a PatientManager. (Auth policies: RequireManagerRole)
|
|
734
757
|
* @param {PatientManagersApiApiV1PatientmanagersPostRequest} requestParameters Request parameters.
|
|
735
758
|
* @param {*} [options] Override http request option.
|
|
759
|
+
* @deprecated
|
|
736
760
|
* @throws {RequiredError}
|
|
737
761
|
* @memberof PatientManagersApi
|
|
738
762
|
*/
|