ch-admin-api-client-typescript 5.9.15 → 5.10.0

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.
Files changed (34) hide show
  1. package/lib/api/hospitals-api.d.ts +30 -30
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +26 -26
  4. package/lib/api/web-apps-api.d.ts +277 -18
  5. package/lib/api/web-apps-api.d.ts.map +1 -1
  6. package/lib/api/web-apps-api.js +206 -24
  7. package/lib/models/create-hospital-command.d.ts +12 -0
  8. package/lib/models/create-hospital-command.d.ts.map +1 -1
  9. package/lib/models/hospital-item-model.d.ts +12 -0
  10. package/lib/models/hospital-item-model.d.ts.map +1 -1
  11. package/lib/models/hospital-model.d.ts +12 -0
  12. package/lib/models/hospital-model.d.ts.map +1 -1
  13. package/lib/models/index.d.ts +0 -2
  14. package/lib/models/index.d.ts.map +1 -1
  15. package/lib/models/index.js +0 -2
  16. package/lib/models/update-hospital-command.d.ts +12 -0
  17. package/lib/models/update-hospital-command.d.ts.map +1 -1
  18. package/package.json +1 -1
  19. package/src/.openapi-generator/FILES +0 -2
  20. package/src/api/hospitals-api.ts +49 -49
  21. package/src/api/web-apps-api.ts +444 -32
  22. package/src/models/create-hospital-command.ts +12 -0
  23. package/src/models/hospital-item-model.ts +12 -0
  24. package/src/models/hospital-model.ts +12 -0
  25. package/src/models/index.ts +0 -2
  26. package/src/models/update-hospital-command.ts +12 -0
  27. package/lib/models/create-web-app-command.d.ts +0 -104
  28. package/lib/models/create-web-app-command.d.ts.map +0 -1
  29. package/lib/models/create-web-app-command.js +0 -15
  30. package/lib/models/update-web-app-command.d.ts +0 -105
  31. package/lib/models/update-web-app-command.d.ts.map +0 -1
  32. package/lib/models/update-web-app-command.js +0 -15
  33. package/src/models/create-web-app-command.ts +0 -111
  34. package/src/models/update-web-app-command.ts +0 -114
@@ -3194,6 +3194,9 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
3194
3194
  *
3195
3195
  * @summary Get managers
3196
3196
  * @param {string} hospitalId
3197
+ * @param {number} [page]
3198
+ * @param {number} [limit]
3199
+ * @param {Date} [lastRetrieved]
3197
3200
  * @param {string} [id]
3198
3201
  * @param {string} [fullname]
3199
3202
  * @param {string} [email]
@@ -3201,13 +3204,10 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
3201
3204
  * @param {Date} [dateOfBirth]
3202
3205
  * @param {Date} [created]
3203
3206
  * @param {boolean} [showHidden]
3204
- * @param {number} [page]
3205
- * @param {number} [limit]
3206
- * @param {Date} [lastRetrieved]
3207
3207
  * @param {*} [options] Override http request option.
3208
3208
  * @throws {RequiredError}
3209
3209
  */
