ch-admin-api-client-typescript 5.5.6 → 5.5.8
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/web-apps-api.d.ts +394 -0
- package/lib/api/web-apps-api.d.ts.map +1 -0
- package/lib/api/web-apps-api.js +636 -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/create-web-app-command.d.ts +104 -0
- package/lib/models/create-web-app-command.d.ts.map +1 -0
- package/lib/models/create-web-app-command.js +15 -0
- package/lib/models/deploy-status.d.ts +28 -0
- package/lib/models/deploy-status.d.ts.map +1 -0
- package/lib/models/deploy-status.js +31 -0
- package/lib/models/domain-type.d.ts +22 -0
- package/lib/models/domain-type.d.ts.map +1 -0
- package/lib/models/domain-type.js +25 -0
- package/lib/models/hospital-model.d.ts +19 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +8 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +8 -0
- package/lib/models/survey-form-duration-statistics-model.d.ts +7 -0
- package/lib/models/survey-form-duration-statistics-model.d.ts.map +1 -1
- package/lib/models/survey-form-language-statistics-model.d.ts +31 -0
- package/lib/models/survey-form-language-statistics-model.d.ts.map +1 -0
- package/lib/models/survey-form-language-statistics-model.js +15 -0
- package/lib/models/survey-result-item-model.d.ts +6 -0
- package/lib/models/survey-result-item-model.d.ts.map +1 -1
- package/lib/models/survey-result-model.d.ts +6 -0
- package/lib/models/survey-result-model.d.ts.map +1 -1
- package/lib/models/update-web-app-command.d.ts +105 -0
- package/lib/models/update-web-app-command.d.ts.map +1 -0
- package/lib/models/update-web-app-command.js +15 -0
- package/lib/models/web-app-item-model.d.ts +148 -0
- package/lib/models/web-app-item-model.d.ts.map +1 -0
- package/lib/models/web-app-item-model.js +15 -0
- package/lib/models/web-app-model.d.ts +148 -0
- package/lib/models/web-app-model.d.ts.map +1 -0
- package/lib/models/web-app-model.js +15 -0
- package/lib/models/web-apps-model.d.ts +33 -0
- package/lib/models/web-apps-model.d.ts.map +1 -0
- package/lib/models/web-apps-model.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +9 -0
- package/src/api/web-apps-api.ts +681 -0
- package/src/api.ts +1 -0
- package/src/models/create-web-app-command.ts +111 -0
- package/src/models/deploy-status.ts +37 -0
- package/src/models/domain-type.ts +31 -0
- package/src/models/hospital-model.ts +21 -0
- package/src/models/index.ts +8 -0
- package/src/models/survey-form-duration-statistics-model.ts +9 -0
- package/src/models/survey-form-language-statistics-model.ts +36 -0
- package/src/models/survey-result-item-model.ts +6 -0
- package/src/models/survey-result-model.ts +6 -0
- package/src/models/update-web-app-command.ts +114 -0
- package/src/models/web-app-item-model.ts +159 -0
- package/src/models/web-app-model.ts +159 -0
- package/src/models/web-apps-model.ts +42 -0
|
@@ -0,0 +1,394 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
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 { CreateWebAppCommand } from '../models';
|
|
16
|
+
import { DeployStatus } from '../models';
|
|
17
|
+
import { DomainType } from '../models';
|
|
18
|
+
import { UpdateWebAppCommand } from '../models';
|
|
19
|
+
import { WebAppModel } from '../models';
|
|
20
|
+
import { WebAppsModel } from '../models';
|
|
21
|
+
/**
|
|
22
|
+
* WebAppsApi - axios parameter creator
|
|
23
|
+
* @export
|
|
24
|
+
*/
|
|
25
|
+
export declare const WebAppsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @summary Retrive all WebApp configuration
|
|
29
|
+
* @param {string} [id]
|
|
30
|
+
* @param {string} [stsClientId]
|
|
31
|
+
* @param {string} [hospitalId]
|
|
32
|
+
* @param {string} [hospitalName]
|
|
33
|
+
* @param {string} [template]
|
|
34
|
+
* @param {DomainType} [domainType]
|
|
35
|
+
* @param {DeployStatus} [deployStatus]
|
|
36
|
+
* @param {string} [languageCode]
|
|
37
|
+
* @param {number} [page]
|
|
38
|
+
* @param {number} [limit]
|
|
39
|
+
* @param {Date} [lastRetrieved]
|
|
40
|
+
* @param {*} [options] Override http request option.
|
|
41
|
+
* @throws {RequiredError}
|
|
42
|
+
*/
|
|
43
|
+
apiV1WebappsGet: (id?: string, stsClientId?: string, hospitalId?: string, hospitalName?: string, template?: string, domainType?: DomainType, deployStatus?: DeployStatus, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @summary Delete WebApp configuration soft or permanent
|
|
47
|
+
* @param {string} id
|
|
48
|
+
* @param {boolean} [isPermanent]
|
|
49
|
+
* @param {*} [options] Override http request option.
|
|
50
|
+
* @throws {RequiredError}
|
|
51
|
+
*/
|
|
52
|
+
apiV1WebappsIdDelete: (id: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @summary Retrive WebApp configuration
|
|
56
|
+
* @param {string} id
|
|
57
|
+
* @param {string} [languageCode]
|
|
58
|
+
* @param {*} [options] Override http request option.
|
|
59
|
+
* @throws {RequiredError}
|
|
60
|
+
*/
|
|
61
|
+
apiV1WebappsIdGet: (id: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @summary Update WebApp configuration
|
|
65
|
+
* @param {string} id
|
|
66
|
+
* @param {UpdateWebAppCommand} [updateWebAppCommand]
|
|
67
|
+
* @param {*} [options] Override http request option.
|
|
68
|
+
* @throws {RequiredError}
|
|
69
|
+
*/
|
|
70
|
+
apiV1WebappsIdPut: (id: string, updateWebAppCommand?: UpdateWebAppCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @summary Create WebApp configuration
|
|
74
|
+
* @param {CreateWebAppCommand} [createWebAppCommand]
|
|
75
|
+
* @param {*} [options] Override http request option.
|
|
76
|
+
* @throws {RequiredError}
|
|
77
|
+
*/
|
|
78
|
+
apiV1WebappsPost: (createWebAppCommand?: CreateWebAppCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* WebAppsApi - functional programming interface
|
|
82
|
+
* @export
|
|
83
|
+
*/
|
|
84
|
+
export declare const WebAppsApiFp: (configuration?: Configuration) => {
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @summary Retrive all WebApp configuration
|
|
88
|
+
* @param {string} [id]
|
|
89
|
+
* @param {string} [stsClientId]
|
|
90
|
+
* @param {string} [hospitalId]
|
|
91
|
+
* @param {string} [hospitalName]
|
|
92
|
+
* @param {string} [template]
|
|
93
|
+
* @param {DomainType} [domainType]
|
|
94
|
+
* @param {DeployStatus} [deployStatus]
|
|
95
|
+
* @param {string} [languageCode]
|
|
96
|
+
* @param {number} [page]
|
|
97
|
+
* @param {number} [limit]
|
|
98
|
+
* @param {Date} [lastRetrieved]
|
|
99
|
+
* @param {*} [options] Override http request option.
|
|
100
|
+
* @throws {RequiredError}
|
|
101
|
+
*/
|
|
102
|
+
apiV1WebappsGet(id?: string, stsClientId?: string, hospitalId?: string, hospitalName?: string, template?: string, domainType?: DomainType, deployStatus?: DeployStatus, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppsModel>>;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @summary Delete WebApp configuration soft or permanent
|
|
106
|
+
* @param {string} id
|
|
107
|
+
* @param {boolean} [isPermanent]
|
|
108
|
+
* @param {*} [options] Override http request option.
|
|
109
|
+
* @throws {RequiredError}
|
|
110
|
+
*/
|
|
111
|
+
apiV1WebappsIdDelete(id: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
112
|
+
/**
|
|
113
|
+
*
|
|
114
|
+
* @summary Retrive WebApp configuration
|
|
115
|
+
* @param {string} id
|
|
116
|
+
* @param {string} [languageCode]
|
|
117
|
+
* @param {*} [options] Override http request option.
|
|
118
|
+
* @throws {RequiredError}
|
|
119
|
+
*/
|
|
120
|
+
apiV1WebappsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppModel>>;
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @summary Update WebApp configuration
|
|
124
|
+
* @param {string} id
|
|
125
|
+
* @param {UpdateWebAppCommand} [updateWebAppCommand]
|
|
126
|
+
* @param {*} [options] Override http request option.
|
|
127
|
+
* @throws {RequiredError}
|
|
128
|
+
*/
|
|
129
|
+
apiV1WebappsIdPut(id: string, updateWebAppCommand?: UpdateWebAppCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppModel>>;
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
* @summary Create WebApp configuration
|
|
133
|
+
* @param {CreateWebAppCommand} [createWebAppCommand]
|
|
134
|
+
* @param {*} [options] Override http request option.
|
|
135
|
+
* @throws {RequiredError}
|
|
136
|
+
*/
|
|
137
|
+
apiV1WebappsPost(createWebAppCommand?: CreateWebAppCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppModel>>;
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* WebAppsApi - factory interface
|
|
141
|
+
* @export
|
|
142
|
+
*/
|
|
143
|
+
export declare const WebAppsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
144
|
+
/**
|
|
145
|
+
*
|
|
146
|
+
* @summary Retrive all WebApp configuration
|
|
147
|
+
* @param {string} [id]
|
|
148
|
+
* @param {string} [stsClientId]
|
|
149
|
+
* @param {string} [hospitalId]
|
|
150
|
+
* @param {string} [hospitalName]
|
|
151
|
+
* @param {string} [template]
|
|
152
|
+
* @param {DomainType} [domainType]
|
|
153
|
+
* @param {DeployStatus} [deployStatus]
|
|
154
|
+
* @param {string} [languageCode]
|
|
155
|
+
* @param {number} [page]
|
|
156
|
+
* @param {number} [limit]
|
|
157
|
+
* @param {Date} [lastRetrieved]
|
|
158
|
+
* @param {*} [options] Override http request option.
|
|
159
|
+
* @throws {RequiredError}
|
|
160
|
+
*/
|
|
161
|
+
apiV1WebappsGet(id?: string, stsClientId?: string, hospitalId?: string, hospitalName?: string, template?: string, domainType?: DomainType, deployStatus?: DeployStatus, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<WebAppsModel>;
|
|
162
|
+
/**
|
|
163
|
+
*
|
|
164
|
+
* @summary Delete WebApp configuration soft or permanent
|
|
165
|
+
* @param {string} id
|
|
166
|
+
* @param {boolean} [isPermanent]
|
|
167
|
+
* @param {*} [options] Override http request option.
|
|
168
|
+
* @throws {RequiredError}
|
|
169
|
+
*/
|
|
170
|
+
apiV1WebappsIdDelete(id: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
171
|
+
/**
|
|
172
|
+
*
|
|
173
|
+
* @summary Retrive WebApp configuration
|
|
174
|
+
* @param {string} id
|
|
175
|
+
* @param {string} [languageCode]
|
|
176
|
+
* @param {*} [options] Override http request option.
|
|
177
|
+
* @throws {RequiredError}
|
|
178
|
+
*/
|
|
179
|
+
apiV1WebappsIdGet(id: string, languageCode?: string, options?: any): AxiosPromise<WebAppModel>;
|
|
180
|
+
/**
|
|
181
|
+
*
|
|
182
|
+
* @summary Update WebApp configuration
|
|
183
|
+
* @param {string} id
|
|
184
|
+
* @param {UpdateWebAppCommand} [updateWebAppCommand]
|
|
185
|
+
* @param {*} [options] Override http request option.
|
|
186
|
+
* @throws {RequiredError}
|
|
187
|
+
*/
|
|
188
|
+
apiV1WebappsIdPut(id: string, updateWebAppCommand?: UpdateWebAppCommand, options?: any): AxiosPromise<WebAppModel>;
|
|
189
|
+
/**
|
|
190
|
+
*
|
|
191
|
+
* @summary Create WebApp configuration
|
|
192
|
+
* @param {CreateWebAppCommand} [createWebAppCommand]
|
|
193
|
+
* @param {*} [options] Override http request option.
|
|
194
|
+
* @throws {RequiredError}
|
|
195
|
+
*/
|
|
196
|
+
apiV1WebappsPost(createWebAppCommand?: CreateWebAppCommand, options?: any): AxiosPromise<WebAppModel>;
|
|
197
|
+
};
|
|
198
|
+
/**
|
|
199
|
+
* Request parameters for apiV1WebappsGet operation in WebAppsApi.
|
|
200
|
+
* @export
|
|
201
|
+
* @interface WebAppsApiApiV1WebappsGetRequest
|
|
202
|
+
*/
|
|
203
|
+
export interface WebAppsApiApiV1WebappsGetRequest {
|
|
204
|
+
/**
|
|
205
|
+
*
|
|
206
|
+
* @type {string}
|
|
207
|
+
* @memberof WebAppsApiApiV1WebappsGet
|
|
208
|
+
*/
|
|
209
|
+
readonly id?: string;
|
|
210
|
+
/**
|
|
211
|
+
*
|
|
212
|
+
* @type {string}
|
|
213
|
+
* @memberof WebAppsApiApiV1WebappsGet
|
|
214
|
+
*/
|
|
215
|
+
readonly stsClientId?: string;
|
|
216
|
+
/**
|
|
217
|
+
*
|
|
218
|
+
* @type {string}
|
|
219
|
+
* @memberof WebAppsApiApiV1WebappsGet
|
|
220
|
+
*/
|
|
221
|
+
readonly hospitalId?: string;
|
|
222
|
+
/**
|
|
223
|
+
*
|
|
224
|
+
* @type {string}
|
|
225
|
+
* @memberof WebAppsApiApiV1WebappsGet
|
|
226
|
+
*/
|
|
227
|
+
readonly hospitalName?: string;
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
* @type {string}
|
|
231
|
+
* @memberof WebAppsApiApiV1WebappsGet
|
|
232
|
+
*/
|
|
233
|
+
readonly template?: string;
|
|
234
|
+
/**
|
|
235
|
+
*
|
|
236
|
+
* @type {DomainType}
|
|
237
|
+
* @memberof WebAppsApiApiV1WebappsGet
|
|
238
|
+
*/
|
|
239
|
+
readonly domainType?: DomainType;
|
|
240
|
+
/**
|
|
241
|
+
*
|
|
242
|
+
* @type {DeployStatus}
|
|
243
|
+
* @memberof WebAppsApiApiV1WebappsGet
|
|
244
|
+
*/
|
|
245
|
+
readonly deployStatus?: DeployStatus;
|
|
246
|
+
/**
|
|
247
|
+
*
|
|
248
|
+
* @type {string}
|
|
249
|
+
* @memberof WebAppsApiApiV1WebappsGet
|
|
250
|
+
*/
|
|
251
|
+
readonly languageCode?: string;
|
|
252
|
+
/**
|
|
253
|
+
*
|
|
254
|
+
* @type {number}
|
|
255
|
+
* @memberof WebAppsApiApiV1WebappsGet
|
|
256
|
+
*/
|
|
257
|
+
readonly page?: number;
|
|
258
|
+
/**
|
|
259
|
+
*
|
|
260
|
+
* @type {number}
|
|
261
|
+
* @memberof WebAppsApiApiV1WebappsGet
|
|
262
|
+
*/
|
|
263
|
+
readonly limit?: number;
|
|
264
|
+
/**
|
|
265
|
+
*
|
|
266
|
+
* @type {Date}
|
|
267
|
+
* @memberof WebAppsApiApiV1WebappsGet
|
|
268
|
+
*/
|
|
269
|
+
readonly lastRetrieved?: Date;
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* Request parameters for apiV1WebappsIdDelete operation in WebAppsApi.
|
|
273
|
+
* @export
|
|
274
|
+
* @interface WebAppsApiApiV1WebappsIdDeleteRequest
|
|
275
|
+
*/
|
|
276
|
+
export interface WebAppsApiApiV1WebappsIdDeleteRequest {
|
|
277
|
+
/**
|
|
278
|
+
*
|
|
279
|
+
* @type {string}
|
|
280
|
+
* @memberof WebAppsApiApiV1WebappsIdDelete
|
|
281
|
+
*/
|
|
282
|
+
readonly id: string;
|
|
283
|
+
/**
|
|
284
|
+
*
|
|
285
|
+
* @type {boolean}
|
|
286
|
+
* @memberof WebAppsApiApiV1WebappsIdDelete
|
|
287
|
+
*/
|
|
288
|
+
readonly isPermanent?: boolean;
|
|
289
|
+
}
|
|
290
|
+
/**
|
|
291
|
+
* Request parameters for apiV1WebappsIdGet operation in WebAppsApi.
|
|
292
|
+
* @export
|
|
293
|
+
* @interface WebAppsApiApiV1WebappsIdGetRequest
|
|
294
|
+
*/
|
|
295
|
+
export interface WebAppsApiApiV1WebappsIdGetRequest {
|
|
296
|
+
/**
|
|
297
|
+
*
|
|
298
|
+
* @type {string}
|
|
299
|
+
* @memberof WebAppsApiApiV1WebappsIdGet
|
|
300
|
+
*/
|
|
301
|
+
readonly id: string;
|
|
302
|
+
/**
|
|
303
|
+
*
|
|
304
|
+
* @type {string}
|
|
305
|
+
* @memberof WebAppsApiApiV1WebappsIdGet
|
|
306
|
+
*/
|
|
307
|
+
readonly languageCode?: string;
|
|
308
|
+
}
|
|
309
|
+
/**
|
|
310
|
+
* Request parameters for apiV1WebappsIdPut operation in WebAppsApi.
|
|
311
|
+
* @export
|
|
312
|
+
* @interface WebAppsApiApiV1WebappsIdPutRequest
|
|
313
|
+
*/
|
|
314
|
+
export interface WebAppsApiApiV1WebappsIdPutRequest {
|
|
315
|
+
/**
|
|
316
|
+
*
|
|
317
|
+
* @type {string}
|
|
318
|
+
* @memberof WebAppsApiApiV1WebappsIdPut
|
|
319
|
+
*/
|
|
320
|
+
readonly id: string;
|
|
321
|
+
/**
|
|
322
|
+
*
|
|
323
|
+
* @type {UpdateWebAppCommand}
|
|
324
|
+
* @memberof WebAppsApiApiV1WebappsIdPut
|
|
325
|
+
*/
|
|
326
|
+
readonly updateWebAppCommand?: UpdateWebAppCommand;
|
|
327
|
+
}
|
|
328
|
+
/**
|
|
329
|
+
* Request parameters for apiV1WebappsPost operation in WebAppsApi.
|
|
330
|
+
* @export
|
|
331
|
+
* @interface WebAppsApiApiV1WebappsPostRequest
|
|
332
|
+
*/
|
|
333
|
+
export interface WebAppsApiApiV1WebappsPostRequest {
|
|
334
|
+
/**
|
|
335
|
+
*
|
|
336
|
+
* @type {CreateWebAppCommand}
|
|
337
|
+
* @memberof WebAppsApiApiV1WebappsPost
|
|
338
|
+
*/
|
|
339
|
+
readonly createWebAppCommand?: CreateWebAppCommand;
|
|
340
|
+
}
|
|
341
|
+
/**
|
|
342
|
+
* WebAppsApi - object-oriented interface
|
|
343
|
+
* @export
|
|
344
|
+
* @class WebAppsApi
|
|
345
|
+
* @extends {BaseAPI}
|
|
346
|
+
*/
|
|
347
|
+
export declare class WebAppsApi extends BaseAPI {
|
|
348
|
+
/**
|
|
349
|
+
*
|
|
350
|
+
* @summary Retrive all WebApp configuration
|
|
351
|
+
* @param {WebAppsApiApiV1WebappsGetRequest} requestParameters Request parameters.
|
|
352
|
+
* @param {*} [options] Override http request option.
|
|
353
|
+
* @throws {RequiredError}
|
|
354
|
+
* @memberof WebAppsApi
|
|
355
|
+
*/
|
|
356
|
+
apiV1WebappsGet(requestParameters?: WebAppsApiApiV1WebappsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebAppsModel, any>>;
|
|
357
|
+
/**
|
|
358
|
+
*
|
|
359
|
+
* @summary Delete WebApp configuration soft or permanent
|
|
360
|
+
* @param {WebAppsApiApiV1WebappsIdDeleteRequest} requestParameters Request parameters.
|
|
361
|
+
* @param {*} [options] Override http request option.
|
|
362
|
+
* @throws {RequiredError}
|
|
363
|
+
* @memberof WebAppsApi
|
|
364
|
+
*/
|
|
365
|
+
apiV1WebappsIdDelete(requestParameters: WebAppsApiApiV1WebappsIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
366
|
+
/**
|
|
367
|
+
*
|
|
368
|
+
* @summary Retrive WebApp configuration
|
|
369
|
+
* @param {WebAppsApiApiV1WebappsIdGetRequest} requestParameters Request parameters.
|
|
370
|
+
* @param {*} [options] Override http request option.
|
|
371
|
+
* @throws {RequiredError}
|
|
372
|
+
* @memberof WebAppsApi
|
|
373
|
+
*/
|
|
374
|
+
apiV1WebappsIdGet(requestParameters: WebAppsApiApiV1WebappsIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebAppModel, any>>;
|
|
375
|
+
/**
|
|
376
|
+
*
|
|
377
|
+
* @summary Update WebApp configuration
|
|
378
|
+
* @param {WebAppsApiApiV1WebappsIdPutRequest} requestParameters Request parameters.
|
|
379
|
+
* @param {*} [options] Override http request option.
|
|
380
|
+
* @throws {RequiredError}
|
|
381
|
+
* @memberof WebAppsApi
|
|
382
|
+
*/
|
|
383
|
+
apiV1WebappsIdPut(requestParameters: WebAppsApiApiV1WebappsIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebAppModel, any>>;
|
|
384
|
+
/**
|
|
385
|
+
*
|
|
386
|
+
* @summary Create WebApp configuration
|
|
387
|
+
* @param {WebAppsApiApiV1WebappsPostRequest} requestParameters Request parameters.
|
|
388
|
+
* @param {*} [options] Override http request option.
|
|
389
|
+
* @throws {RequiredError}
|
|
390
|
+
* @memberof WebAppsApi
|
|
391
|
+
*/
|
|
392
|
+
apiV1WebappsPost(requestParameters?: WebAppsApiApiV1WebappsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebAppModel, any>>;
|
|
393
|
+
}
|
|
394
|
+
//# sourceMappingURL=web-apps-api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"web-apps-api.d.ts","sourceRoot":"","sources":["../../src/api/web-apps-api.ts"],"names":[],"mappings":"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"}
|