ch-api-client-typescript2 5.3.1 → 5.3.3
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/call-histories-api.d.ts +144 -0
- package/lib/api/call-histories-api.d.ts.map +1 -0
- package/lib/api/call-histories-api.js +286 -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/call-status.d.ts +29 -0
- package/lib/models/call-status.d.ts.map +1 -0
- package/lib/models/call-status.js +32 -0
- package/lib/models/create-call-history-command.d.ts +104 -0
- package/lib/models/create-call-history-command.d.ts.map +1 -0
- package/lib/models/create-call-history-command.js +15 -0
- package/lib/models/deal-document-model.d.ts +6 -0
- package/lib/models/deal-document-model.d.ts.map +1 -1
- package/lib/models/deal-item-model.d.ts +6 -0
- package/lib/models/deal-item-model.d.ts.map +1 -1
- package/lib/models/deal-model.d.ts +6 -0
- package/lib/models/deal-model.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/doctor-document-model.d.ts +6 -0
- package/lib/models/doctor-document-model.d.ts.map +1 -1
- package/lib/models/grade-document-model.d.ts +43 -0
- package/lib/models/grade-document-model.d.ts.map +1 -0
- package/lib/models/grade-document-model.js +15 -0
- package/lib/models/grade-model.d.ts +43 -0
- package/lib/models/grade-model.d.ts.map +1 -0
- package/lib/models/grade-model.js +15 -0
- package/lib/models/hospital-document-model.d.ts +85 -78
- package/lib/models/hospital-document-model.d.ts.map +1 -1
- package/lib/models/hospital-item-model.d.ts +19 -0
- package/lib/models/hospital-item-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +19 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/hospital-sub-document-model.d.ts +7 -0
- package/lib/models/hospital-sub-document-model.d.ts.map +1 -1
- package/lib/models/hospital-translation-document-model.d.ts +61 -0
- package/lib/models/hospital-translation-document-model.d.ts.map +1 -0
- package/lib/models/hospital-translation-document-model.js +15 -0
- package/lib/models/index.d.ts +6 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +6 -0
- package/lib/models/update-call-history-command.d.ts +98 -0
- package/lib/models/update-call-history-command.d.ts.map +1 -0
- package/lib/models/update-call-history-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +7 -0
- package/src/api/call-histories-api.ts +237 -0
- package/src/api.ts +1 -0
- package/src/models/call-status.ts +38 -0
- package/src/models/create-call-history-command.ts +111 -0
- package/src/models/deal-document-model.ts +6 -0
- package/src/models/deal-item-model.ts +6 -0
- package/src/models/deal-model.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/doctor-document-model.ts +6 -0
- package/src/models/grade-document-model.ts +48 -0
- package/src/models/grade-model.ts +48 -0
- package/src/models/hospital-document-model.ts +89 -80
- package/src/models/hospital-item-model.ts +21 -0
- package/src/models/hospital-model.ts +21 -0
- package/src/models/hospital-sub-document-model.ts +9 -0
- package/src/models/hospital-translation-document-model.ts +66 -0
- package/src/models/index.ts +6 -0
- package/src/models/update-call-history-command.ts +105 -0
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: hyounoosung@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 { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
+
import { Configuration } from '../configuration';
|
|
14
|
+
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { CreateCallHistoryCommand } from '../models';
|
|
16
|
+
import { UpdateCallHistoryCommand } from '../models';
|
|
17
|
+
/**
|
|
18
|
+
* CallHistoriesApi - axios parameter creator
|
|
19
|
+
* @export
|
|
20
|
+
*/
|
|
21
|
+
export declare const CallHistoriesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @summary Update Call History
|
|
25
|
+
* @param {string} callId
|
|
26
|
+
* @param {UpdateCallHistoryCommand} [updateCallHistoryCommand]
|
|
27
|
+
* @param {*} [options] Override http request option.
|
|
28
|
+
* @throws {RequiredError}
|
|
29
|
+
*/
|
|
30
|
+
apiV2CallhistoriesCallIdPost: (callId: string, updateCallHistoryCommand?: UpdateCallHistoryCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @summary Create Call History
|
|
34
|
+
* @param {CreateCallHistoryCommand} [createCallHistoryCommand]
|
|
35
|
+
* @param {*} [options] Override http request option.
|
|
36
|
+
* @throws {RequiredError}
|
|
37
|
+
*/
|
|
38
|
+
apiV2CallhistoriesPost: (createCallHistoryCommand?: CreateCallHistoryCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* CallHistoriesApi - functional programming interface
|
|
42
|
+
* @export
|
|
43
|
+
*/
|
|
44
|
+
export declare const CallHistoriesApiFp: (configuration?: Configuration) => {
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @summary Update Call History
|
|
48
|
+
* @param {string} callId
|
|
49
|
+
* @param {UpdateCallHistoryCommand} [updateCallHistoryCommand]
|
|
50
|
+
* @param {*} [options] Override http request option.
|
|
51
|
+
* @throws {RequiredError}
|
|
52
|
+
*/
|
|
53
|
+
apiV2CallhistoriesCallIdPost(callId: string, updateCallHistoryCommand?: UpdateCallHistoryCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @summary Create Call History
|
|
57
|
+
* @param {CreateCallHistoryCommand} [createCallHistoryCommand]
|
|
58
|
+
* @param {*} [options] Override http request option.
|
|
59
|
+
* @throws {RequiredError}
|
|
60
|
+
*/
|
|
61
|
+
apiV2CallhistoriesPost(createCallHistoryCommand?: CreateCallHistoryCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* CallHistoriesApi - factory interface
|
|
65
|
+
* @export
|
|
66
|
+
*/
|
|
67
|
+
export declare const CallHistoriesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @summary Update Call History
|
|
71
|
+
* @param {string} callId
|
|
72
|
+
* @param {UpdateCallHistoryCommand} [updateCallHistoryCommand]
|
|
73
|
+
* @param {*} [options] Override http request option.
|
|
74
|
+
* @throws {RequiredError}
|
|
75
|
+
*/
|
|
76
|
+
apiV2CallhistoriesCallIdPost(callId: string, updateCallHistoryCommand?: UpdateCallHistoryCommand, options?: any): AxiosPromise<string>;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @summary Create Call History
|
|
80
|
+
* @param {CreateCallHistoryCommand} [createCallHistoryCommand]
|
|
81
|
+
* @param {*} [options] Override http request option.
|
|
82
|
+
* @throws {RequiredError}
|
|
83
|
+
*/
|
|
84
|
+
apiV2CallhistoriesPost(createCallHistoryCommand?: CreateCallHistoryCommand, options?: any): AxiosPromise<string>;
|
|
85
|
+
};
|
|
86
|
+
/**
|
|
87
|
+
* Request parameters for apiV2CallhistoriesCallIdPost operation in CallHistoriesApi.
|
|
88
|
+
* @export
|
|
89
|
+
* @interface CallHistoriesApiApiV2CallhistoriesCallIdPostRequest
|
|
90
|
+
*/
|
|
91
|
+
export interface CallHistoriesApiApiV2CallhistoriesCallIdPostRequest {
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof CallHistoriesApiApiV2CallhistoriesCallIdPost
|
|
96
|
+
*/
|
|
97
|
+
readonly callId: string;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {UpdateCallHistoryCommand}
|
|
101
|
+
* @memberof CallHistoriesApiApiV2CallhistoriesCallIdPost
|
|
102
|
+
*/
|
|
103
|
+
readonly updateCallHistoryCommand?: UpdateCallHistoryCommand;
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* Request parameters for apiV2CallhistoriesPost operation in CallHistoriesApi.
|
|
107
|
+
* @export
|
|
108
|
+
* @interface CallHistoriesApiApiV2CallhistoriesPostRequest
|
|
109
|
+
*/
|
|
110
|
+
export interface CallHistoriesApiApiV2CallhistoriesPostRequest {
|
|
111
|
+
/**
|
|
112
|
+
*
|
|
113
|
+
* @type {CreateCallHistoryCommand}
|
|
114
|
+
* @memberof CallHistoriesApiApiV2CallhistoriesPost
|
|
115
|
+
*/
|
|
116
|
+
readonly createCallHistoryCommand?: CreateCallHistoryCommand;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* CallHistoriesApi - object-oriented interface
|
|
120
|
+
* @export
|
|
121
|
+
* @class CallHistoriesApi
|
|
122
|
+
* @extends {BaseAPI}
|
|
123
|
+
*/
|
|
124
|
+
export declare class CallHistoriesApi extends BaseAPI {
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @summary Update Call History
|
|
128
|
+
* @param {CallHistoriesApiApiV2CallhistoriesCallIdPostRequest} requestParameters Request parameters.
|
|
129
|
+
* @param {*} [options] Override http request option.
|
|
130
|
+
* @throws {RequiredError}
|
|
131
|
+
* @memberof CallHistoriesApi
|
|
132
|
+
*/
|
|
133
|
+
apiV2CallhistoriesCallIdPost(requestParameters: CallHistoriesApiApiV2CallhistoriesCallIdPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @summary Create Call History
|
|
137
|
+
* @param {CallHistoriesApiApiV2CallhistoriesPostRequest} requestParameters Request parameters.
|
|
138
|
+
* @param {*} [options] Override http request option.
|
|
139
|
+
* @throws {RequiredError}
|
|
140
|
+
* @memberof CallHistoriesApi
|
|
141
|
+
*/
|
|
142
|
+
apiV2CallhistoriesPost(requestParameters?: CallHistoriesApiApiV2CallhistoriesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
143
|
+
}
|
|
144
|
+
//# sourceMappingURL=call-histories-api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"call-histories-api.d.ts","sourceRoot":"","sources":["../../src/api/call-histories-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,wBAAwB,EAAE,MAAM,WAAW,CAAC;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAC;AACrD;;;GAGG;AACH,eAAO,MAAM,iCAAiC,mBAA6B,aAAa;IAEhF;;;;;;;OAOG;2CAC0C,MAAM,6BAA6B,wBAAwB,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA8BjK;;;;;;OAMG;wDACuD,wBAAwB,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;CA4BlJ,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,mBAA4B,aAAa;IAGhE;;;;;;;OAOG;yCACwC,MAAM,6BAA6B,wBAAwB,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,MAAM,CAAC;IAIjN;;;;;;OAMG;sDACqD,wBAAwB,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,MAAM,CAAC;CAKlM,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,uBAAuB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAGhH;;;;;;;OAOG;yCACkC,MAAM,6BAA6B,wBAAwB,YAAY,GAAG,GAAG,aAAa,MAAM,CAAC;IAGtI;;;;;;OAMG;sDAC+C,wBAAwB,YAAY,GAAG,GAAG,aAAa,MAAM,CAAC;CAIvH,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,mDAAmD;IAChE;;;;OAIG;IACH,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,wBAAwB,CAAC,EAAE,wBAAwB,CAAA;CAC/D;AAED;;;;GAIG;AACH,MAAM,WAAW,6CAA6C;IAC1D;;;;OAIG;IACH,QAAQ,CAAC,wBAAwB,CAAC,EAAE,wBAAwB,CAAA;CAC/D;AAED;;;;;GAKG;AACH,qBAAa,gBAAiB,SAAQ,OAAO;IACzC;;;;;;;OAOG;IACI,4BAA4B,CAAC,iBAAiB,EAAE,mDAAmD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIxI;;;;;;;OAOG;IACI,sBAAsB,CAAC,iBAAiB,GAAE,6CAAkD,EAAE,OAAO,CAAC,EAAE,kBAAkB;CAGpI"}
|
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
9
|
+
* Contact: hyounoosung@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.CallHistoriesApi = exports.CallHistoriesApiFactory = exports.CallHistoriesApiFp = exports.CallHistoriesApiAxiosParamCreator = 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
|
+
* CallHistoriesApi - axios parameter creator
|
|
90
|
+
* @export
|
|
91
|
+
*/
|
|
92
|
+
var CallHistoriesApiAxiosParamCreator = function (configuration) {
|
|
93
|
+
var _this = this;
|
|
94
|
+
return {
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @summary Update Call History
|
|
98
|
+
* @param {string} callId
|
|
99
|
+
* @param {UpdateCallHistoryCommand} [updateCallHistoryCommand]
|
|
100
|
+
* @param {*} [options] Override http request option.
|
|
101
|
+
* @throws {RequiredError}
|
|
102
|
+
*/
|
|
103
|
+
apiV2CallhistoriesCallIdPost: function (callId, updateCallHistoryCommand, options) {
|
|
104
|
+
if (options === void 0) { options = {}; }
|
|
105
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
106
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
107
|
+
return __generator(this, function (_a) {
|
|
108
|
+
// verify required parameter 'callId' is not null or undefined
|
|
109
|
+
(0, common_1.assertParamExists)('apiV2CallhistoriesCallIdPost', 'callId', callId);
|
|
110
|
+
localVarPath = "/api/v2/callhistories/{callId}"
|
|
111
|
+
.replace("{".concat("callId", "}"), encodeURIComponent(String(callId)));
|
|
112
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
113
|
+
if (configuration) {
|
|
114
|
+
baseOptions = configuration.baseOptions;
|
|
115
|
+
}
|
|
116
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
117
|
+
localVarHeaderParameter = {};
|
|
118
|
+
localVarQueryParameter = {};
|
|
119
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
120
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
121
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
122
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
123
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(updateCallHistoryCommand, localVarRequestOptions, configuration);
|
|
124
|
+
return [2 /*return*/, {
|
|
125
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
126
|
+
options: localVarRequestOptions,
|
|
127
|
+
}];
|
|
128
|
+
});
|
|
129
|
+
});
|
|
130
|
+
},
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @summary Create Call History
|
|
134
|
+
* @param {CreateCallHistoryCommand} [createCallHistoryCommand]
|
|
135
|
+
* @param {*} [options] Override http request option.
|
|
136
|
+
* @throws {RequiredError}
|
|
137
|
+
*/
|
|
138
|
+
apiV2CallhistoriesPost: function (createCallHistoryCommand, options) {
|
|
139
|
+
if (options === void 0) { options = {}; }
|
|
140
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
141
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
142
|
+
return __generator(this, function (_a) {
|
|
143
|
+
localVarPath = "/api/v2/callhistories";
|
|
144
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
145
|
+
if (configuration) {
|
|
146
|
+
baseOptions = configuration.baseOptions;
|
|
147
|
+
}
|
|
148
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
149
|
+
localVarHeaderParameter = {};
|
|
150
|
+
localVarQueryParameter = {};
|
|
151
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
152
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
153
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
154
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
155
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createCallHistoryCommand, localVarRequestOptions, configuration);
|
|
156
|
+
return [2 /*return*/, {
|
|
157
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
158
|
+
options: localVarRequestOptions,
|
|
159
|
+
}];
|
|
160
|
+
});
|
|
161
|
+
});
|
|
162
|
+
},
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
exports.CallHistoriesApiAxiosParamCreator = CallHistoriesApiAxiosParamCreator;
|
|
166
|
+
/**
|
|
167
|
+
* CallHistoriesApi - functional programming interface
|
|
168
|
+
* @export
|
|
169
|
+
*/
|
|
170
|
+
var CallHistoriesApiFp = function (configuration) {
|
|
171
|
+
var localVarAxiosParamCreator = (0, exports.CallHistoriesApiAxiosParamCreator)(configuration);
|
|
172
|
+
return {
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @summary Update Call History
|
|
176
|
+
* @param {string} callId
|
|
177
|
+
* @param {UpdateCallHistoryCommand} [updateCallHistoryCommand]
|
|
178
|
+
* @param {*} [options] Override http request option.
|
|
179
|
+
* @throws {RequiredError}
|
|
180
|
+
*/
|
|
181
|
+
apiV2CallhistoriesCallIdPost: function (callId, updateCallHistoryCommand, options) {
|
|
182
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
183
|
+
var localVarAxiosArgs;
|
|
184
|
+
return __generator(this, function (_a) {
|
|
185
|
+
switch (_a.label) {
|
|
186
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2CallhistoriesCallIdPost(callId, updateCallHistoryCommand, options)];
|
|
187
|
+
case 1:
|
|
188
|
+
localVarAxiosArgs = _a.sent();
|
|
189
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
190
|
+
}
|
|
191
|
+
});
|
|
192
|
+
});
|
|
193
|
+
},
|
|
194
|
+
/**
|
|
195
|
+
*
|
|
196
|
+
* @summary Create Call History
|
|
197
|
+
* @param {CreateCallHistoryCommand} [createCallHistoryCommand]
|
|
198
|
+
* @param {*} [options] Override http request option.
|
|
199
|
+
* @throws {RequiredError}
|
|
200
|
+
*/
|
|
201
|
+
apiV2CallhistoriesPost: function (createCallHistoryCommand, options) {
|
|
202
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
203
|
+
var localVarAxiosArgs;
|
|
204
|
+
return __generator(this, function (_a) {
|
|
205
|
+
switch (_a.label) {
|
|
206
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2CallhistoriesPost(createCallHistoryCommand, options)];
|
|
207
|
+
case 1:
|
|
208
|
+
localVarAxiosArgs = _a.sent();
|
|
209
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
210
|
+
}
|
|
211
|
+
});
|
|
212
|
+
});
|
|
213
|
+
},
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
exports.CallHistoriesApiFp = CallHistoriesApiFp;
|
|
217
|
+
/**
|
|
218
|
+
* CallHistoriesApi - factory interface
|
|
219
|
+
* @export
|
|
220
|
+
*/
|
|
221
|
+
var CallHistoriesApiFactory = function (configuration, basePath, axios) {
|
|
222
|
+
var localVarFp = (0, exports.CallHistoriesApiFp)(configuration);
|
|
223
|
+
return {
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @summary Update Call History
|
|
227
|
+
* @param {string} callId
|
|
228
|
+
* @param {UpdateCallHistoryCommand} [updateCallHistoryCommand]
|
|
229
|
+
* @param {*} [options] Override http request option.
|
|
230
|
+
* @throws {RequiredError}
|
|
231
|
+
*/
|
|
232
|
+
apiV2CallhistoriesCallIdPost: function (callId, updateCallHistoryCommand, options) {
|
|
233
|
+
return localVarFp.apiV2CallhistoriesCallIdPost(callId, updateCallHistoryCommand, options).then(function (request) { return request(axios, basePath); });
|
|
234
|
+
},
|
|
235
|
+
/**
|
|
236
|
+
*
|
|
237
|
+
* @summary Create Call History
|
|
238
|
+
* @param {CreateCallHistoryCommand} [createCallHistoryCommand]
|
|
239
|
+
* @param {*} [options] Override http request option.
|
|
240
|
+
* @throws {RequiredError}
|
|
241
|
+
*/
|
|
242
|
+
apiV2CallhistoriesPost: function (createCallHistoryCommand, options) {
|
|
243
|
+
return localVarFp.apiV2CallhistoriesPost(createCallHistoryCommand, options).then(function (request) { return request(axios, basePath); });
|
|
244
|
+
},
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
exports.CallHistoriesApiFactory = CallHistoriesApiFactory;
|
|
248
|
+
/**
|
|
249
|
+
* CallHistoriesApi - object-oriented interface
|
|
250
|
+
* @export
|
|
251
|
+
* @class CallHistoriesApi
|
|
252
|
+
* @extends {BaseAPI}
|
|
253
|
+
*/
|
|
254
|
+
var CallHistoriesApi = /** @class */ (function (_super) {
|
|
255
|
+
__extends(CallHistoriesApi, _super);
|
|
256
|
+
function CallHistoriesApi() {
|
|
257
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
*
|
|
261
|
+
* @summary Update Call History
|
|
262
|
+
* @param {CallHistoriesApiApiV2CallhistoriesCallIdPostRequest} requestParameters Request parameters.
|
|
263
|
+
* @param {*} [options] Override http request option.
|
|
264
|
+
* @throws {RequiredError}
|
|
265
|
+
* @memberof CallHistoriesApi
|
|
266
|
+
*/
|
|
267
|
+
CallHistoriesApi.prototype.apiV2CallhistoriesCallIdPost = function (requestParameters, options) {
|
|
268
|
+
var _this = this;
|
|
269
|
+
return (0, exports.CallHistoriesApiFp)(this.configuration).apiV2CallhistoriesCallIdPost(requestParameters.callId, requestParameters.updateCallHistoryCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
270
|
+
};
|
|
271
|
+
/**
|
|
272
|
+
*
|
|
273
|
+
* @summary Create Call History
|
|
274
|
+
* @param {CallHistoriesApiApiV2CallhistoriesPostRequest} requestParameters Request parameters.
|
|
275
|
+
* @param {*} [options] Override http request option.
|
|
276
|
+
* @throws {RequiredError}
|
|
277
|
+
* @memberof CallHistoriesApi
|
|
278
|
+
*/
|
|
279
|
+
CallHistoriesApi.prototype.apiV2CallhistoriesPost = function (requestParameters, options) {
|
|
280
|
+
var _this = this;
|
|
281
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
282
|
+
return (0, exports.CallHistoriesApiFp)(this.configuration).apiV2CallhistoriesPost(requestParameters.createCallHistoryCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
283
|
+
};
|
|
284
|
+
return CallHistoriesApi;
|
|
285
|
+
}(base_1.BaseAPI));
|
|
286
|
+
exports.CallHistoriesApi = CallHistoriesApi;
|
package/lib/api.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export * from './api/app-version-api';
|
|
|
15
15
|
export * from './api/appointments-api';
|
|
16
16
|
export * from './api/articles-api';
|
|
17
17
|
export * from './api/bookings-api';
|
|
18
|
+
export * from './api/call-histories-api';
|
|
18
19
|
export * from './api/chat-users-api';
|
|
19
20
|
export * from './api/communications-api';
|
|
20
21
|
export * from './api/consultations-api';
|
package/lib/api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,qBAAqB,CAAC;AACpC,cAAc,6CAA6C,CAAC;AAC5D,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC"}
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,qBAAqB,CAAC;AACpC,cAAc,6CAA6C,CAAC;AAC5D,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC"}
|
package/lib/api.js
CHANGED
|
@@ -33,6 +33,7 @@ __exportStar(require("./api/app-version-api"), exports);
|
|
|
33
33
|
__exportStar(require("./api/appointments-api"), exports);
|
|
34
34
|
__exportStar(require("./api/articles-api"), exports);
|
|
35
35
|
__exportStar(require("./api/bookings-api"), exports);
|
|
36
|
+
__exportStar(require("./api/call-histories-api"), exports);
|
|
36
37
|
__exportStar(require("./api/chat-users-api"), exports);
|
|
37
38
|
__exportStar(require("./api/communications-api"), exports);
|
|
38
39
|
__exportStar(require("./api/consultations-api"), exports);
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: hyounoosung@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 CallStatus: {
|
|
18
|
+
readonly Started: "Started";
|
|
19
|
+
readonly Ringing: "Ringing";
|
|
20
|
+
readonly Answered: "Answered";
|
|
21
|
+
readonly Busy: "Busy";
|
|
22
|
+
readonly Cancelled: "Cancelled";
|
|
23
|
+
readonly Unanswered: "Unanswered";
|
|
24
|
+
readonly Disconnected: "Disconnected";
|
|
25
|
+
readonly Rejected: "Rejected";
|
|
26
|
+
readonly Failed: "Failed";
|
|
27
|
+
};
|
|
28
|
+
export type CallStatus = typeof CallStatus[keyof typeof CallStatus];
|
|
29
|
+
//# sourceMappingURL=call-status.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"call-status.d.ts","sourceRoot":"","sources":["../../src/models/call-status.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,UAAU;;;;;;;;;;CAUb,CAAC;AAEX,MAAM,MAAM,UAAU,GAAG,OAAO,UAAU,CAAC,MAAM,OAAO,UAAU,CAAC,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
9
|
+
* Contact: hyounoosung@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.CallStatus = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
exports.CallStatus = {
|
|
23
|
+
Started: 'Started',
|
|
24
|
+
Ringing: 'Ringing',
|
|
25
|
+
Answered: 'Answered',
|
|
26
|
+
Busy: 'Busy',
|
|
27
|
+
Cancelled: 'Cancelled',
|
|
28
|
+
Unanswered: 'Unanswered',
|
|
29
|
+
Disconnected: 'Disconnected',
|
|
30
|
+
Rejected: 'Rejected',
|
|
31
|
+
Failed: 'Failed'
|
|
32
|
+
};
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: hyounoosung@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 { CallStatus } from './call-status';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateCallHistoryCommand
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateCallHistoryCommand {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof CreateCallHistoryCommand
|
|
23
|
+
*/
|
|
24
|
+
'callId'?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof CreateCallHistoryCommand
|
|
29
|
+
*/
|
|
30
|
+
'patientId'?: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CreateCallHistoryCommand
|
|
35
|
+
*/
|
|
36
|
+
'hospitalId'?: string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof CreateCallHistoryCommand
|
|
41
|
+
*/
|
|
42
|
+
'virtualNumber'?: string | null;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof CreateCallHistoryCommand
|
|
47
|
+
*/
|
|
48
|
+
'targetNumber'?: string | null;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {Date}
|
|
52
|
+
* @memberof CreateCallHistoryCommand
|
|
53
|
+
*/
|
|
54
|
+
'startTime'?: Date;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {Date}
|
|
58
|
+
* @memberof CreateCallHistoryCommand
|
|
59
|
+
*/
|
|
60
|
+
'endTime'?: Date;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {number}
|
|
64
|
+
* @memberof CreateCallHistoryCommand
|
|
65
|
+
*/
|
|
66
|
+
'duration'?: number;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {number}
|
|
70
|
+
* @memberof CreateCallHistoryCommand
|
|
71
|
+
*/
|
|
72
|
+
'rate'?: number;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {number}
|
|
76
|
+
* @memberof CreateCallHistoryCommand
|
|
77
|
+
*/
|
|
78
|
+
'price'?: number;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof CreateCallHistoryCommand
|
|
83
|
+
*/
|
|
84
|
+
'customData'?: string | null;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {boolean}
|
|
88
|
+
* @memberof CreateCallHistoryCommand
|
|
89
|
+
*/
|
|
90
|
+
'isExternal'?: boolean;
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @type {CallStatus}
|
|
94
|
+
* @memberof CreateCallHistoryCommand
|
|
95
|
+
*/
|
|
96
|
+
'status'?: CallStatus;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {Date}
|
|
100
|
+
* @memberof CreateCallHistoryCommand
|
|
101
|
+
*/
|
|
102
|
+
'timeStamp'?: Date;
|
|
103
|
+
}
|
|
104
|
+
//# sourceMappingURL=create-call-history-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-call-history-command.d.ts","sourceRoot":"","sources":["../../src/models/create-call-history-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB;;;;OAIG;IACH,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,UAAU,CAAC;IACtB;;;;OAIG;IACH,WAAW,CAAC,EAAE,IAAI,CAAC;CACtB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
9
|
+
* Contact: hyounoosung@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 });
|
|
@@ -328,6 +328,12 @@ export interface DealDocumentModel {
|
|
|
328
328
|
* @memberof DealDocumentModel
|
|
329
329
|
*/
|
|
330
330
|
'ServiceDuration'?: number;
|
|
331
|
+
/**
|
|
332
|
+
*
|
|
333
|
+
* @type {string}
|
|
334
|
+
* @memberof DealDocumentModel
|
|
335
|
+
*/
|
|
336
|
+
'FormUrl'?: string | null;
|
|
331
337
|
/**
|
|
332
338
|
*
|
|
333
339
|
* @type {AppointmentOptionDocumentModel}
|