ch-admin-api-client-typescript 5.14.9 → 5.14.11
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 +30 -299
- package/lib/api/web-apps-api.d.ts.map +1 -1
- package/lib/api/web-apps-api.js +40 -228
- package/lib/models/create-web-app-command.d.ts +44 -0
- package/lib/models/create-web-app-command.d.ts.map +1 -0
- package/lib/models/{domain-type.js → create-web-app-command.js} +0 -10
- package/lib/models/hospital-model.d.ts +7 -1
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +3 -1
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +3 -1
- package/lib/models/update-web-app-command.d.ts +45 -0
- package/lib/models/update-web-app-command.d.ts.map +1 -0
- package/{src/models/domain-type.ts → lib/models/update-web-app-command.js} +2 -18
- package/lib/models/web-app-environment-model.d.ts +31 -0
- package/lib/models/web-app-environment-model.d.ts.map +1 -0
- package/lib/models/{domain-type.d.ts → web-app-environment-model.js} +4 -11
- package/lib/models/web-app-item-model.d.ts +7 -68
- package/lib/models/web-app-item-model.d.ts.map +1 -1
- package/lib/models/web-app-model.d.ts +14 -68
- package/lib/models/web-app-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +3 -1
- package/src/api/web-apps-api.ts +51 -479
- package/src/models/create-web-app-command.ts +51 -0
- package/src/models/hospital-model.ts +7 -1
- package/src/models/index.ts +3 -1
- package/src/models/update-web-app-command.ts +54 -0
- package/src/models/web-app-environment-model.ts +36 -0
- package/src/models/web-app-item-model.ts +7 -70
- package/src/models/web-app-model.ts +14 -68
- package/lib/models/domain-type.d.ts.map +0 -1
|
@@ -12,8 +12,9 @@
|
|
|
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';
|
|
15
16
|
import { DeployStatus } from '../models';
|
|
16
|
-
import {
|
|
17
|
+
import { UpdateWebAppCommand } from '../models';
|
|
17
18
|
import { WebAppModel } from '../models';
|
|
18
19
|
import { WebAppsModel } from '../models';
|
|
19
20
|
/**
|
|
@@ -25,11 +26,10 @@ export declare const WebAppsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
25
26
|
*
|
|
26
27
|
* @summary Retrive all WebApp configuration
|
|
27
28
|
* @param {string} [id]
|
|
28
|
-
* @param {string} [stsClientId]
|
|
29
29
|
* @param {string} [hospitalId]
|
|
30
30
|
* @param {string} [hospitalName]
|
|
31
|
-
* @param {string} [
|
|
32
|
-
* @param {
|
|
31
|
+
* @param {string} [appName]
|
|
32
|
+
* @param {string} [hostName]
|
|
33
33
|
* @param {DeployStatus} [deployStatus]
|
|
34
34
|
* @param {string} [languageCode]
|
|
35
35
|
* @param {number} [page]
|
|
@@ -38,7 +38,7 @@ export declare const WebAppsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
38
38
|
* @param {*} [options] Override http request option.
|
|
39
39
|
* @throws {RequiredError}
|
|
40
40
|
*/
|
|
41
|
-
apiV1WebappsGet: (id?: string,
|
|
41
|
+
apiV1WebappsGet: (id?: string, hospitalId?: string, hospitalName?: string, appName?: string, hostName?: string, deployStatus?: DeployStatus, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
42
42
|
/**
|
|
43
43
|
*
|
|
44
44
|
* @summary Delete WebApp configuration soft or permanent
|
|
@@ -61,48 +61,19 @@ export declare const WebAppsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
61
61
|
*
|
|
62
62
|
* @summary Update WebApp configuration
|
|
63
63
|
* @param {string} id
|
|
64
|
-
* @param {
|
|
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]
|
|
64
|
+
* @param {UpdateWebAppCommand} [updateWebAppCommand]
|
|
80
65
|
* @param {*} [options] Override http request option.
|
|
81
66
|
* @throws {RequiredError}
|
|
82
67
|
*/
|
|
83
|
-
apiV1WebappsIdPut: (id: string,
|
|
68
|
+
apiV1WebappsIdPut: (id: string, updateWebAppCommand?: UpdateWebAppCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
84
69
|
/**
|
|
85
70
|
*
|
|
86
71
|
* @summary Create WebApp configuration
|
|
87
|
-
* @param {
|
|
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]
|
|
72
|
+
* @param {CreateWebAppCommand} [createWebAppCommand]
|
|
102
73
|
* @param {*} [options] Override http request option.
|
|
103
74
|
* @throws {RequiredError}
|
|
104
75
|
*/
|
|
105
|
-
apiV1WebappsPost: (
|
|
76
|
+
apiV1WebappsPost: (createWebAppCommand?: CreateWebAppCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
106
77
|
};
|
|
107
78
|
/**
|
|
108
79
|
* WebAppsApi - functional programming interface
|
|
@@ -113,11 +84,10 @@ export declare const WebAppsApiFp: (configuration?: Configuration) => {
|
|
|
113
84
|
*
|
|
114
85
|
* @summary Retrive all WebApp configuration
|
|
115
86
|
* @param {string} [id]
|
|
116
|
-
* @param {string} [stsClientId]
|
|
117
87
|
* @param {string} [hospitalId]
|
|
118
88
|
* @param {string} [hospitalName]
|
|
119
|
-
* @param {string} [
|
|
120
|
-
* @param {
|
|
89
|
+
* @param {string} [appName]
|
|
90
|
+
* @param {string} [hostName]
|
|
121
91
|
* @param {DeployStatus} [deployStatus]
|
|
122
92
|
* @param {string} [languageCode]
|
|
123
93
|
* @param {number} [page]
|
|
@@ -126,7 +96,7 @@ export declare const WebAppsApiFp: (configuration?: Configuration) => {
|
|
|
126
96
|
* @param {*} [options] Override http request option.
|
|
127
97
|
* @throws {RequiredError}
|
|
128
98
|
*/
|
|
129
|
-
apiV1WebappsGet(id?: string,
|
|
99
|
+
apiV1WebappsGet(id?: string, hospitalId?: string, hospitalName?: string, appName?: string, hostName?: string, deployStatus?: DeployStatus, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppsModel>>;
|
|
130
100
|
/**
|
|
131
101
|
*
|
|
132
102
|
* @summary Delete WebApp configuration soft or permanent
|
|
@@ -149,48 +119,19 @@ export declare const WebAppsApiFp: (configuration?: Configuration) => {
|
|
|
149
119
|
*
|
|
150
120
|
* @summary Update WebApp configuration
|
|
151
121
|
* @param {string} id
|
|
152
|
-
* @param {
|
|
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]
|
|
122
|
+
* @param {UpdateWebAppCommand} [updateWebAppCommand]
|
|
168
123
|
* @param {*} [options] Override http request option.
|
|
169
124
|
* @throws {RequiredError}
|
|
170
125
|
*/
|
|
171
|
-
apiV1WebappsIdPut(id: string,
|
|
126
|
+
apiV1WebappsIdPut(id: string, updateWebAppCommand?: UpdateWebAppCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppModel>>;
|
|
172
127
|
/**
|
|
173
128
|
*
|
|
174
129
|
* @summary Create WebApp configuration
|
|
175
|
-
* @param {
|
|
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]
|
|
130
|
+
* @param {CreateWebAppCommand} [createWebAppCommand]
|
|
190
131
|
* @param {*} [options] Override http request option.
|
|
191
132
|
* @throws {RequiredError}
|
|
192
133
|
*/
|
|
193
|
-
apiV1WebappsPost(
|
|
134
|
+
apiV1WebappsPost(createWebAppCommand?: CreateWebAppCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppModel>>;
|
|
194
135
|
};
|
|
195
136
|
/**
|
|
196
137
|
* WebAppsApi - factory interface
|
|
@@ -201,11 +142,10 @@ export declare const WebAppsApiFactory: (configuration?: Configuration, basePath
|
|
|
201
142
|
*
|
|
202
143
|
* @summary Retrive all WebApp configuration
|
|
203
144
|
* @param {string} [id]
|
|
204
|
-
* @param {string} [stsClientId]
|
|
205
145
|
* @param {string} [hospitalId]
|
|
206
146
|
* @param {string} [hospitalName]
|
|
207
|
-
* @param {string} [
|
|
208
|
-
* @param {
|
|
147
|
+
* @param {string} [appName]
|
|
148
|
+
* @param {string} [hostName]
|
|
209
149
|
* @param {DeployStatus} [deployStatus]
|
|
210
150
|
* @param {string} [languageCode]
|
|
211
151
|
* @param {number} [page]
|
|
@@ -214,7 +154,7 @@ export declare const WebAppsApiFactory: (configuration?: Configuration, basePath
|
|
|
214
154
|
* @param {*} [options] Override http request option.
|
|
215
155
|
* @throws {RequiredError}
|
|
216
156
|
*/
|
|
217
|
-
apiV1WebappsGet(id?: string,
|
|
157
|
+
apiV1WebappsGet(id?: string, hospitalId?: string, hospitalName?: string, appName?: string, hostName?: string, deployStatus?: DeployStatus, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<WebAppsModel>;
|
|
218
158
|
/**
|
|
219
159
|
*
|
|
220
160
|
* @summary Delete WebApp configuration soft or permanent
|
|
@@ -237,48 +177,19 @@ export declare const WebAppsApiFactory: (configuration?: Configuration, basePath
|
|
|
237
177
|
*
|
|
238
178
|
* @summary Update WebApp configuration
|
|
239
179
|
* @param {string} id
|
|
240
|
-
* @param {
|
|
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]
|
|
180
|
+
* @param {UpdateWebAppCommand} [updateWebAppCommand]
|
|
256
181
|
* @param {*} [options] Override http request option.
|
|
257
182
|
* @throws {RequiredError}
|
|
258
183
|
*/
|
|
259
|
-
apiV1WebappsIdPut(id: string,
|
|
184
|
+
apiV1WebappsIdPut(id: string, updateWebAppCommand?: UpdateWebAppCommand, options?: any): AxiosPromise<WebAppModel>;
|
|
260
185
|
/**
|
|
261
186
|
*
|
|
262
187
|
* @summary Create WebApp configuration
|
|
263
|
-
* @param {
|
|
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]
|
|
188
|
+
* @param {CreateWebAppCommand} [createWebAppCommand]
|
|
278
189
|
* @param {*} [options] Override http request option.
|
|
279
190
|
* @throws {RequiredError}
|
|
280
191
|
*/
|
|
281
|
-
apiV1WebappsPost(
|
|
192
|
+
apiV1WebappsPost(createWebAppCommand?: CreateWebAppCommand, options?: any): AxiosPromise<WebAppModel>;
|
|
282
193
|
};
|
|
283
194
|
/**
|
|
284
195
|
* Request parameters for apiV1WebappsGet operation in WebAppsApi.
|
|
@@ -292,12 +203,6 @@ export interface WebAppsApiApiV1WebappsGetRequest {
|
|
|
292
203
|
* @memberof WebAppsApiApiV1WebappsGet
|
|
293
204
|
*/
|
|
294
205
|
readonly id?: string;
|
|
295
|
-
/**
|
|
296
|
-
*
|
|
297
|
-
* @type {string}
|
|
298
|
-
* @memberof WebAppsApiApiV1WebappsGet
|
|
299
|
-
*/
|
|
300
|
-
readonly stsClientId?: string;
|
|
301
206
|
/**
|
|
302
207
|
*
|
|
303
208
|
* @type {string}
|
|
@@ -315,13 +220,13 @@ export interface WebAppsApiApiV1WebappsGetRequest {
|
|
|
315
220
|
* @type {string}
|
|
316
221
|
* @memberof WebAppsApiApiV1WebappsGet
|
|
317
222
|
*/
|
|
318
|
-
readonly
|
|
223
|
+
readonly appName?: string;
|
|
319
224
|
/**
|
|
320
225
|
*
|
|
321
|
-
* @type {
|
|
226
|
+
* @type {string}
|
|
322
227
|
* @memberof WebAppsApiApiV1WebappsGet
|
|
323
228
|
*/
|
|
324
|
-
readonly
|
|
229
|
+
readonly hostName?: string;
|
|
325
230
|
/**
|
|
326
231
|
*
|
|
327
232
|
* @type {DeployStatus}
|
|
@@ -405,100 +310,10 @@ export interface WebAppsApiApiV1WebappsIdPutRequest {
|
|
|
405
310
|
readonly id: string;
|
|
406
311
|
/**
|
|
407
312
|
*
|
|
408
|
-
* @type {
|
|
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}
|
|
421
|
-
* @memberof WebAppsApiApiV1WebappsIdPut
|
|
422
|
-
*/
|
|
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}
|
|
313
|
+
* @type {UpdateWebAppCommand}
|
|
439
314
|
* @memberof WebAppsApiApiV1WebappsIdPut
|
|
440
315
|
*/
|
|
441
|
-
readonly
|
|
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;
|
|
316
|
+
readonly updateWebAppCommand?: UpdateWebAppCommand;
|
|
502
317
|
}
|
|
503
318
|
/**
|
|
504
319
|
* Request parameters for apiV1WebappsPost operation in WebAppsApi.
|
|
@@ -508,94 +323,10 @@ export interface WebAppsApiApiV1WebappsIdPutRequest {
|
|
|
508
323
|
export interface WebAppsApiApiV1WebappsPostRequest {
|
|
509
324
|
/**
|
|
510
325
|
*
|
|
511
|
-
* @type {
|
|
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}
|
|
326
|
+
* @type {CreateWebAppCommand}
|
|
596
327
|
* @memberof WebAppsApiApiV1WebappsPost
|
|
597
328
|
*/
|
|
598
|
-
readonly
|
|
329
|
+
readonly createWebAppCommand?: CreateWebAppCommand;
|
|
599
330
|
}
|
|
600
331
|
/**
|
|
601
332
|
* 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,YAAY,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"web-apps-api.d.ts","sourceRoot":"","sources":["../../src/api/web-apps-api.ts"],"names":[],"mappings":"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"}
|