ch-admin-api-client-typescript 5.9.12 → 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.
- package/lib/api/survey-results-api.d.ts +4 -0
- package/lib/api/survey-results-api.d.ts.map +1 -1
- package/lib/api/survey-results-api.js +4 -0
- package/lib/api/web-apps-api.d.ts +277 -18
- package/lib/api/web-apps-api.d.ts.map +1 -1
- package/lib/api/web-apps-api.js +206 -24
- package/lib/models/create-deal-command.d.ts +6 -0
- package/lib/models/create-deal-command.d.ts.map +1 -1
- package/lib/models/create-hospital-command.d.ts +12 -0
- package/lib/models/create-hospital-command.d.ts.map +1 -1
- package/lib/models/hospital-item-model.d.ts +12 -0
- package/lib/models/hospital-item-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +12 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +0 -2
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +0 -2
- package/lib/models/survey-result-element-model.d.ts +7 -0
- package/lib/models/survey-result-element-model.d.ts.map +1 -1
- package/lib/models/survey-result-item-model.d.ts +0 -7
- package/lib/models/survey-result-item-model.d.ts.map +1 -1
- package/lib/models/survey-result-model.d.ts +4 -4
- package/lib/models/survey-result-model.d.ts.map +1 -1
- package/lib/models/update-deal-command.d.ts +6 -0
- package/lib/models/update-deal-command.d.ts.map +1 -1
- package/lib/models/update-hospital-command.d.ts +12 -0
- package/lib/models/update-hospital-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +0 -2
- package/src/api/survey-results-api.ts +4 -0
- package/src/api/web-apps-api.ts +444 -32
- package/src/models/create-deal-command.ts +6 -0
- package/src/models/create-hospital-command.ts +12 -0
- package/src/models/hospital-item-model.ts +12 -0
- package/src/models/hospital-model.ts +12 -0
- package/src/models/index.ts +0 -2
- package/src/models/survey-result-element-model.ts +9 -0
- package/src/models/survey-result-item-model.ts +0 -9
- package/src/models/survey-result-model.ts +4 -4
- package/src/models/update-deal-command.ts +6 -0
- package/src/models/update-hospital-command.ts +12 -0
- package/lib/models/create-web-app-command.d.ts +0 -104
- package/lib/models/create-web-app-command.d.ts.map +0 -1
- package/lib/models/create-web-app-command.js +0 -15
- package/lib/models/update-web-app-command.d.ts +0 -105
- package/lib/models/update-web-app-command.d.ts.map +0 -1
- package/lib/models/update-web-app-command.js +0 -15
- package/src/models/create-web-app-command.ts +0 -111
- package/src/models/update-web-app-command.ts +0 -114
|
@@ -41,6 +41,7 @@ export declare const SurveyResultsApiAxiosParamCreator: (configuration?: Configu
|
|
|
41
41
|
apiV1SurveyresultsGet: (id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, periodUnit?: PeriodUnits, startDateTime?: Date, endDateTime?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
42
42
|
/**
|
|
43
43
|
*
|
|
44
|
+
* @summary Send manual notification of target SurveyResult
|
|
44
45
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
45
46
|
* @param {*} [options] Override http request option.
|
|
46
47
|
* @throws {RequiredError}
|
|
@@ -89,6 +90,7 @@ export declare const SurveyResultsApiFp: (configuration?: Configuration) => {
|
|
|
89
90
|
apiV1SurveyresultsGet(id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, periodUnit?: PeriodUnits, startDateTime?: Date, endDateTime?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultsModel>>;
|
|
90
91
|
/**
|
|
91
92
|
*
|
|
93
|
+
* @summary Send manual notification of target SurveyResult
|
|
92
94
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
93
95
|
* @param {*} [options] Override http request option.
|
|
94
96
|
* @throws {RequiredError}
|
|
@@ -137,6 +139,7 @@ export declare const SurveyResultsApiFactory: (configuration?: Configuration, ba
|
|
|
137
139
|
apiV1SurveyresultsGet(id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, periodUnit?: PeriodUnits, startDateTime?: Date, endDateTime?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SurveyResultsModel>;
|
|
138
140
|
/**
|
|
139
141
|
*
|
|
142
|
+
* @summary Send manual notification of target SurveyResult
|
|
140
143
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
141
144
|
* @param {*} [options] Override http request option.
|
|
142
145
|
* @throws {RequiredError}
|
|
@@ -296,6 +299,7 @@ export declare class SurveyResultsApi extends BaseAPI {
|
|
|
296
299
|
apiV1SurveyresultsGet(requestParameters?: SurveyResultsApiApiV1SurveyresultsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SurveyResultsModel, any>>;
|
|
297
300
|
/**
|
|
298
301
|
*
|
|
302
|
+
* @summary Send manual notification of target SurveyResult
|
|
299
303
|
* @param {SurveyResultsApiApiV1SurveyresultsSendemailPostRequest} requestParameters Request parameters.
|
|
300
304
|
* @param {*} [options] Override http request option.
|
|
301
305
|
* @throws {RequiredError}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"survey-results-api.d.ts","sourceRoot":"","sources":["../../src/api/survey-results-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,WAAW,EAAE,MAAM,WAAW,CAAC;AAIxC,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAE9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAC/C;;;GAGG;AACH,eAAO,MAAM,iCAAiC,mBAA6B,aAAa;IAEhF;;;;;;;;;;;;;;;;OAgBG;iCACgC,MAAM,eAAe,MAAM,iBAAiB,MAAM,SAAS,MAAM,iBAAiB,MAAM,eAAe,WAAW,kBAAkB,IAAI,gBAAgB,IAAI,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA8E7S
|
|
1
|
+
{"version":3,"file":"survey-results-api.d.ts","sourceRoot":"","sources":["../../src/api/survey-results-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -183,6 +183,7 @@ var SurveyResultsApiAxiosParamCreator = function (configuration) {
|
|
|
183
183
|
},
|
|
184
184
|
/**
|
|
185
185
|
*
|
|
186
|
+
* @summary Send manual notification of target SurveyResult
|
|
186
187
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
187
188
|
* @param {*} [options] Override http request option.
|
|
188
189
|
* @throws {RequiredError}
|
|
@@ -354,6 +355,7 @@ var SurveyResultsApiFp = function (configuration) {
|
|
|
354
355
|
},
|
|
355
356
|
/**
|
|
356
357
|
*
|
|
358
|
+
* @summary Send manual notification of target SurveyResult
|
|
357
359
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
358
360
|
* @param {*} [options] Override http request option.
|
|
359
361
|
* @throws {RequiredError}
|
|
@@ -444,6 +446,7 @@ var SurveyResultsApiFactory = function (configuration, basePath, axios) {
|
|
|
444
446
|
},
|
|
445
447
|
/**
|
|
446
448
|
*
|
|
449
|
+
* @summary Send manual notification of target SurveyResult
|
|
447
450
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
448
451
|
* @param {*} [options] Override http request option.
|
|
449
452
|
* @throws {RequiredError}
|
|
@@ -501,6 +504,7 @@ var SurveyResultsApi = /** @class */ (function (_super) {
|
|
|
501
504
|
};
|
|
502
505
|
/**
|
|
503
506
|
*
|
|
507
|
+
* @summary Send manual notification of target SurveyResult
|
|
504
508
|
* @param {SurveyResultsApiApiV1SurveyresultsSendemailPostRequest} requestParameters Request parameters.
|
|
505
509
|
* @param {*} [options] Override http request option.
|
|
506
510
|
* @throws {RequiredError}
|
|
@@ -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 {
|
|
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,
|
|
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 {
|
|
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: (
|
|
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 {
|
|
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,
|
|
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 {
|
|
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(
|
|
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 {
|
|
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,
|
|
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 {
|
|
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(
|
|
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 {
|
|
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
|
|
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 {
|
|
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
|
|
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":"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,
|
|
1
|
+
{"version":3,"file":"web-apps-api.d.ts","sourceRoot":"","sources":["../../src/api/web-apps-api.ts"],"names":[],"mappings":"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"}
|