ch-admin-api-client-typescript 5.24.11 → 5.24.20
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/appointments-api.d.ts +101 -0
- package/lib/api/appointments-api.d.ts.map +1 -1
- package/lib/api/appointments-api.js +176 -0
- package/lib/api/azure-functions-app-webhooks-api.d.ts +88 -0
- package/lib/api/azure-functions-app-webhooks-api.d.ts.map +1 -0
- package/lib/api/azure-functions-app-webhooks-api.js +206 -0
- package/lib/api/prescriptions-api.d.ts +193 -0
- package/lib/api/prescriptions-api.d.ts.map +1 -1
- package/lib/api/prescriptions-api.js +346 -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/appointment-item-model.d.ts +6 -0
- package/lib/models/appointment-item-model.d.ts.map +1 -1
- package/lib/models/appointment-model.d.ts +6 -0
- package/lib/models/appointment-model.d.ts.map +1 -1
- package/lib/models/create-prescription-command.d.ts +6 -0
- package/lib/models/create-prescription-command.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-item-model.d.ts +6 -0
- package/lib/models/doctor-affiliation-item-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-model.d.ts +6 -0
- package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
- package/lib/models/generated-pdf-command.d.ts +25 -0
- package/lib/models/generated-pdf-command.d.ts.map +1 -0
- package/lib/models/generated-pdf-command.js +15 -0
- package/lib/models/index.d.ts +1 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +1 -0
- package/lib/models/payment-model.d.ts +6 -0
- package/lib/models/payment-model.d.ts.map +1 -1
- package/lib/models/prescription-item-model.d.ts +12 -0
- package/lib/models/prescription-item-model.d.ts.map +1 -1
- package/lib/models/prescription-model.d.ts +12 -0
- package/lib/models/prescription-model.d.ts.map +1 -1
- package/lib/models/update-prescription-command.d.ts +6 -0
- package/lib/models/update-prescription-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +2 -0
- package/src/api/appointments-api.ts +184 -0
- package/src/api/azure-functions-app-webhooks-api.ts +143 -0
- package/src/api/prescriptions-api.ts +354 -0
- package/src/api.ts +1 -0
- package/src/models/appointment-item-model.ts +6 -0
- package/src/models/appointment-model.ts +6 -0
- package/src/models/create-prescription-command.ts +6 -0
- package/src/models/doctor-affiliation-item-model.ts +6 -0
- package/src/models/doctor-affiliation-model.ts +6 -0
- package/src/models/generated-pdf-command.ts +30 -0
- package/src/models/index.ts +1 -0
- package/src/models/payment-model.ts +6 -0
- package/src/models/prescription-item-model.ts +12 -0
- package/src/models/prescription-model.ts +12 -0
- package/src/models/update-prescription-command.ts +6 -0
|
@@ -0,0 +1,206 @@
|
|
|
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
|
+
var __extends = (this && this.__extends) || (function () {
|
|
16
|
+
var extendStatics = function (d, b) {
|
|
17
|
+
extendStatics = Object.setPrototypeOf ||
|
|
18
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
19
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
20
|
+
return extendStatics(d, b);
|
|
21
|
+
};
|
|
22
|
+
return function (d, b) {
|
|
23
|
+
if (typeof b !== "function" && b !== null)
|
|
24
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
25
|
+
extendStatics(d, b);
|
|
26
|
+
function __() { this.constructor = d; }
|
|
27
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
28
|
+
};
|
|
29
|
+
})();
|
|
30
|
+
var __assign = (this && this.__assign) || function () {
|
|
31
|
+
__assign = Object.assign || function(t) {
|
|
32
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
33
|
+
s = arguments[i];
|
|
34
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
35
|
+
t[p] = s[p];
|
|
36
|
+
}
|
|
37
|
+
return t;
|
|
38
|
+
};
|
|
39
|
+
return __assign.apply(this, arguments);
|
|
40
|
+
};
|
|
41
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
42
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
43
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
44
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
45
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
46
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
47
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
51
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
52
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
53
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
54
|
+
function step(op) {
|
|
55
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
56
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
57
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
58
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
59
|
+
switch (op[0]) {
|
|
60
|
+
case 0: case 1: t = op; break;
|
|
61
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
62
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
63
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
64
|
+
default:
|
|
65
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
66
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
67
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
68
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
69
|
+
if (t[2]) _.ops.pop();
|
|
70
|
+
_.trys.pop(); continue;
|
|
71
|
+
}
|
|
72
|
+
op = body.call(thisArg, _);
|
|
73
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
74
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
78
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
79
|
+
};
|
|
80
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81
|
+
exports.AzureFunctionsAppWebhooksApi = exports.AzureFunctionsAppWebhooksApiFactory = exports.AzureFunctionsAppWebhooksApiFp = exports.AzureFunctionsAppWebhooksApiAxiosParamCreator = void 0;
|
|
82
|
+
var axios_1 = __importDefault(require("axios"));
|
|
83
|
+
// Some imports not used depending on template conditions
|
|
84
|
+
// @ts-ignore
|
|
85
|
+
var common_1 = require("../common");
|
|
86
|
+
// @ts-ignore
|
|
87
|
+
var base_1 = require("../base");
|
|
88
|
+
/**
|
|
89
|
+
* AzureFunctionsAppWebhooksApi - axios parameter creator
|
|
90
|
+
* @export
|
|
91
|
+
*/
|
|
92
|
+
var AzureFunctionsAppWebhooksApiAxiosParamCreator = function (configuration) {
|
|
93
|
+
var _this = this;
|
|
94
|
+
return {
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @summary Webhook for Pdf generation azure functions app
|
|
98
|
+
* @param {GeneratedPdfCommand} [generatedPdfCommand]
|
|
99
|
+
* @param {*} [options] Override http request option.
|
|
100
|
+
* @throws {RequiredError}
|
|
101
|
+
*/
|
|
102
|
+
apiV1AzurefunctionsappwebhooksPdfgeneratedPost: function (generatedPdfCommand, options) {
|
|
103
|
+
if (options === void 0) { options = {}; }
|
|
104
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
105
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
106
|
+
return __generator(this, function (_a) {
|
|
107
|
+
localVarPath = "/api/v1/azurefunctionsappwebhooks/pdfgenerated";
|
|
108
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
109
|
+
if (configuration) {
|
|
110
|
+
baseOptions = configuration.baseOptions;
|
|
111
|
+
}
|
|
112
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
113
|
+
localVarHeaderParameter = {};
|
|
114
|
+
localVarQueryParameter = {};
|
|
115
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
116
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
117
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
118
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
119
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(generatedPdfCommand, localVarRequestOptions, configuration);
|
|
120
|
+
return [2 /*return*/, {
|
|
121
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
122
|
+
options: localVarRequestOptions,
|
|
123
|
+
}];
|
|
124
|
+
});
|
|
125
|
+
});
|
|
126
|
+
},
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
exports.AzureFunctionsAppWebhooksApiAxiosParamCreator = AzureFunctionsAppWebhooksApiAxiosParamCreator;
|
|
130
|
+
/**
|
|
131
|
+
* AzureFunctionsAppWebhooksApi - functional programming interface
|
|
132
|
+
* @export
|
|
133
|
+
*/
|
|
134
|
+
var AzureFunctionsAppWebhooksApiFp = function (configuration) {
|
|
135
|
+
var localVarAxiosParamCreator = (0, exports.AzureFunctionsAppWebhooksApiAxiosParamCreator)(configuration);
|
|
136
|
+
return {
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @summary Webhook for Pdf generation azure functions app
|
|
140
|
+
* @param {GeneratedPdfCommand} [generatedPdfCommand]
|
|
141
|
+
* @param {*} [options] Override http request option.
|
|
142
|
+
* @throws {RequiredError}
|
|
143
|
+
*/
|
|
144
|
+
apiV1AzurefunctionsappwebhooksPdfgeneratedPost: function (generatedPdfCommand, options) {
|
|
145
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
146
|
+
var localVarAxiosArgs;
|
|
147
|
+
return __generator(this, function (_a) {
|
|
148
|
+
switch (_a.label) {
|
|
149
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1AzurefunctionsappwebhooksPdfgeneratedPost(generatedPdfCommand, options)];
|
|
150
|
+
case 1:
|
|
151
|
+
localVarAxiosArgs = _a.sent();
|
|
152
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
153
|
+
}
|
|
154
|
+
});
|
|
155
|
+
});
|
|
156
|
+
},
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
exports.AzureFunctionsAppWebhooksApiFp = AzureFunctionsAppWebhooksApiFp;
|
|
160
|
+
/**
|
|
161
|
+
* AzureFunctionsAppWebhooksApi - factory interface
|
|
162
|
+
* @export
|
|
163
|
+
*/
|
|
164
|
+
var AzureFunctionsAppWebhooksApiFactory = function (configuration, basePath, axios) {
|
|
165
|
+
var localVarFp = (0, exports.AzureFunctionsAppWebhooksApiFp)(configuration);
|
|
166
|
+
return {
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @summary Webhook for Pdf generation azure functions app
|
|
170
|
+
* @param {GeneratedPdfCommand} [generatedPdfCommand]
|
|
171
|
+
* @param {*} [options] Override http request option.
|
|
172
|
+
* @throws {RequiredError}
|
|
173
|
+
*/
|
|
174
|
+
apiV1AzurefunctionsappwebhooksPdfgeneratedPost: function (generatedPdfCommand, options) {
|
|
175
|
+
return localVarFp.apiV1AzurefunctionsappwebhooksPdfgeneratedPost(generatedPdfCommand, options).then(function (request) { return request(axios, basePath); });
|
|
176
|
+
},
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
exports.AzureFunctionsAppWebhooksApiFactory = AzureFunctionsAppWebhooksApiFactory;
|
|
180
|
+
/**
|
|
181
|
+
* AzureFunctionsAppWebhooksApi - object-oriented interface
|
|
182
|
+
* @export
|
|
183
|
+
* @class AzureFunctionsAppWebhooksApi
|
|
184
|
+
* @extends {BaseAPI}
|
|
185
|
+
*/
|
|
186
|
+
var AzureFunctionsAppWebhooksApi = /** @class */ (function (_super) {
|
|
187
|
+
__extends(AzureFunctionsAppWebhooksApi, _super);
|
|
188
|
+
function AzureFunctionsAppWebhooksApi() {
|
|
189
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
*
|
|
193
|
+
* @summary Webhook for Pdf generation azure functions app
|
|
194
|
+
* @param {AzureFunctionsAppWebhooksApiApiV1AzurefunctionsappwebhooksPdfgeneratedPostRequest} requestParameters Request parameters.
|
|
195
|
+
* @param {*} [options] Override http request option.
|
|
196
|
+
* @throws {RequiredError}
|
|
197
|
+
* @memberof AzureFunctionsAppWebhooksApi
|
|
198
|
+
*/
|
|
199
|
+
AzureFunctionsAppWebhooksApi.prototype.apiV1AzurefunctionsappwebhooksPdfgeneratedPost = function (requestParameters, options) {
|
|
200
|
+
var _this = this;
|
|
201
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
202
|
+
return (0, exports.AzureFunctionsAppWebhooksApiFp)(this.configuration).apiV1AzurefunctionsappwebhooksPdfgeneratedPost(requestParameters.generatedPdfCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
203
|
+
};
|
|
204
|
+
return AzureFunctionsAppWebhooksApi;
|
|
205
|
+
}(base_1.BaseAPI));
|
|
206
|
+
exports.AzureFunctionsAppWebhooksApi = AzureFunctionsAppWebhooksApi;
|
|
@@ -48,6 +48,14 @@ export declare const PrescriptionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
48
48
|
* @throws {RequiredError}
|
|
49
49
|
*/
|
|
50
50
|
apiV1PrescriptionsPost: (createPrescriptionCommand?: CreatePrescriptionCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @summary Set IsConfirmed of prescription to true
|
|
54
|
+
* @param {string} prescriptionId
|
|
55
|
+
* @param {*} [options] Override http request option.
|
|
56
|
+
* @throws {RequiredError}
|
|
57
|
+
*/
|
|
58
|
+
apiV1PrescriptionsPrescriptionIdConfirmPatch: (prescriptionId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
51
59
|
/**
|
|
52
60
|
*
|
|
53
61
|
* @summary Delete prescription
|
|
@@ -66,6 +74,23 @@ export declare const PrescriptionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
66
74
|
* @throws {RequiredError}
|
|
67
75
|
*/
|
|
68
76
|
apiV1PrescriptionsPrescriptionIdGet: (prescriptionId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @summary Delete prexcription pdf file
|
|
80
|
+
* @param {string} prescriptionId
|
|
81
|
+
* @param {*} [options] Override http request option.
|
|
82
|
+
* @throws {RequiredError}
|
|
83
|
+
*/
|
|
84
|
+
apiV1PrescriptionsPrescriptionIdPdfDelete: (prescriptionId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @summary Create prescription pdf file
|
|
88
|
+
* @param {string} prescriptionId
|
|
89
|
+
* @param {string} [languageCode]
|
|
90
|
+
* @param {*} [options] Override http request option.
|
|
91
|
+
* @throws {RequiredError}
|
|
92
|
+
*/
|
|
93
|
+
apiV1PrescriptionsPrescriptionIdPdfPost: (prescriptionId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69
94
|
/**
|
|
70
95
|
*
|
|
71
96
|
* @summary Update prescription
|
|
@@ -83,6 +108,14 @@ export declare const PrescriptionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
83
108
|
* @throws {RequiredError}
|
|
84
109
|
*/
|
|
85
110
|
apiV1PrescriptionsPrescriptionIdReactivatePut: (prescriptionId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
111
|
+
/**
|
|
112
|
+
*
|
|
113
|
+
* @summary Set IsConfirmed of prescription to false <br> If pdf file had been generated, pdf file deleted.
|
|
114
|
+
* @param {string} prescriptionId
|
|
115
|
+
* @param {*} [options] Override http request option.
|
|
116
|
+
* @throws {RequiredError}
|
|
117
|
+
*/
|
|
118
|
+
apiV1PrescriptionsPrescriptionIdUnconfirmPatch: (prescriptionId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
86
119
|
};
|
|
87
120
|
/**
|
|
88
121
|
* PrescriptionsApi - functional programming interface
|
|
@@ -116,6 +149,14 @@ export declare const PrescriptionsApiFp: (configuration?: Configuration) => {
|
|
|
116
149
|
* @throws {RequiredError}
|
|
117
150
|
*/
|
|
118
151
|
apiV1PrescriptionsPost(createPrescriptionCommand?: CreatePrescriptionCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PrescriptionModel>>;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @summary Set IsConfirmed of prescription to true
|
|
155
|
+
* @param {string} prescriptionId
|
|
156
|
+
* @param {*} [options] Override http request option.
|
|
157
|
+
* @throws {RequiredError}
|
|
158
|
+
*/
|
|
159
|
+
apiV1PrescriptionsPrescriptionIdConfirmPatch(prescriptionId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
119
160
|
/**
|
|
120
161
|
*
|
|
121
162
|
* @summary Delete prescription
|
|
@@ -134,6 +175,23 @@ export declare const PrescriptionsApiFp: (configuration?: Configuration) => {
|
|
|
134
175
|
* @throws {RequiredError}
|
|
135
176
|
*/
|
|
136
177
|
apiV1PrescriptionsPrescriptionIdGet(prescriptionId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PrescriptionModel>>;
|
|
178
|
+
/**
|
|
179
|
+
*
|
|
180
|
+
* @summary Delete prexcription pdf file
|
|
181
|
+
* @param {string} prescriptionId
|
|
182
|
+
* @param {*} [options] Override http request option.
|
|
183
|
+
* @throws {RequiredError}
|
|
184
|
+
*/
|
|
185
|
+
apiV1PrescriptionsPrescriptionIdPdfDelete(prescriptionId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
186
|
+
/**
|
|
187
|
+
*
|
|
188
|
+
* @summary Create prescription pdf file
|
|
189
|
+
* @param {string} prescriptionId
|
|
190
|
+
* @param {string} [languageCode]
|
|
191
|
+
* @param {*} [options] Override http request option.
|
|
192
|
+
* @throws {RequiredError}
|
|
193
|
+
*/
|
|
194
|
+
apiV1PrescriptionsPrescriptionIdPdfPost(prescriptionId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
137
195
|
/**
|
|
138
196
|
*
|
|
139
197
|
* @summary Update prescription
|
|
@@ -151,6 +209,14 @@ export declare const PrescriptionsApiFp: (configuration?: Configuration) => {
|
|
|
151
209
|
* @throws {RequiredError}
|
|
152
210
|
*/
|
|
153
211
|
apiV1PrescriptionsPrescriptionIdReactivatePut(prescriptionId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
212
|
+
/**
|
|
213
|
+
*
|
|
214
|
+
* @summary Set IsConfirmed of prescription to false <br> If pdf file had been generated, pdf file deleted.
|
|
215
|
+
* @param {string} prescriptionId
|
|
216
|
+
* @param {*} [options] Override http request option.
|
|
217
|
+
* @throws {RequiredError}
|
|
218
|
+
*/
|
|
219
|
+
apiV1PrescriptionsPrescriptionIdUnconfirmPatch(prescriptionId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
154
220
|
};
|
|
155
221
|
/**
|
|
156
222
|
* PrescriptionsApi - factory interface
|
|
@@ -184,6 +250,14 @@ export declare const PrescriptionsApiFactory: (configuration?: Configuration, ba
|
|
|
184
250
|
* @throws {RequiredError}
|
|
185
251
|
*/
|
|
186
252
|
apiV1PrescriptionsPost(createPrescriptionCommand?: CreatePrescriptionCommand, options?: any): AxiosPromise<PrescriptionModel>;
|
|
253
|
+
/**
|
|
254
|
+
*
|
|
255
|
+
* @summary Set IsConfirmed of prescription to true
|
|
256
|
+
* @param {string} prescriptionId
|
|
257
|
+
* @param {*} [options] Override http request option.
|
|
258
|
+
* @throws {RequiredError}
|
|
259
|
+
*/
|
|
260
|
+
apiV1PrescriptionsPrescriptionIdConfirmPatch(prescriptionId: string, options?: any): AxiosPromise<boolean>;
|
|
187
261
|
/**
|
|
188
262
|
*
|
|
189
263
|
* @summary Delete prescription
|
|
@@ -202,6 +276,23 @@ export declare const PrescriptionsApiFactory: (configuration?: Configuration, ba
|
|
|
202
276
|
* @throws {RequiredError}
|
|
203
277
|
*/
|
|
204
278
|
apiV1PrescriptionsPrescriptionIdGet(prescriptionId: string, languageCode?: string, options?: any): AxiosPromise<PrescriptionModel>;
|
|
279
|
+
/**
|
|
280
|
+
*
|
|
281
|
+
* @summary Delete prexcription pdf file
|
|
282
|
+
* @param {string} prescriptionId
|
|
283
|
+
* @param {*} [options] Override http request option.
|
|
284
|
+
* @throws {RequiredError}
|
|
285
|
+
*/
|
|
286
|
+
apiV1PrescriptionsPrescriptionIdPdfDelete(prescriptionId: string, options?: any): AxiosPromise<boolean>;
|
|
287
|
+
/**
|
|
288
|
+
*
|
|
289
|
+
* @summary Create prescription pdf file
|
|
290
|
+
* @param {string} prescriptionId
|
|
291
|
+
* @param {string} [languageCode]
|
|
292
|
+
* @param {*} [options] Override http request option.
|
|
293
|
+
* @throws {RequiredError}
|
|
294
|
+
*/
|
|
295
|
+
apiV1PrescriptionsPrescriptionIdPdfPost(prescriptionId: string, languageCode?: string, options?: any): AxiosPromise<boolean>;
|
|
205
296
|
/**
|
|
206
297
|
*
|
|
207
298
|
* @summary Update prescription
|
|
@@ -219,6 +310,14 @@ export declare const PrescriptionsApiFactory: (configuration?: Configuration, ba
|
|
|
219
310
|
* @throws {RequiredError}
|
|
220
311
|
*/
|
|
221
312
|
apiV1PrescriptionsPrescriptionIdReactivatePut(prescriptionId: string, options?: any): AxiosPromise<boolean>;
|
|
313
|
+
/**
|
|
314
|
+
*
|
|
315
|
+
* @summary Set IsConfirmed of prescription to false <br> If pdf file had been generated, pdf file deleted.
|
|
316
|
+
* @param {string} prescriptionId
|
|
317
|
+
* @param {*} [options] Override http request option.
|
|
318
|
+
* @throws {RequiredError}
|
|
319
|
+
*/
|
|
320
|
+
apiV1PrescriptionsPrescriptionIdUnconfirmPatch(prescriptionId: string, options?: any): AxiosPromise<boolean>;
|
|
222
321
|
};
|
|
223
322
|
/**
|
|
224
323
|
* Request parameters for apiV1PrescriptionsGet operation in PrescriptionsApi.
|
|
@@ -312,6 +411,19 @@ export interface PrescriptionsApiApiV1PrescriptionsPostRequest {
|
|
|
312
411
|
*/
|
|
313
412
|
readonly createPrescriptionCommand?: CreatePrescriptionCommand;
|
|
314
413
|
}
|
|
414
|
+
/**
|
|
415
|
+
* Request parameters for apiV1PrescriptionsPrescriptionIdConfirmPatch operation in PrescriptionsApi.
|
|
416
|
+
* @export
|
|
417
|
+
* @interface PrescriptionsApiApiV1PrescriptionsPrescriptionIdConfirmPatchRequest
|
|
418
|
+
*/
|
|
419
|
+
export interface PrescriptionsApiApiV1PrescriptionsPrescriptionIdConfirmPatchRequest {
|
|
420
|
+
/**
|
|
421
|
+
*
|
|
422
|
+
* @type {string}
|
|
423
|
+
* @memberof PrescriptionsApiApiV1PrescriptionsPrescriptionIdConfirmPatch
|
|
424
|
+
*/
|
|
425
|
+
readonly prescriptionId: string;
|
|
426
|
+
}
|
|
315
427
|
/**
|
|
316
428
|
* Request parameters for apiV1PrescriptionsPrescriptionIdDelete operation in PrescriptionsApi.
|
|
317
429
|
* @export
|
|
@@ -350,6 +462,38 @@ export interface PrescriptionsApiApiV1PrescriptionsPrescriptionIdGetRequest {
|
|
|
350
462
|
*/
|
|
351
463
|
readonly languageCode?: string;
|
|
352
464
|
}
|
|
465
|
+
/**
|
|
466
|
+
* Request parameters for apiV1PrescriptionsPrescriptionIdPdfDelete operation in PrescriptionsApi.
|
|
467
|
+
* @export
|
|
468
|
+
* @interface PrescriptionsApiApiV1PrescriptionsPrescriptionIdPdfDeleteRequest
|
|
469
|
+
*/
|
|
470
|
+
export interface PrescriptionsApiApiV1PrescriptionsPrescriptionIdPdfDeleteRequest {
|
|
471
|
+
/**
|
|
472
|
+
*
|
|
473
|
+
* @type {string}
|
|
474
|
+
* @memberof PrescriptionsApiApiV1PrescriptionsPrescriptionIdPdfDelete
|
|
475
|
+
*/
|
|
476
|
+
readonly prescriptionId: string;
|
|
477
|
+
}
|
|
478
|
+
/**
|
|
479
|
+
* Request parameters for apiV1PrescriptionsPrescriptionIdPdfPost operation in PrescriptionsApi.
|
|
480
|
+
* @export
|
|
481
|
+
* @interface PrescriptionsApiApiV1PrescriptionsPrescriptionIdPdfPostRequest
|
|
482
|
+
*/
|
|
483
|
+
export interface PrescriptionsApiApiV1PrescriptionsPrescriptionIdPdfPostRequest {
|
|
484
|
+
/**
|
|
485
|
+
*
|
|
486
|
+
* @type {string}
|
|
487
|
+
* @memberof PrescriptionsApiApiV1PrescriptionsPrescriptionIdPdfPost
|
|
488
|
+
*/
|
|
489
|
+
readonly prescriptionId: string;
|
|
490
|
+
/**
|
|
491
|
+
*
|
|
492
|
+
* @type {string}
|
|
493
|
+
* @memberof PrescriptionsApiApiV1PrescriptionsPrescriptionIdPdfPost
|
|
494
|
+
*/
|
|
495
|
+
readonly languageCode?: string;
|
|
496
|
+
}
|
|
353
497
|
/**
|
|
354
498
|
* Request parameters for apiV1PrescriptionsPrescriptionIdPut operation in PrescriptionsApi.
|
|
355
499
|
* @export
|
|
@@ -382,6 +526,19 @@ export interface PrescriptionsApiApiV1PrescriptionsPrescriptionIdReactivatePutRe
|
|
|
382
526
|
*/
|
|
383
527
|
readonly prescriptionId: string;
|
|
384
528
|
}
|
|
529
|
+
/**
|
|
530
|
+
* Request parameters for apiV1PrescriptionsPrescriptionIdUnconfirmPatch operation in PrescriptionsApi.
|
|
531
|
+
* @export
|
|
532
|
+
* @interface PrescriptionsApiApiV1PrescriptionsPrescriptionIdUnconfirmPatchRequest
|
|
533
|
+
*/
|
|
534
|
+
export interface PrescriptionsApiApiV1PrescriptionsPrescriptionIdUnconfirmPatchRequest {
|
|
535
|
+
/**
|
|
536
|
+
*
|
|
537
|
+
* @type {string}
|
|
538
|
+
* @memberof PrescriptionsApiApiV1PrescriptionsPrescriptionIdUnconfirmPatch
|
|
539
|
+
*/
|
|
540
|
+
readonly prescriptionId: string;
|
|
541
|
+
}
|
|
385
542
|
/**
|
|
386
543
|
* PrescriptionsApi - object-oriented interface
|
|
387
544
|
* @export
|
|
@@ -407,6 +564,15 @@ export declare class PrescriptionsApi extends BaseAPI {
|
|
|
407
564
|
* @memberof PrescriptionsApi
|
|
408
565
|
*/
|
|
409
566
|
apiV1PrescriptionsPost(requestParameters?: PrescriptionsApiApiV1PrescriptionsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PrescriptionModel, any>>;
|
|
567
|
+
/**
|
|
568
|
+
*
|
|
569
|
+
* @summary Set IsConfirmed of prescription to true
|
|
570
|
+
* @param {PrescriptionsApiApiV1PrescriptionsPrescriptionIdConfirmPatchRequest} requestParameters Request parameters.
|
|
571
|
+
* @param {*} [options] Override http request option.
|
|
572
|
+
* @throws {RequiredError}
|
|
573
|
+
* @memberof PrescriptionsApi
|
|
574
|
+
*/
|
|
575
|
+
apiV1PrescriptionsPrescriptionIdConfirmPatch(requestParameters: PrescriptionsApiApiV1PrescriptionsPrescriptionIdConfirmPatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
410
576
|
/**
|
|
411
577
|
*
|
|
412
578
|
* @summary Delete prescription
|
|
@@ -425,6 +591,24 @@ export declare class PrescriptionsApi extends BaseAPI {
|
|
|
425
591
|
* @memberof PrescriptionsApi
|
|
426
592
|
*/
|
|
427
593
|
apiV1PrescriptionsPrescriptionIdGet(requestParameters: PrescriptionsApiApiV1PrescriptionsPrescriptionIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PrescriptionModel, any>>;
|
|
594
|
+
/**
|
|
595
|
+
*
|
|
596
|
+
* @summary Delete prexcription pdf file
|
|
597
|
+
* @param {PrescriptionsApiApiV1PrescriptionsPrescriptionIdPdfDeleteRequest} requestParameters Request parameters.
|
|
598
|
+
* @param {*} [options] Override http request option.
|
|
599
|
+
* @throws {RequiredError}
|
|
600
|
+
* @memberof PrescriptionsApi
|
|
601
|
+
*/
|
|
602
|
+
apiV1PrescriptionsPrescriptionIdPdfDelete(requestParameters: PrescriptionsApiApiV1PrescriptionsPrescriptionIdPdfDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
603
|
+
/**
|
|
604
|
+
*
|
|
605
|
+
* @summary Create prescription pdf file
|
|
606
|
+
* @param {PrescriptionsApiApiV1PrescriptionsPrescriptionIdPdfPostRequest} requestParameters Request parameters.
|
|
607
|
+
* @param {*} [options] Override http request option.
|
|
608
|
+
* @throws {RequiredError}
|
|
609
|
+
* @memberof PrescriptionsApi
|
|
610
|
+
*/
|
|
611
|
+
apiV1PrescriptionsPrescriptionIdPdfPost(requestParameters: PrescriptionsApiApiV1PrescriptionsPrescriptionIdPdfPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
428
612
|
/**
|
|
429
613
|
*
|
|
430
614
|
* @summary Update prescription
|
|
@@ -443,5 +627,14 @@ export declare class PrescriptionsApi extends BaseAPI {
|
|
|
443
627
|
* @memberof PrescriptionsApi
|
|
444
628
|
*/
|
|
445
629
|
apiV1PrescriptionsPrescriptionIdReactivatePut(requestParameters: PrescriptionsApiApiV1PrescriptionsPrescriptionIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
630
|
+
/**
|
|
631
|
+
*
|
|
632
|
+
* @summary Set IsConfirmed of prescription to false <br> If pdf file had been generated, pdf file deleted.
|
|
633
|
+
* @param {PrescriptionsApiApiV1PrescriptionsPrescriptionIdUnconfirmPatchRequest} requestParameters Request parameters.
|
|
634
|
+
* @param {*} [options] Override http request option.
|
|
635
|
+
* @throws {RequiredError}
|
|
636
|
+
* @memberof PrescriptionsApi
|
|
637
|
+
*/
|
|
638
|
+
apiV1PrescriptionsPrescriptionIdUnconfirmPatch(requestParameters: PrescriptionsApiApiV1PrescriptionsPrescriptionIdUnconfirmPatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
446
639
|
}
|
|
447
640
|
//# sourceMappingURL=prescriptions-api.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prescriptions-api.d.ts","sourceRoot":"","sources":["../../src/api/prescriptions-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,yBAAyB,EAAE,MAAM,WAAW,CAAC;AAEtD,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAE9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAI/C,OAAO,EAAE,yBAAyB,EAAE,MAAM,WAAW,CAAC;AACtD;;;GAGG;AACH,eAAO,MAAM,iCAAiC,mBAA6B,aAAa;IAEhF;;;;;;;;;;;;;;;;;OAiBG;2CAC0C,MAAM,eAAe,MAAM,aAAa,MAAM,wBAAwB,MAAM,cAAc,MAAM,yBAAyB,MAAM,uBAAuB,MAAM,gBAAgB,MAAM,eAAe,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA8EnW;;;;;;OAMG;yDACwD,yBAAyB,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA+B7I;;;;;;;OAOG;6DAC4D,MAAM,gBAAgB,OAAO,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAmCrJ;;;;;;;OAOG;0DACyD,MAAM,iBAAiB,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAmClJ;;;;;;;OAOG;0DACyD,MAAM,8BAA8B,yBAAyB,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAkClL;;;;;;OAMG;oEACmE,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"prescriptions-api.d.ts","sourceRoot":"","sources":["../../src/api/prescriptions-api.ts"],"names":[],"mappings":"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"}
|