ch-api-client-typescript2 5.90.73 → 5.91.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.
@@ -0,0 +1,265 @@
1
+ /**
2
+ * CloudHospital Api
3
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 2
6
+ * Contact: developer@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
+ import { Configuration } from '../configuration';
14
+ import { RequestArgs, BaseAPI } from '../base';
15
+ import { ConfirmSignupIdentityEmailCommand } from '../models';
16
+ import { ConfirmSignupPhoneNumberCommand } from '../models';
17
+ import { SendSignupVerificationEmailCommand } from '../models';
18
+ import { SendSignupVerificationSmsCommand } from '../models';
19
+ /**
20
+ * SignupVerificationsApi - axios parameter creator
21
+ * @export
22
+ */
23
+ export declare const SignupVerificationsApiAxiosParamCreator: (configuration?: Configuration) => {
24
+ /**
25
+ *
26
+ * @summary Confirm sign-up email verification via IdentityAdmin.
27
+ * @param {string} [xCloudhospitalPlatform]
28
+ * @param {ConfirmSignupIdentityEmailCommand} [confirmSignupIdentityEmailCommand]
29
+ * @param {*} [options] Override http request option.
30
+ * @throws {RequiredError}
31
+ */
32
+ apiV2SignupVerificationsConfirmidentityemailPost: (xCloudhospitalPlatform?: string, confirmSignupIdentityEmailCommand?: ConfirmSignupIdentityEmailCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
33
+ /**
34
+ *
35
+ * @summary Confirm sign-up phone number verification via IdentityAdmin.
36
+ * @param {string} [xCloudhospitalPlatform]
37
+ * @param {ConfirmSignupPhoneNumberCommand} [confirmSignupPhoneNumberCommand]
38
+ * @param {*} [options] Override http request option.
39
+ * @throws {RequiredError}
40
+ */
41
+ apiV2SignupVerificationsConfirmphonenumberPost: (xCloudhospitalPlatform?: string, confirmSignupPhoneNumberCommand?: ConfirmSignupPhoneNumberCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
42
+ /**
43
+ *
44
+ * @summary Send a sign-up verification email via IdentityAdmin.
45
+ * @param {string} [xCloudhospitalPlatform]
46
+ * @param {SendSignupVerificationEmailCommand} [sendSignupVerificationEmailCommand]
47
+ * @param {*} [options] Override http request option.
48
+ * @throws {RequiredError}
49
+ */
50
+ apiV2SignupVerificationsSendverificationemailPost: (xCloudhospitalPlatform?: string, sendSignupVerificationEmailCommand?: SendSignupVerificationEmailCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
51
+ /**
52
+ *
53
+ * @summary Send a sign-up verification SMS via IdentityAdmin.
54
+ * @param {string} [xCloudhospitalPlatform]
55
+ * @param {SendSignupVerificationSmsCommand} [sendSignupVerificationSmsCommand]
56
+ * @param {*} [options] Override http request option.
57
+ * @throws {RequiredError}
58
+ */
59
+ apiV2SignupVerificationsSendverificationsmsPost: (xCloudhospitalPlatform?: string, sendSignupVerificationSmsCommand?: SendSignupVerificationSmsCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
60
+ };
61
+ /**
62
+ * SignupVerificationsApi - functional programming interface
63
+ * @export
64
+ */
65
+ export declare const SignupVerificationsApiFp: (configuration?: Configuration) => {
66
+ /**
67
+ *
68
+ * @summary Confirm sign-up email verification via IdentityAdmin.
69
+ * @param {string} [xCloudhospitalPlatform]
70
+ * @param {ConfirmSignupIdentityEmailCommand} [confirmSignupIdentityEmailCommand]
71
+ * @param {*} [options] Override http request option.
72
+ * @throws {RequiredError}
73
+ */
74
+ apiV2SignupVerificationsConfirmidentityemailPost(xCloudhospitalPlatform?: string, confirmSignupIdentityEmailCommand?: ConfirmSignupIdentityEmailCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
75
+ /**
76
+ *
77
+ * @summary Confirm sign-up phone number verification via IdentityAdmin.
78
+ * @param {string} [xCloudhospitalPlatform]
79
+ * @param {ConfirmSignupPhoneNumberCommand} [confirmSignupPhoneNumberCommand]
80
+ * @param {*} [options] Override http request option.
81
+ * @throws {RequiredError}
82
+ */
83
+ apiV2SignupVerificationsConfirmphonenumberPost(xCloudhospitalPlatform?: string, confirmSignupPhoneNumberCommand?: ConfirmSignupPhoneNumberCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
84
+ /**
85
+ *
86
+ * @summary Send a sign-up verification email via IdentityAdmin.
87
+ * @param {string} [xCloudhospitalPlatform]
88
+ * @param {SendSignupVerificationEmailCommand} [sendSignupVerificationEmailCommand]
89
+ * @param {*} [options] Override http request option.
90
+ * @throws {RequiredError}
91
+ */
92
+ apiV2SignupVerificationsSendverificationemailPost(xCloudhospitalPlatform?: string, sendSignupVerificationEmailCommand?: SendSignupVerificationEmailCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
93
+ /**
94
+ *
95
+ * @summary Send a sign-up verification SMS via IdentityAdmin.
96
+ * @param {string} [xCloudhospitalPlatform]
97
+ * @param {SendSignupVerificationSmsCommand} [sendSignupVerificationSmsCommand]
98
+ * @param {*} [options] Override http request option.
99
+ * @throws {RequiredError}
100
+ */
101
+ apiV2SignupVerificationsSendverificationsmsPost(xCloudhospitalPlatform?: string, sendSignupVerificationSmsCommand?: SendSignupVerificationSmsCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
102
+ };
103
+ /**
104
+ * SignupVerificationsApi - factory interface
105
+ * @export
106
+ */
107
+ export declare const SignupVerificationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
108
+ /**
109
+ *
110
+ * @summary Confirm sign-up email verification via IdentityAdmin.
111
+ * @param {string} [xCloudhospitalPlatform]
112
+ * @param {ConfirmSignupIdentityEmailCommand} [confirmSignupIdentityEmailCommand]
113
+ * @param {*} [options] Override http request option.
114
+ * @throws {RequiredError}
115
+ */
116
+ apiV2SignupVerificationsConfirmidentityemailPost(xCloudhospitalPlatform?: string, confirmSignupIdentityEmailCommand?: ConfirmSignupIdentityEmailCommand, options?: any): AxiosPromise<boolean>;
117
+ /**
118
+ *
119
+ * @summary Confirm sign-up phone number verification via IdentityAdmin.
120
+ * @param {string} [xCloudhospitalPlatform]
121
+ * @param {ConfirmSignupPhoneNumberCommand} [confirmSignupPhoneNumberCommand]
122
+ * @param {*} [options] Override http request option.
123
+ * @throws {RequiredError}
124
+ */
125
+ apiV2SignupVerificationsConfirmphonenumberPost(xCloudhospitalPlatform?: string, confirmSignupPhoneNumberCommand?: ConfirmSignupPhoneNumberCommand, options?: any): AxiosPromise<boolean>;
126
+ /**
127
+ *
128
+ * @summary Send a sign-up verification email via IdentityAdmin.
129
+ * @param {string} [xCloudhospitalPlatform]
130
+ * @param {SendSignupVerificationEmailCommand} [sendSignupVerificationEmailCommand]
131
+ * @param {*} [options] Override http request option.
132
+ * @throws {RequiredError}
133
+ */
134
+ apiV2SignupVerificationsSendverificationemailPost(xCloudhospitalPlatform?: string, sendSignupVerificationEmailCommand?: SendSignupVerificationEmailCommand, options?: any): AxiosPromise<boolean>;
135
+ /**
136
+ *
137
+ * @summary Send a sign-up verification SMS via IdentityAdmin.
138
+ * @param {string} [xCloudhospitalPlatform]
139
+ * @param {SendSignupVerificationSmsCommand} [sendSignupVerificationSmsCommand]
140
+ * @param {*} [options] Override http request option.
141
+ * @throws {RequiredError}
142
+ */
143
+ apiV2SignupVerificationsSendverificationsmsPost(xCloudhospitalPlatform?: string, sendSignupVerificationSmsCommand?: SendSignupVerificationSmsCommand, options?: any): AxiosPromise<boolean>;
144
+ };
145
+ /**
146
+ * Request parameters for apiV2SignupVerificationsConfirmidentityemailPost operation in SignupVerificationsApi.
147
+ * @export
148
+ * @interface SignupVerificationsApiApiV2SignupVerificationsConfirmidentityemailPostRequest
149
+ */
150
+ export interface SignupVerificationsApiApiV2SignupVerificationsConfirmidentityemailPostRequest {
151
+ /**
152
+ *
153
+ * @type {string}
154
+ * @memberof SignupVerificationsApiApiV2SignupVerificationsConfirmidentityemailPost
155
+ */
156
+ readonly xCloudhospitalPlatform?: string;
157
+ /**
158
+ *
159
+ * @type {ConfirmSignupIdentityEmailCommand}
160
+ * @memberof SignupVerificationsApiApiV2SignupVerificationsConfirmidentityemailPost
161
+ */
162
+ readonly confirmSignupIdentityEmailCommand?: ConfirmSignupIdentityEmailCommand;
163
+ }
164
+ /**
165
+ * Request parameters for apiV2SignupVerificationsConfirmphonenumberPost operation in SignupVerificationsApi.
166
+ * @export
167
+ * @interface SignupVerificationsApiApiV2SignupVerificationsConfirmphonenumberPostRequest
168
+ */
169
+ export interface SignupVerificationsApiApiV2SignupVerificationsConfirmphonenumberPostRequest {
170
+ /**
171
+ *
172
+ * @type {string}
173
+ * @memberof SignupVerificationsApiApiV2SignupVerificationsConfirmphonenumberPost
174
+ */
175
+ readonly xCloudhospitalPlatform?: string;
176
+ /**
177
+ *
178
+ * @type {ConfirmSignupPhoneNumberCommand}
179
+ * @memberof SignupVerificationsApiApiV2SignupVerificationsConfirmphonenumberPost
180
+ */
181
+ readonly confirmSignupPhoneNumberCommand?: ConfirmSignupPhoneNumberCommand;
182
+ }
183
+ /**
184
+ * Request parameters for apiV2SignupVerificationsSendverificationemailPost operation in SignupVerificationsApi.
185
+ * @export
186
+ * @interface SignupVerificationsApiApiV2SignupVerificationsSendverificationemailPostRequest
187
+ */
188
+ export interface SignupVerificationsApiApiV2SignupVerificationsSendverificationemailPostRequest {
189
+ /**
190
+ *
191
+ * @type {string}
192
+ * @memberof SignupVerificationsApiApiV2SignupVerificationsSendverificationemailPost
193
+ */
194
+ readonly xCloudhospitalPlatform?: string;
195
+ /**
196
+ *
197
+ * @type {SendSignupVerificationEmailCommand}
198
+ * @memberof SignupVerificationsApiApiV2SignupVerificationsSendverificationemailPost
199
+ */
200
+ readonly sendSignupVerificationEmailCommand?: SendSignupVerificationEmailCommand;
201
+ }
202
+ /**
203
+ * Request parameters for apiV2SignupVerificationsSendverificationsmsPost operation in SignupVerificationsApi.
204
+ * @export
205
+ * @interface SignupVerificationsApiApiV2SignupVerificationsSendverificationsmsPostRequest
206
+ */
207
+ export interface SignupVerificationsApiApiV2SignupVerificationsSendverificationsmsPostRequest {
208
+ /**
209
+ *
210
+ * @type {string}
211
+ * @memberof SignupVerificationsApiApiV2SignupVerificationsSendverificationsmsPost
212
+ */
213
+ readonly xCloudhospitalPlatform?: string;
214
+ /**
215
+ *
216
+ * @type {SendSignupVerificationSmsCommand}
217
+ * @memberof SignupVerificationsApiApiV2SignupVerificationsSendverificationsmsPost
218
+ */
219
+ readonly sendSignupVerificationSmsCommand?: SendSignupVerificationSmsCommand;
220
+ }
221
+ /**
222
+ * SignupVerificationsApi - object-oriented interface
223
+ * @export
224
+ * @class SignupVerificationsApi
225
+ * @extends {BaseAPI}
226
+ */
227
+ export declare class SignupVerificationsApi extends BaseAPI {
228
+ /**
229
+ *
230
+ * @summary Confirm sign-up email verification via IdentityAdmin.
231
+ * @param {SignupVerificationsApiApiV2SignupVerificationsConfirmidentityemailPostRequest} requestParameters Request parameters.
232
+ * @param {*} [options] Override http request option.
233
+ * @throws {RequiredError}
234
+ * @memberof SignupVerificationsApi
235
+ */
236
+ apiV2SignupVerificationsConfirmidentityemailPost(requestParameters?: SignupVerificationsApiApiV2SignupVerificationsConfirmidentityemailPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
237
+ /**
238
+ *
239
+ * @summary Confirm sign-up phone number verification via IdentityAdmin.
240
+ * @param {SignupVerificationsApiApiV2SignupVerificationsConfirmphonenumberPostRequest} requestParameters Request parameters.
241
+ * @param {*} [options] Override http request option.
242
+ * @throws {RequiredError}
243
+ * @memberof SignupVerificationsApi
244
+ */
245
+ apiV2SignupVerificationsConfirmphonenumberPost(requestParameters?: SignupVerificationsApiApiV2SignupVerificationsConfirmphonenumberPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
246
+ /**
247
+ *
248
+ * @summary Send a sign-up verification email via IdentityAdmin.
249
+ * @param {SignupVerificationsApiApiV2SignupVerificationsSendverificationemailPostRequest} requestParameters Request parameters.
250
+ * @param {*} [options] Override http request option.
251
+ * @throws {RequiredError}
252
+ * @memberof SignupVerificationsApi
253
+ */
254
+ apiV2SignupVerificationsSendverificationemailPost(requestParameters?: SignupVerificationsApiApiV2SignupVerificationsSendverificationemailPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
255
+ /**
256
+ *
257
+ * @summary Send a sign-up verification SMS via IdentityAdmin.
258
+ * @param {SignupVerificationsApiApiV2SignupVerificationsSendverificationsmsPostRequest} requestParameters Request parameters.
259
+ * @param {*} [options] Override http request option.
260
+ * @throws {RequiredError}
261
+ * @memberof SignupVerificationsApi
262
+ */
263
+ apiV2SignupVerificationsSendverificationsmsPost(requestParameters?: SignupVerificationsApiApiV2SignupVerificationsSendverificationsmsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
264
+ }
265
+ //# sourceMappingURL=signup-verifications-api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"signup-verifications-api.d.ts","sourceRoot":"","sources":["../../src/api/signup-verifications-api.ts"],"names":[],"mappings":"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"}