ch-api-client-typescript2 5.79.21 → 5.79.34

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 (42) hide show
  1. package/lib/api/caches-api.d.ts +84 -0
  2. package/lib/api/caches-api.d.ts.map +1 -0
  3. package/lib/api/caches-api.js +225 -0
  4. package/lib/api/webhooks-api.d.ts +97 -0
  5. package/lib/api/webhooks-api.d.ts.map +1 -0
  6. package/lib/api/webhooks-api.js +225 -0
  7. package/lib/api.d.ts +2 -1
  8. package/lib/api.d.ts.map +1 -1
  9. package/lib/api.js +2 -1
  10. package/lib/models/email-recipient.d.ts +31 -0
  11. package/lib/models/email-recipient.d.ts.map +1 -0
  12. package/lib/models/evic-cache-command.d.ts +25 -0
  13. package/lib/models/evic-cache-command.d.ts.map +1 -0
  14. package/lib/models/index.d.ts +4 -5
  15. package/lib/models/index.d.ts.map +1 -1
  16. package/lib/models/index.js +4 -5
  17. package/lib/models/sitemap-domain-names.d.ts +1 -0
  18. package/lib/models/sitemap-domain-names.d.ts.map +1 -1
  19. package/lib/models/sitemap-domain-names.js +1 -0
  20. package/lib/models/zoho-deal-closed-won-webhook-command.d.ts +45 -0
  21. package/lib/models/zoho-deal-closed-won-webhook-command.d.ts.map +1 -0
  22. package/lib/models/zoho-deal-closed-won-webhook-pdf-data.d.ts +115 -0
  23. package/lib/models/zoho-deal-closed-won-webhook-pdf-data.d.ts.map +1 -0
  24. package/package.json +1 -1
  25. package/lib/api/devices-api.d.ts +0 -357
  26. package/lib/api/devices-api.d.ts.map +0 -1
  27. package/lib/api/devices-api.js +0 -641
  28. package/lib/models/create-device-command.d.ts +0 -62
  29. package/lib/models/create-device-command.d.ts.map +0 -1
  30. package/lib/models/device-item-model.d.ts +0 -56
  31. package/lib/models/device-item-model.d.ts.map +0 -1
  32. package/lib/models/device-model.d.ts +0 -62
  33. package/lib/models/device-model.d.ts.map +0 -1
  34. package/lib/models/devices-model.d.ts +0 -33
  35. package/lib/models/devices-model.d.ts.map +0 -1
  36. package/lib/models/update-device-command.d.ts +0 -49
  37. package/lib/models/update-device-command.d.ts.map +0 -1
  38. package/lib/models/update-device-command.js +0 -15
  39. /package/lib/models/{create-device-command.js → email-recipient.js} +0 -0
  40. /package/lib/models/{device-item-model.js → evic-cache-command.js} +0 -0
  41. /package/lib/models/{device-model.js → zoho-deal-closed-won-webhook-command.js} +0 -0
  42. /package/lib/models/{devices-model.js → zoho-deal-closed-won-webhook-pdf-data.js} +0 -0