3210
- apiV1HospitalsHospitalIdManagersGet: function (hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
3210
+ apiV1HospitalsHospitalIdManagersGet: function (hospitalId, page, limit, lastRetrieved, id, fullname, email, gender, dateOfBirth, created, showHidden, options) {
3211
3211
  if (options === void 0) { options = {}; }
3212
3212
  return __awaiter(_this, void 0, void 0, function () {
3213
3213
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -3232,6 +3232,17 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
3232
3232
  // authentication oauth2 required
3233
3233
  // oauth required
3234
3234
  _a.sent();
3235
+ if (page !== undefined) {
3236
+ localVarQueryParameter['page'] = page;
3237
+ }
3238
+ if (limit !== undefined) {
3239
+ localVarQueryParameter['limit'] = limit;
3240
+ }
3241
+ if (lastRetrieved !== undefined) {
3242
+ localVarQueryParameter['lastRetrieved'] = (lastRetrieved instanceof Date) ?
3243
+ lastRetrieved.toISOString() :
3244
+ lastRetrieved;
3245
+ }
3235
3246
  if (id !== undefined) {
3236
3247
  localVarQueryParameter['Id'] = id;
3237
3248
  }
@@ -3257,17 +3268,6 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
3257
3268
  if (showHidden !== undefined) {
3258
3269
  localVarQueryParameter['ShowHidden'] = showHidden;
3259
3270
  }
3260
- if (page !== undefined) {
3261
- localVarQueryParameter['page'] = page;
3262
- }
3263
- if (limit !== undefined) {
3264
- localVarQueryParameter['limit'] = limit;
3265
- }
3266
- if (lastRetrieved !== undefined) {
3267
- localVarQueryParameter['lastRetrieved'] = (lastRetrieved instanceof Date) ?
3268
- lastRetrieved.toISOString() :
3269
- lastRetrieved;
3270
- }
3271
3271
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
3272
3272
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3273
3273
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -8996,6 +8996,9 @@ var HospitalsApiFp = function (configuration) {
8996
8996
  *
8997
8997
  * @summary Get managers
8998
8998
  * @param {string} hospitalId
8999
+ * @param {number} [page]
9000
+ * @param {number} [limit]
9001
+ * @param {Date} [lastRetrieved]
8999
9002
  * @param {string} [id]
9000
9003
  * @param {string} [fullname]
9001
9004
  * @param {string} [email]
@@ -9003,18 +9006,15 @@ var HospitalsApiFp = function (configuration) {
9003
9006
  * @param {Date} [dateOfBirth]
9004
9007
  * @param {Date} [created]
9005
9008
  * @param {boolean} [showHidden]
9006
- * @param {number} [page]
9007
- * @param {number} [limit]
9008
- * @param {Date} [lastRetrieved]
9009
9009
  * @param {*} [options] Override http request option.
9010
9010
  * @throws {RequiredError}
9011
9011
  */
9012
- apiV1HospitalsHospitalIdManagersGet: function (hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
9012
+ apiV1HospitalsHospitalIdManagersGet: function (hospitalId, page, limit, lastRetrieved, id, fullname, email, gender, dateOfBirth, created, showHidden, options) {
9013
9013
  return __awaiter(this, void 0, void 0, function () {
9014
9014
  var localVarAxiosArgs;
9015
9015
  return __generator(this, function (_a) {
9016
9016
  switch (_a.label) {
9017
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdManagersGet(hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options)];
9017
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdManagersGet(hospitalId, page, limit, lastRetrieved, id, fullname, email, gender, dateOfBirth, created, showHidden, options)];
9018
9018
  case 1:
9019
9019
  localVarAxiosArgs = _a.sent();
9020
9020
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -11589,6 +11589,9 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
11589
11589
  *
11590
11590
  * @summary Get managers
11591
11591
  * @param {string} hospitalId
11592
+ * @param {number} [page]
11593
+ * @param {number} [limit]
11594
+ * @param {Date} [lastRetrieved]
11592
11595
  * @param {string} [id]
11593
11596
  * @param {string} [fullname]
11594
11597
  * @param {string} [email]
@@ -11596,14 +11599,11 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
11596
11599
  * @param {Date} [dateOfBirth]
11597
11600
  * @param {Date} [created]
11598
11601
  * @param {boolean} [showHidden]
11599
- * @param {number} [page]
11600
- * @param {number} [limit]
11601
- * @param {Date} [lastRetrieved]
11602
11602
  * @param {*} [options] Override http request option.
11603
11603
  * @throws {RequiredError}
11604
11604
  */
11605
- apiV1HospitalsHospitalIdManagersGet: function (hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
11606
- return localVarFp.apiV1HospitalsHospitalIdManagersGet(hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
11605
+ apiV1HospitalsHospitalIdManagersGet: function (hospitalId, page, limit, lastRetrieved, id, fullname, email, gender, dateOfBirth, created, showHidden, options) {
11606
+ return localVarFp.apiV1HospitalsHospitalIdManagersGet(hospitalId, page, limit, lastRetrieved, id, fullname, email, gender, dateOfBirth, created, showHidden, options).then(function (request) { return request(axios, basePath); });
11607
11607
  },
11608
11608
  /**
11609
11609
  *
@@ -13361,7 +13361,7 @@ var HospitalsApi = /** @class */ (function (_super) {
13361
13361
  */
13362
13362
  HospitalsApi.prototype.apiV1HospitalsHospitalIdManagersGet = function (requestParameters, options) {
13363
13363
  var _this = this;
13364
- return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdManagersGet(requestParameters.hospitalId, requestParameters.id, requestParameters.fullname, requestParameters.email, requestParameters.gender, requestParameters.dateOfBirth, requestParameters.created, requestParameters.showHidden, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
13364
+ return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdManagersGet(requestParameters.hospitalId, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, requestParameters.id, requestParameters.fullname, requestParameters.email, requestParameters.gender, requestParameters.dateOfBirth, requestParameters.created, requestParameters.showHidden, options).then(function (request) { return request(_this.axios, _this.basePath); });
13365
13365
  };
13366
13366
  /**
13367
13367
  *
@@ -12,10 +12,8 @@
12
12
  import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
13
  import { Configuration } from '../configuration';
14
14
  import { RequestArgs, BaseAPI } from '../base';
15
- import { CreateWebAppCommand } from '../models';
16
15
  import { DeployStatus } from '../models';
17
16
  import { DomainType } from '../models';
18
- import { UpdateWebAppCommand } from '../models';
19
17
  import { WebAppModel } from '../models';
20
18
  import { WebAppsModel } from '../models';
21
19
  /**
@@ -63,19 +61,48 @@ export declare const WebAppsApiAxiosParamCreator: (configuration?: Configuration
63
61
  *
64
62
  * @summary Update WebApp configuration
65
63
  * @param {string} id
66
- * @param {UpdateWebAppCommand} [updateWebAppCommand]
64
+ * @param {string} [id2]
65
+ * @param {string} [stsClientId]
66
+ * @param {string} [stsClientSecret]
67
+ * @param {string} [colorPrimary]
68
+ * @param {string} [colorSecondary]
69
+ * @param {string} [colorNeutral]
70
+ * @param {string} [colorDark]
71
+ * @param {string} [colorLight]
72
+ * @param {string} [template]
73
+ * @param {string} [googleClientId]
74
+ * @param {DomainType} [domainType]
75
+ * @param {string} [iPAddress]
76
+ * @param {string} [domainVerificationId]
77
+ * @param {string} [domain]
78
+ * @param {DeployStatus} [deployStatus]
79
+ * @param {File} [formFile]
67
80
  * @param {*} [options] Override http request option.
68
81
  * @throws {RequiredError}
69
82
  */
70
- apiV1WebappsIdPut: (id: string, updateWebAppCommand?: UpdateWebAppCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
83
+ apiV1WebappsIdPut: (id: string, id2?: string, stsClientId?: string, stsClientSecret?: string, colorPrimary?: string, colorSecondary?: string, colorNeutral?: string, colorDark?: string, colorLight?: string, template?: string, googleClientId?: string, domainType?: DomainType, iPAddress?: string, domainVerificationId?: string, domain?: string, deployStatus?: DeployStatus, formFile?: File, options?: AxiosRequestConfig) => Promise<RequestArgs>;
71
84
  /**
72
85
  *
73
86
  * @summary Create WebApp configuration
74
- * @param {CreateWebAppCommand} [createWebAppCommand]
87
+ * @param {string} [hospitalId]
88
+ * @param {string} [stsClientId]
89
+ * @param {string} [stsClientSecret]
90
+ * @param {string} [colorPrimary]
91
+ * @param {string} [colorSecondary]
92
+ * @param {string} [colorNeutral]
93
+ * @param {string} [colorDark]
94
+ * @param {string} [colorLight]
95
+ * @param {string} [template]
96
+ * @param {string} [googleClientId]
97
+ * @param {DomainType} [domainType]
98
+ * @param {string} [iPAddress]
99
+ * @param {string} [domainVerificationId]
100
+ * @param {string} [domain]
101
+ * @param {File} [favicon]
75
102
  * @param {*} [options] Override http request option.
76
103
  * @throws {RequiredError}
77
104
  */
78
- apiV1WebappsPost: (createWebAppCommand?: CreateWebAppCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
105
+ apiV1WebappsPost: (hospitalId?: string, stsClientId?: string, stsClientSecret?: string, colorPrimary?: string, colorSecondary?: string, colorNeutral?: string, colorDark?: string, colorLight?: string, template?: string, googleClientId?: string, domainType?: DomainType, iPAddress?: string, domainVerificationId?: string, domain?: string, favicon?: File, options?: AxiosRequestConfig) => Promise<RequestArgs>;
79
106
  };
80
107
  /**
81
108
  * WebAppsApi - functional programming interface
@@ -122,19 +149,48 @@ export declare const WebAppsApiFp: (configuration?: Configuration) => {
122
149
  *
123
150
  * @summary Update WebApp configuration
124
151
  * @param {string} id
125
- * @param {UpdateWebAppCommand} [updateWebAppCommand]
152
+ * @param {string} [id2]
153
+ * @param {string} [stsClientId]
154
+ * @param {string} [stsClientSecret]
155
+ * @param {string} [colorPrimary]
156
+ * @param {string} [colorSecondary]
157
+ * @param {string} [colorNeutral]
158
+ * @param {string} [colorDark]
159
+ * @param {string} [colorLight]
160
+ * @param {string} [template]
161
+ * @param {string} [googleClientId]
162
+ * @param {DomainType} [domainType]
163
+ * @param {string} [iPAddress]
164
+ * @param {string} [domainVerificationId]
165
+ * @param {string} [domain]
166
+ * @param {DeployStatus} [deployStatus]
167
+ * @param {File} [formFile]
126
168
  * @param {*} [options] Override http request option.
127
169
  * @throws {RequiredError}
128
170
  */
129
- apiV1WebappsIdPut(id: string, updateWebAppCommand?: UpdateWebAppCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppModel>>;
171
+ apiV1WebappsIdPut(id: string, id2?: string, stsClientId?: string, stsClientSecret?: string, colorPrimary?: string, colorSecondary?: string, colorNeutral?: string, colorDark?: string, colorLight?: string, template?: string, googleClientId?: string, domainType?: DomainType, iPAddress?: string, domainVerificationId?: string, domain?: string, deployStatus?: DeployStatus, formFile?: File, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppModel>>;
130
172
  /**
131
173
  *
132
174
  * @summary Create WebApp configuration
133
- * @param {CreateWebAppCommand} [createWebAppCommand]
175
+ * @param {string} [hospitalId]
176
+ * @param {string} [stsClientId]
177
+ * @param {string} [stsClientSecret]
178
+ * @param {string} [colorPrimary]
179
+ * @param {string} [colorSecondary]
180
+ * @param {string} [colorNeutral]
181
+ * @param {string} [colorDark]
182
+ * @param {string} [colorLight]
183
+ * @param {string} [template]
184
+ * @param {string} [googleClientId]
185
+ * @param {DomainType} [domainType]
186
+ * @param {string} [iPAddress]
187
+ * @param {string} [domainVerificationId]
188
+ * @param {string} [domain]
189
+ * @param {File} [favicon]
134
190
  * @param {*} [options] Override http request option.
135
191
  * @throws {RequiredError}
136
192
  */
137
- apiV1WebappsPost(createWebAppCommand?: CreateWebAppCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppModel>>;
193
+ apiV1WebappsPost(hospitalId?: string, stsClientId?: string, stsClientSecret?: string, colorPrimary?: string, colorSecondary?: string, colorNeutral?: string, colorDark?: string, colorLight?: string, template?: string, googleClientId?: string, domainType?: DomainType, iPAddress?: string, domainVerificationId?: string, domain?: string, favicon?: File, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppModel>>;
138
194
  };
139
195
  /**
140
196
  * WebAppsApi - factory interface
@@ -181,19 +237,48 @@ export declare const WebAppsApiFactory: (configuration?: Configuration, basePath
181
237
  *
182
238
  * @summary Update WebApp configuration
183
239
  * @param {string} id
184
- * @param {UpdateWebAppCommand} [updateWebAppCommand]
240
+ * @param {string} [id2]
241
+ * @param {string} [stsClientId]
242
+ * @param {string} [stsClientSecret]
243
+ * @param {string} [colorPrimary]
244
+ * @param {string} [colorSecondary]
245
+ * @param {string} [colorNeutral]
246
+ * @param {string} [colorDark]
247
+ * @param {string} [colorLight]
248
+ * @param {string} [template]
249
+ * @param {string} [googleClientId]
250
+ * @param {DomainType} [domainType]
251
+ * @param {string} [iPAddress]
252
+ * @param {string} [domainVerificationId]
253
+ * @param {string} [domain]
254
+ * @param {DeployStatus} [deployStatus]
255
+ * @param {File} [formFile]
185
256
  * @param {*} [options] Override http request option.
186
257
  * @throws {RequiredError}
187
258
  */
188
- apiV1WebappsIdPut(id: string, updateWebAppCommand?: UpdateWebAppCommand, options?: any): AxiosPromise<WebAppModel>;
259
+ apiV1WebappsIdPut(id: string, id2?: string, stsClientId?: string, stsClientSecret?: string, colorPrimary?: string, colorSecondary?: string, colorNeutral?: string, colorDark?: string, colorLight?: string, template?: string, googleClientId?: string, domainType?: DomainType, iPAddress?: string, domainVerificationId?: string, domain?: string, deployStatus?: DeployStatus, formFile?: File, options?: any): AxiosPromise<WebAppModel>;
189
260
  /**
190
261
  *
191
262
  * @summary Create WebApp configuration
192
- * @param {CreateWebAppCommand} [createWebAppCommand]
263
+ * @param {string} [hospitalId]
264
+ * @param {string} [stsClientId]
265
+ * @param {string} [stsClientSecret]
266
+ * @param {string} [colorPrimary]
267
+ * @param {string} [colorSecondary]
268
+ * @param {string} [colorNeutral]
269
+ * @param {string} [colorDark]
270
+ * @param {string} [colorLight]
271
+ * @param {string} [template]
272
+ * @param {string} [googleClientId]
273
+ * @param {DomainType} [domainType]
274
+ * @param {string} [iPAddress]
275
+ * @param {string} [domainVerificationId]
276
+ * @param {string} [domain]
277
+ * @param {File} [favicon]
193
278
  * @param {*} [options] Override http request option.
194
279
  * @throws {RequiredError}
195
280
  */
196
- apiV1WebappsPost(createWebAppCommand?: CreateWebAppCommand, options?: any): AxiosPromise<WebAppModel>;
281
+ apiV1WebappsPost(hospitalId?: string, stsClientId?: string, stsClientSecret?: string, colorPrimary?: string, colorSecondary?: string, colorNeutral?: string, colorDark?: string, colorLight?: string, template?: string, googleClientId?: string, domainType?: DomainType, iPAddress?: string, domainVerificationId?: string, domain?: string, favicon?: File, options?: any): AxiosPromise<WebAppModel>;
197
282
  };
198
283
  /**
199
284
  * Request parameters for apiV1WebappsGet operation in WebAppsApi.
@@ -320,10 +405,100 @@ export interface WebAppsApiApiV1WebappsIdPutRequest {
320
405
  readonly id: string;
321
406
  /**
322
407
  *
323
- * @type {UpdateWebAppCommand}
408
+ * @type {string}
409
+ * @memberof WebAppsApiApiV1WebappsIdPut
410
+ */
411
+ readonly id2?: string;
412
+ /**
413
+ *
414
+ * @type {string}
415
+ * @memberof WebAppsApiApiV1WebappsIdPut
416
+ */
417
+ readonly stsClientId?: string;
418
+ /**
419
+ *
420
+ * @type {string}
324
421
  * @memberof WebAppsApiApiV1WebappsIdPut
325
422
  */
326
- readonly updateWebAppCommand?: UpdateWebAppCommand;
423
+ readonly stsClientSecret?: string;
424
+ /**
425
+ *
426
+ * @type {string}
427
+ * @memberof WebAppsApiApiV1WebappsIdPut
428
+ */
429
+ readonly colorPrimary?: string;
430
+ /**
431
+ *
432
+ * @type {string}
433
+ * @memberof WebAppsApiApiV1WebappsIdPut
434
+ */
435
+ readonly colorSecondary?: string;
436
+ /**
437
+ *
438
+ * @type {string}
439
+ * @memberof WebAppsApiApiV1WebappsIdPut
440
+ */
441
+ readonly colorNeutral?: string;
442
+ /**
443
+ *
444
+ * @type {string}
445
+ * @memberof WebAppsApiApiV1WebappsIdPut
446
+ */
447
+ readonly colorDark?: string;
448
+ /**
449
+ *
450
+ * @type {string}
451
+ * @memberof WebAppsApiApiV1WebappsIdPut
452
+ */
453
+ readonly colorLight?: string;
454
+ /**
455
+ *
456
+ * @type {string}
457
+ * @memberof WebAppsApiApiV1WebappsIdPut
458
+ */
459
+ readonly template?: string;
460
+ /**
461
+ *
462
+ * @type {string}
463
+ * @memberof WebAppsApiApiV1WebappsIdPut
464
+ */
465
+ readonly googleClientId?: string;
466
+ /**
467
+ *
468
+ * @type {DomainType}
469
+ * @memberof WebAppsApiApiV1WebappsIdPut
470
+ */
471
+ readonly domainType?: DomainType;
472
+ /**
473
+ *
474
+ * @type {string}
475
+ * @memberof WebAppsApiApiV1WebappsIdPut
476
+ */
477
+ readonly iPAddress?: string;
478
+ /**
479
+ *
480
+ * @type {string}
481
+ * @memberof WebAppsApiApiV1WebappsIdPut
482
+ */
483
+ readonly domainVerificationId?: string;
484
+ /**
485
+ *
486
+ * @type {string}
487
+ * @memberof WebAppsApiApiV1WebappsIdPut
488
+ */
489
+ readonly domain?: string;
490
+ /**
491
+ *
492
+ * @type {DeployStatus}
493
+ * @memberof WebAppsApiApiV1WebappsIdPut
494
+ */
495
+ readonly deployStatus?: DeployStatus;
496
+ /**
497
+ *
498
+ * @type {File}
499
+ * @memberof WebAppsApiApiV1WebappsIdPut
500
+ */
501
+ readonly formFile?: File;
327
502
  }
328
503
  /**
329
504
  * Request parameters for apiV1WebappsPost operation in WebAppsApi.
@@ -333,10 +508,94 @@ export interface WebAppsApiApiV1WebappsIdPutRequest {
333
508
  export interface WebAppsApiApiV1WebappsPostRequest {
334
509
  /**
335
510
  *
336
- * @type {CreateWebAppCommand}
511
+ * @type {string}
512
+ * @memberof WebAppsApiApiV1WebappsPost
513
+ */
514
+ readonly hospitalId?: string;
515
+ /**
516
+ *
517
+ * @type {string}
518
+ * @memberof WebAppsApiApiV1WebappsPost
519
+ */
520
+ readonly stsClientId?: string;
521
+ /**
522
+ *
523
+ * @type {string}
524
+ * @memberof WebAppsApiApiV1WebappsPost
525
+ */
526
+ readonly stsClientSecret?: string;
527
+ /**
528
+ *
529
+ * @type {string}
530
+ * @memberof WebAppsApiApiV1WebappsPost
531
+ */
532
+ readonly colorPrimary?: string;
533
+ /**
534
+ *
535
+ * @type {string}
536
+ * @memberof WebAppsApiApiV1WebappsPost
537
+ */
538
+ readonly colorSecondary?: string;
539
+ /**
540
+ *
541
+ * @type {string}
542
+ * @memberof WebAppsApiApiV1WebappsPost
543
+ */
544
+ readonly colorNeutral?: string;
545
+ /**
546
+ *
547
+ * @type {string}
548
+ * @memberof WebAppsApiApiV1WebappsPost
549
+ */
550
+ readonly colorDark?: string;
551
+ /**
552
+ *
553
+ * @type {string}
554
+ * @memberof WebAppsApiApiV1WebappsPost
555
+ */
556
+ readonly colorLight?: string;
557
+ /**
558
+ *
559
+ * @type {string}
560
+ * @memberof WebAppsApiApiV1WebappsPost
561
+ */
562
+ readonly template?: string;
563
+ /**
564
+ *
565
+ * @type {string}
566
+ * @memberof WebAppsApiApiV1WebappsPost
567
+ */
568
+ readonly googleClientId?: string;
569
+ /**
570
+ *
571
+ * @type {DomainType}
572
+ * @memberof WebAppsApiApiV1WebappsPost
573
+ */
574
+ readonly domainType?: DomainType;
575
+ /**
576
+ *
577
+ * @type {string}
578
+ * @memberof WebAppsApiApiV1WebappsPost
579
+ */
580
+ readonly iPAddress?: string;
581
+ /**
582
+ *
583
+ * @type {string}
584
+ * @memberof WebAppsApiApiV1WebappsPost
585
+ */
586
+ readonly domainVerificationId?: string;
587
+ /**
588
+ *
589
+ * @type {string}
590
+ * @memberof WebAppsApiApiV1WebappsPost
591
+ */
592
+ readonly domain?: string;
593
+ /**
594
+ *
595
+ * @type {File}
337
596
  * @memberof WebAppsApiApiV1WebappsPost
338
597
  */
339
- readonly createWebAppCommand?: CreateWebAppCommand;
598
+ readonly favicon?: File;
340
599
  }
341
600
  /**
342
601
  * WebAppsApi - object-oriented interface
@@ -1 +1 @@
1
- {"version":3,"file":"web-apps-api.d.ts","sourceRoot":"","sources":["../../src/api/web-apps-api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"web-apps-api.d.ts","sourceRoot":"","sources":["../../src/api/web-apps-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,YAAY,EAAE,MAAM,WAAW,CAAC;AAEzC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAIvC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAExC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC;;;GAGG;AACH,eAAO,MAAM,2BAA2B,mBAA6B,aAAa;IAE1E;;;;;;;;;;;;;;;;OAgBG;2BAC0B,MAAM,gBAAgB,MAAM,eAAe,MAAM,iBAAiB,MAAM,aAAa,MAAM,eAAe,UAAU,iBAAiB,YAAY,iBAAiB,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA0EnT;;;;;;;OAOG;+BAC8B,MAAM,gBAAgB,OAAO,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAmCvH;;;;;;;OAOG;4BAC2B,MAAM,iBAAiB,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAmCpH;;;;;;;;;;;;;;;;;;;;;;OAsBG;4BAC2B,MAAM,QAAQ,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,iBAAiB,MAAM,mBAAmB,MAAM,iBAAiB,MAAM,cAAc,MAAM,eAAe,MAAM,aAAa,MAAM,mBAAmB,MAAM,eAAe,UAAU,cAAc,MAAM,yBAAyB,MAAM,WAAW,MAAM,iBAAiB,YAAY,aAAa,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAmGlc;;;;;;;;;;;;;;;;;;;;OAoBG;oCACmC,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,iBAAiB,MAAM,mBAAmB,MAAM,iBAAiB,MAAM,cAAc,MAAM,eAAe,MAAM,aAAa,MAAM,mBAAmB,MAAM,eAAe,UAAU,cAAc,MAAM,yBAAyB,MAAM,WAAW,MAAM,YAAY,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;CA6Fra,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,YAAY,mBAA4B,aAAa;IAG1D;;;;;;;;;;;;;;;;OAgBG;yBACwB,MAAM,gBAAgB,MAAM,eAAe,MAAM,iBAAiB,MAAM,aAAa,MAAM,eAAe,UAAU,iBAAiB,YAAY,iBAAiB,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,YAAY,CAAC;IAIzW;;;;;;;OAOG;6BAC4B,MAAM,gBAAgB,OAAO,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,OAAO,CAAC;IAIxK;;;;;;;OAOG;0BACyB,MAAM,iBAAiB,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,WAAW,CAAC;IAIzK;;;;;;;;;;;;;;;;;;;;;;OAsBG;0BACyB,MAAM,QAAQ,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,iBAAiB,MAAM,mBAAmB,MAAM,iBAAiB,MAAM,cAAc,MAAM,eAAe,MAAM,aAAa,MAAM,mBAAmB,MAAM,eAAe,UAAU,cAAc,MAAM,yBAAyB,MAAM,WAAW,MAAM,iBAAiB,YAAY,aAAa,IAAI,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,WAAW,CAAC;IAIvf;;;;;;;;;;;;;;;;;;;;OAoBG;kCACiC,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,iBAAiB,MAAM,mBAAmB,MAAM,iBAAiB,MAAM,cAAc,MAAM,eAAe,MAAM,aAAa,MAAM,mBAAmB,MAAM,eAAe,UAAU,cAAc,MAAM,yBAAyB,MAAM,WAAW,MAAM,YAAY,IAAI,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,WAAW,CAAC;CAK1d,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,iBAAiB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAG1G;;;;;;;;;;;;;;;;OAgBG;yBACkB,MAAM,gBAAgB,MAAM,eAAe,MAAM,iBAAiB,MAAM,aAAa,MAAM,eAAe,UAAU,iBAAiB,YAAY,iBAAiB,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,aAAa,YAAY,CAAC;IAG9R;;;;;;;OAOG;6BACsB,MAAM,gBAAgB,OAAO,YAAY,GAAG,GAAG,aAAa,OAAO,CAAC;IAG7F;;;;;;;OAOG;0BACmB,MAAM,iBAAiB,MAAM,YAAY,GAAG,GAAG,aAAa,WAAW,CAAC;IAG9F;;;;;;;;;;;;;;;;;;;;;;OAsBG;0BACmB,MAAM,QAAQ,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,iBAAiB,MAAM,mBAAmB,MAAM,iBAAiB,MAAM,cAAc,MAAM,eAAe,MAAM,aAAa,MAAM,mBAAmB,MAAM,eAAe,UAAU,cAAc,MAAM,yBAAyB,MAAM,WAAW,MAAM,iBAAiB,YAAY,aAAa,IAAI,YAAY,GAAG,GAAG,aAAa,WAAW,CAAC;IAG5a;;;;;;;;;;;;;;;;;;;;OAoBG;kCAC2B,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,iBAAiB,MAAM,mBAAmB,MAAM,iBAAiB,MAAM,cAAc,MAAM,eAAe,MAAM,aAAa,MAAM,mBAAmB,MAAM,eAAe,UAAU,cAAc,MAAM,yBAAyB,MAAM,WAAW,MAAM,YAAY,IAAI,YAAY,GAAG,GAAG,aAAa,WAAW,CAAC;CAI/Y,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,gCAAgC;IAC7C;;;;OAIG;IACH,QAAQ,CAAC,EAAE,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;OAIG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAA;IAE7B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;IAE1B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,UAAU,CAAA;IAEhC;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,YAAY,CAAA;IAEpC;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,IAAI,CAAA;CAChC;AAED;;;;GAIG;AACH,MAAM,WAAW,qCAAqC;IAClD;;;;OAIG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAA;IAEnB;;;;OAIG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,OAAO,CAAA;CACjC;AAED;;;;GAIG;AACH,MAAM,WAAW,kCAAkC;IAC/C;;;;OAIG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAA;IAEnB;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;CACjC;AAED;;;;GAIG;AACH,MAAM,WAAW,kCAAkC;IAC/C;;;;OAIG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAA;IAEnB;;;;OAIG;IACH,QAAQ,CAAC,GAAG,CAAC,EAAE,MAAM,CAAA;IAErB;;;;OAIG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAA;IAE7B;;;;OAIG;IACH,QAAQ,CAAC,eAAe,CAAC,EAAE,MAAM,CAAA;IAEjC;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,CAAA;IAEhC;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAA;IAE3B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;IAE1B;;;;OAIG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,CAAA;IAEhC;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,UAAU,CAAA;IAEhC;;;;OAIG;IACH,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAA;IAE3B;;;;OAIG;IACH,QAAQ,CAAC,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAEtC;;;;OAIG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAA;IAExB;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,YAAY,CAAA;IAEpC;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAA;CAC3B;AAED;;;;GAIG;AACH,MAAM,WAAW,iCAAiC;IAC9C;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAA;IAE7B;;;;OAIG;IACH,QAAQ,CAAC,eAAe,CAAC,EAAE,MAAM,CAAA;IAEjC;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,CAAA;IAEhC;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAA;IAE3B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;IAE1B;;;;OAIG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,CAAA;IAEhC;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,UAAU,CAAA;IAEhC;;;;OAIG;IACH,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAA;IAE3B;;;;OAIG;IACH,QAAQ,CAAC,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAEtC;;;;OAIG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAA;IAExB;;;;OAIG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,IAAI,CAAA;CAC1B;AAED;;;;;GAKG;AACH,qBAAa,UAAW,SAAQ,OAAO;IACnC;;;;;;;OAOG;IACI,eAAe,CAAC,iBAAiB,GAAE,gCAAqC,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI7G;;;;;;;OAOG;IACI,oBAAoB,CAAC,iBAAiB,EAAE,qCAAqC,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIlH;;;;;;;OAOG;IACI,iBAAiB,CAAC,iBAAiB,EAAE,kCAAkC,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI5G;;;;;;;OAOG;IACI,iBAAiB,CAAC,iBAAiB,EAAE,kCAAkC,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI5G;;;;;;;OAOG;IACI,gBAAgB,CAAC,iBAAiB,GAAE,iCAAsC,EAAE,OAAO,CAAC,EAAE,kBAAkB;CAGlH"}