@@ -1,357 +0,0 @@
1
- /**
2
- * CloudHospital Api
3
- * CloudHospital application with Swagger, Swashbuckle, and API versioning.
4
- *
5
- * The version of the OpenAPI document: 2
6
- * Contact: developer@icloudhospital.com
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
- import { Configuration } from '../configuration';
14
- import { RequestArgs, BaseAPI } from '../base';
15
- import { CreateDeviceCommand } from '../models';
16
- import { DeviceModel } from '../models';
17
- import { DevicesModel } from '../models';
18
- import { Platform } from '../models';
19
- import { UpdateDeviceCommand } from '../models';
20
- /**
21
- * DevicesApi - axios parameter creator
22
- * @export
23
- */
24
- export declare const DevicesApiAxiosParamCreator: (configuration?: Configuration) => {
25
- /**
26
- *
27
- * @summary Get all devices.
28
- * @param {string} [id]
29
- * @param {string} [token]
30
- * @param {Platform} [platform]
31
- * @param {boolean} [appAlert]
32
- * @param {boolean} [eventAlert]
33
- * @param {boolean} [noticeAlert]
34
- * @param {number} [page]
35
- * @param {number} [limit]
36
- * @param {Date} [lastRetrieved]
37
- * @param {*} [options] Override http request option.
38
- * @throws {RequiredError}
39
- */
40
- apiV2DevicesGet: (id?: string, token?: string, platform?: Platform, appAlert?: boolean, eventAlert?: boolean, noticeAlert?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
41
- /**
42
- *
43
- * @summary Delete device.
44
- * @param {string} id
45
- * @param {*} [options] Override http request option.
46
- * @throws {RequiredError}
47
- */
48
- apiV2DevicesIdDelete: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
49
- /**
50
- *
51
- * @summary Get device.
52
- * @param {string} id
53
- * @param {*} [options] Override http request option.
54
- * @throws {RequiredError}
55
- */
56
- apiV2DevicesIdGet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
57
- /**
58
- *
59
- * @summary Update device.
60
- * @param {string} id
61
- * @param {UpdateDeviceCommand} [updateDeviceCommand]
62
- * @param {*} [options] Override http request option.
63
- * @throws {RequiredError}
64
- */
65
- apiV2DevicesIdPut: (id: string, updateDeviceCommand?: UpdateDeviceCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
66
- /**
67
- *
68
- * @summary Create device.
69
- * @param {CreateDeviceCommand} [createDeviceCommand]
70
- * @param {*} [options] Override http request option.
71
- * @throws {RequiredError}
72
- */
73
- apiV2DevicesPost: (createDeviceCommand?: CreateDeviceCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
74
- };
75
- /**
76
- * DevicesApi - functional programming interface
77
- * @export
78
- */
79
- export declare const DevicesApiFp: (configuration?: Configuration) => {
80
- /**
81
- *
82
- * @summary Get all devices.
83
- * @param {string} [id]
84
- * @param {string} [token]
85
- * @param {Platform} [platform]
86
- * @param {boolean} [appAlert]
87
- * @param {boolean} [eventAlert]
88
- * @param {boolean} [noticeAlert]
89
- * @param {number} [page]
90
- * @param {number} [limit]
91
- * @param {Date} [lastRetrieved]
92
- * @param {*} [options] Override http request option.
93
- * @throws {RequiredError}
94
- */
95
- apiV2DevicesGet(id?: string, token?: string, platform?: Platform, appAlert?: boolean, eventAlert?: boolean, noticeAlert?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DevicesModel>>;
96
- /**
97
- *
98
- * @summary Delete device.
99
- * @param {string} id
100
- * @param {*} [options] Override http request option.
101
- * @throws {RequiredError}
102
- */
103
- apiV2DevicesIdDelete(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
104
- /**
105
- *
106
- * @summary Get device.
107
- * @param {string} id
108
- * @param {*} [options] Override http request option.
109
- * @throws {RequiredError}
110
- */
111
- apiV2DevicesIdGet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeviceModel>>;
112
- /**
113
- *
114
- * @summary Update device.
115
- * @param {string} id
116
- * @param {UpdateDeviceCommand} [updateDeviceCommand]
117
- * @param {*} [options] Override http request option.
118
- * @throws {RequiredError}
119
- */
120
- apiV2DevicesIdPut(id: string, updateDeviceCommand?: UpdateDeviceCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
121
- /**
122
- *
123
- * @summary Create device.
124
- * @param {CreateDeviceCommand} [createDeviceCommand]
125
- * @param {*} [options] Override http request option.
126
- * @throws {RequiredError}
127
- */
128
- apiV2DevicesPost(createDeviceCommand?: CreateDeviceCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeviceModel>>;
129
- };
130
- /**
131
- * DevicesApi - factory interface
132
- * @export
133
- */
134
- export declare const DevicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
135
- /**
136
- *
137
- * @summary Get all devices.
138
- * @param {string} [id]
139
- * @param {string} [token]
140
- * @param {Platform} [platform]
141
- * @param {boolean} [appAlert]
142
- * @param {boolean} [eventAlert]
143
- * @param {boolean} [noticeAlert]
144
- * @param {number} [page]
145
- * @param {number} [limit]
146
- * @param {Date} [lastRetrieved]
147
- * @param {*} [options] Override http request option.
148
- * @throws {RequiredError}
149
- */
150
- apiV2DevicesGet(id?: string, token?: string, platform?: Platform, appAlert?: boolean, eventAlert?: boolean, noticeAlert?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DevicesModel>;
151
- /**
152
- *
153
- * @summary Delete device.
154
- * @param {string} id
155
- * @param {*} [options] Override http request option.
156
- * @throws {RequiredError}
157
- */
158
- apiV2DevicesIdDelete(id: string, options?: any): AxiosPromise<boolean>;
159
- /**
160
- *
161
- * @summary Get device.
162
- * @param {string} id
163
- * @param {*} [options] Override http request option.
164
- * @throws {RequiredError}
165
- */
166
- apiV2DevicesIdGet(id: string, options?: any): AxiosPromise<DeviceModel>;
167
- /**
168
- *
169
- * @summary Update device.
170
- * @param {string} id
171
- * @param {UpdateDeviceCommand} [updateDeviceCommand]
172
- * @param {*} [options] Override http request option.
173
- * @throws {RequiredError}
174
- */
175
- apiV2DevicesIdPut(id: string, updateDeviceCommand?: UpdateDeviceCommand, options?: any): AxiosPromise<boolean>;
176
- /**
177
- *
178
- * @summary Create device.
179
- * @param {CreateDeviceCommand} [createDeviceCommand]
180
- * @param {*} [options] Override http request option.
181
- * @throws {RequiredError}
182
- */
183
- apiV2DevicesPost(createDeviceCommand?: CreateDeviceCommand, options?: any): AxiosPromise<DeviceModel>;
184
- };
185
- /**
186
- * Request parameters for apiV2DevicesGet operation in DevicesApi.
187
- * @export
188
- * @interface DevicesApiApiV2DevicesGetRequest
189
- */
190
- export interface DevicesApiApiV2DevicesGetRequest {
191
- /**
192
- *
193
- * @type {string}
194
- * @memberof DevicesApiApiV2DevicesGet
195
- */
196
- readonly id?: string;
197
- /**
198
- *
199
- * @type {string}
200
- * @memberof DevicesApiApiV2DevicesGet
201
- */
202
- readonly token?: string;
203
- /**
204
- *
205
- * @type {Platform}
206
- * @memberof DevicesApiApiV2DevicesGet
207
- */
208
- readonly platform?: Platform;
209
- /**
210
- *
211
- * @type {boolean}
212
- * @memberof DevicesApiApiV2DevicesGet
213
- */
214
- readonly appAlert?: boolean;
215
- /**
216
- *
217
- * @type {boolean}
218
- * @memberof DevicesApiApiV2DevicesGet
219
- */
220
- readonly eventAlert?: boolean;
221
- /**
222
- *
223
- * @type {boolean}
224
- * @memberof DevicesApiApiV2DevicesGet
225
- */
226
- readonly noticeAlert?: boolean;
227
- /**
228
- *
229
- * @type {number}
230
- * @memberof DevicesApiApiV2DevicesGet
231
- */
232
- readonly page?: number;
233
- /**
234
- *
235
- * @type {number}
236
- * @memberof DevicesApiApiV2DevicesGet
237
- */
238
- readonly limit?: number;
239
- /**
240
- *
241
- * @type {Date}
242
- * @memberof DevicesApiApiV2DevicesGet
243
- */
244
- readonly lastRetrieved?: Date;
245
- }
246
- /**
247
- * Request parameters for apiV2DevicesIdDelete operation in DevicesApi.
248
- * @export
249
- * @interface DevicesApiApiV2DevicesIdDeleteRequest
250
- */
251
- export interface DevicesApiApiV2DevicesIdDeleteRequest {
252
- /**
253
- *
254
- * @type {string}
255
- * @memberof DevicesApiApiV2DevicesIdDelete
256
- */
257
- readonly id: string;
258
- }
259
- /**
260
- * Request parameters for apiV2DevicesIdGet operation in DevicesApi.
261
- * @export
262
- * @interface DevicesApiApiV2DevicesIdGetRequest
263
- */
264
- export interface DevicesApiApiV2DevicesIdGetRequest {
265
- /**
266
- *
267
- * @type {string}
268
- * @memberof DevicesApiApiV2DevicesIdGet
269
- */
270
- readonly id: string;
271
- }
272
- /**
273
- * Request parameters for apiV2DevicesIdPut operation in DevicesApi.
274
- * @export
275
- * @interface DevicesApiApiV2DevicesIdPutRequest
276
- */
277
- export interface DevicesApiApiV2DevicesIdPutRequest {
278
- /**
279
- *
280
- * @type {string}
281
- * @memberof DevicesApiApiV2DevicesIdPut
282
- */
283
- readonly id: string;
284
- /**
285
- *
286
- * @type {UpdateDeviceCommand}
287
- * @memberof DevicesApiApiV2DevicesIdPut
288
- */
289
- readonly updateDeviceCommand?: UpdateDeviceCommand;
290
- }
291
- /**
292
- * Request parameters for apiV2DevicesPost operation in DevicesApi.
293
- * @export
294
- * @interface DevicesApiApiV2DevicesPostRequest
295
- */
296
- export interface DevicesApiApiV2DevicesPostRequest {
297
- /**
298
- *
299
- * @type {CreateDeviceCommand}
300
- * @memberof DevicesApiApiV2DevicesPost
301
- */
302
- readonly createDeviceCommand?: CreateDeviceCommand;
303
- }
304
- /**
305
- * DevicesApi - object-oriented interface
306
- * @export
307
- * @class DevicesApi
308
- * @extends {BaseAPI}
309
- */
310
- export declare class DevicesApi extends BaseAPI {
311
- /**
312
- *
313
- * @summary Get all devices.
314
- * @param {DevicesApiApiV2DevicesGetRequest} requestParameters Request parameters.
315
- * @param {*} [options] Override http request option.
316
- * @throws {RequiredError}
317
- * @memberof DevicesApi
318
- */
319
- apiV2DevicesGet(requestParameters?: DevicesApiApiV2DevicesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DevicesModel, any>>;
320
- /**
321
- *
322
- * @summary Delete device.
323
- * @param {DevicesApiApiV2DevicesIdDeleteRequest} requestParameters Request parameters.
324
- * @param {*} [options] Override http request option.
325
- * @throws {RequiredError}
326
- * @memberof DevicesApi
327
- */
328
- apiV2DevicesIdDelete(requestParameters: DevicesApiApiV2DevicesIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
329
- /**
330
- *
331
- * @summary Get device.
332
- * @param {DevicesApiApiV2DevicesIdGetRequest} requestParameters Request parameters.
333
- * @param {*} [options] Override http request option.
334
- * @throws {RequiredError}
335
- * @memberof DevicesApi
336
- */
337
- apiV2DevicesIdGet(requestParameters: DevicesApiApiV2DevicesIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeviceModel, any>>;
338
- /**
339
- *
340
- * @summary Update device.
341
- * @param {DevicesApiApiV2DevicesIdPutRequest} requestParameters Request parameters.
342
- * @param {*} [options] Override http request option.
343
- * @throws {RequiredError}
344
- * @memberof DevicesApi
345
- */
346
- apiV2DevicesIdPut(requestParameters: DevicesApiApiV2DevicesIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
347
- /**
348
- *
349
- * @summary Create device.
350
- * @param {DevicesApiApiV2DevicesPostRequest} requestParameters Request parameters.
351
- * @param {*} [options] Override http request option.
352
- * @throws {RequiredError}
353
- * @memberof DevicesApi
354
- */
355
- apiV2DevicesPost(requestParameters?: DevicesApiApiV2DevicesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeviceModel, any>>;
356
- }
357
- //# sourceMappingURL=devices-api.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"devices-api.d.ts","sourceRoot":"","sources":["../../src/api/devices-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,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAEhD,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAExC,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAEzC,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAErC,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAChD;;;GAGG;AACH,eAAO,MAAM,2BAA2B,mBAA6B,aAAa;IAE1E;;;;;;;;;;;;;;OAcG;2BAC0B,MAAM,UAAU,MAAM,aAAa,QAAQ,aAAa,OAAO,eAAe,OAAO,gBAAgB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAkEvP;;;;;;OAMG;+BAC8B,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA+BhG;;;;;;OAMG;4BAC2B,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA+B7F;;;;;;;OAOG;4BAC2B,MAAM,wBAAwB,mBAAmB,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAkCxI;;;;;;OAMG;6CAC4C,mBAAmB,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;CAgClI,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,YAAY,mBAA4B,aAAa;IAG1D;;;;;;;;;;;;;;OAcG;yBACwB,MAAM,UAAU,MAAM,aAAa,QAAQ,aAAa,OAAO,eAAe,OAAO,gBAAgB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,YAAY,CAAC,CAAC;IAI9S;;;;;;OAMG;6BAC4B,MAAM,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,OAAO,CAAC,CAAC;IAIlJ;;;;;;OAMG;0BACyB,MAAM,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,WAAW,CAAC,CAAC;IAInJ;;;;;;;OAOG;0BACyB,MAAM,wBAAwB,mBAAmB,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,OAAO,CAAC,CAAC;IAI1L;;;;;;OAMG;2CAC0C,mBAAmB,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,WAAW,CAAC,CAAC;CAKxL,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,iBAAiB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAG1G;;;;;;;;;;;;;;OAcG;yBACkB,MAAM,UAAU,MAAM,aAAa,QAAQ,aAAa,OAAO,eAAe,OAAO,gBAAgB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,YAAY,CAAC,YAAY,CAAC;IAGlO;;;;;;OAMG;6BACsB,MAAM,YAAY,GAAG,GAAG,YAAY,CAAC,OAAO,CAAC;IAGtE;;;;;;OAMG;0BACmB,MAAM,YAAY,GAAG,GAAG,YAAY,CAAC,WAAW,CAAC;IAGvE;;;;;;;OAOG;0BACmB,MAAM,wBAAwB,mBAAmB,YAAY,GAAG,GAAG,YAAY,CAAC,OAAO,CAAC;IAG9G;;;;;;OAMG;2CACoC,mBAAmB,YAAY,GAAG,GAAG,YAAY,CAAC,WAAW,CAAC;CAI5G,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,gCAAgC;IAC7C;;;;OAIG;IACH,QAAQ,CAAC,EAAE,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;OAIG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,QAAQ,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAE3B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,OAAO,CAAA;IAE7B;;;;OAIG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,OAAO,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;CACtB;AAED;;;;GAIG;AACH,MAAM,WAAW,kCAAkC;IAC/C;;;;OAIG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAA;CACtB;AAED;;;;GAIG;AACH,MAAM,WAAW,kCAAkC;IAC/C;;;;OAIG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAA;IAEnB;;;;OAIG;IACH,QAAQ,CAAC,mBAAmB,CAAC,EAAE,mBAAmB,CAAA;CACrD;AAED;;;;GAIG;AACH,MAAM,WAAW,iCAAiC;IAC9C;;;;OAIG;IACH,QAAQ,CAAC,mBAAmB,CAAC,EAAE,mBAAmB,CAAA;CACrD;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"}