@azure/arm-portal 1.0.0-beta.1

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 (92) hide show
  1. package/CHANGELOG.md +3 -0
  2. package/LICENSE +21 -0
  3. package/README.md +98 -0
  4. package/dist/index.js +1627 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/dist-esm/src/index.d.ts +5 -0
  9. package/dist-esm/src/index.d.ts.map +1 -0
  10. package/dist-esm/src/index.js +12 -0
  11. package/dist-esm/src/index.js.map +1 -0
  12. package/dist-esm/src/models/index.d.ts +334 -0
  13. package/dist-esm/src/models/index.d.ts.map +1 -0
  14. package/dist-esm/src/models/index.js +13 -0
  15. package/dist-esm/src/models/index.js.map +1 -0
  16. package/dist-esm/src/models/mappers.d.ts +28 -0
  17. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  18. package/dist-esm/src/models/mappers.js +624 -0
  19. package/dist-esm/src/models/mappers.js.map +1 -0
  20. package/dist-esm/src/models/parameters.d.ts +14 -0
  21. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  22. package/dist-esm/src/models/parameters.js +120 -0
  23. package/dist-esm/src/models/parameters.js.map +1 -0
  24. package/dist-esm/src/operations/dashboards.d.ts +83 -0
  25. package/dist-esm/src/operations/dashboards.d.ts.map +1 -0
  26. package/dist-esm/src/operations/dashboards.js +361 -0
  27. package/dist-esm/src/operations/dashboards.js.map +1 -0
  28. package/dist-esm/src/operations/index.d.ts +5 -0
  29. package/dist-esm/src/operations/index.d.ts.map +1 -0
  30. package/dist-esm/src/operations/index.js +12 -0
  31. package/dist-esm/src/operations/index.js.map +1 -0
  32. package/dist-esm/src/operations/listTenantConfigurationViolations.d.ts +32 -0
  33. package/dist-esm/src/operations/listTenantConfigurationViolations.d.ts.map +1 -0
  34. package/dist-esm/src/operations/listTenantConfigurationViolations.js +120 -0
  35. package/dist-esm/src/operations/listTenantConfigurationViolations.js.map +1 -0
  36. package/dist-esm/src/operations/operations.d.ts +32 -0
  37. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  38. package/dist-esm/src/operations/operations.js +120 -0
  39. package/dist-esm/src/operations/operations.js.map +1 -0
  40. package/dist-esm/src/operations/tenantConfigurations.d.ts +52 -0
  41. package/dist-esm/src/operations/tenantConfigurations.d.ts.map +1 -0
  42. package/dist-esm/src/operations/tenantConfigurations.js +199 -0
  43. package/dist-esm/src/operations/tenantConfigurations.js.map +1 -0
  44. package/dist-esm/src/operationsInterfaces/dashboards.d.ts +47 -0
  45. package/dist-esm/src/operationsInterfaces/dashboards.d.ts.map +1 -0
  46. package/dist-esm/src/operationsInterfaces/dashboards.js +9 -0
  47. package/dist-esm/src/operationsInterfaces/dashboards.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
  49. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/index.js +12 -0
  51. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/listTenantConfigurationViolations.d.ts +11 -0
  53. package/dist-esm/src/operationsInterfaces/listTenantConfigurationViolations.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/listTenantConfigurationViolations.js +9 -0
  55. package/dist-esm/src/operationsInterfaces/listTenantConfigurationViolations.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  57. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  59. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  60. package/dist-esm/src/operationsInterfaces/tenantConfigurations.d.ts +31 -0
  61. package/dist-esm/src/operationsInterfaces/tenantConfigurations.d.ts.map +1 -0
  62. package/dist-esm/src/operationsInterfaces/tenantConfigurations.js +9 -0
  63. package/dist-esm/src/operationsInterfaces/tenantConfigurations.js.map +1 -0
  64. package/dist-esm/src/portal.d.ts +22 -0
  65. package/dist-esm/src/portal.d.ts.map +1 -0
  66. package/dist-esm/src/portal.js +55 -0
  67. package/dist-esm/src/portal.js.map +1 -0
  68. package/dist-esm/test/sampleTest.d.ts +2 -0
  69. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  70. package/dist-esm/test/sampleTest.js +40 -0
  71. package/dist-esm/test/sampleTest.js.map +1 -0
  72. package/package.json +90 -0
  73. package/review/arm-portal.api.md +349 -0
  74. package/rollup.config.js +188 -0
  75. package/src/index.ts +12 -0
  76. package/src/models/index.ts +389 -0
  77. package/src/models/mappers.ts +658 -0
  78. package/src/models/parameters.ts +141 -0
  79. package/src/operations/dashboards.ts +451 -0
  80. package/src/operations/index.ts +12 -0
  81. package/src/operations/listTenantConfigurationViolations.ts +138 -0
  82. package/src/operations/operations.ts +137 -0
  83. package/src/operations/tenantConfigurations.ts +244 -0
  84. package/src/operationsInterfaces/dashboards.ts +91 -0
  85. package/src/operationsInterfaces/index.ts +12 -0
  86. package/src/operationsInterfaces/listTenantConfigurationViolations.ts +25 -0
  87. package/src/operationsInterfaces/operations.ts +25 -0
  88. package/src/operationsInterfaces/tenantConfigurations.ts +61 -0
  89. package/src/portal.ts +94 -0
  90. package/tsconfig.json +19 -0
  91. package/types/arm-portal.d.ts +505 -0
  92. package/types/tsdoc-metadata.json +11 -0
@@ -0,0 +1,624 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ export const ResourceProviderOperationList = {
9
+ type: {
10
+ name: "Composite",
11
+ className: "ResourceProviderOperationList",
12
+ modelProperties: {
13
+ value: {
14
+ serializedName: "value",
15
+ type: {
16
+ name: "Sequence",
17
+ element: {
18
+ type: {
19
+ name: "Composite",
20
+ className: "ResourceProviderOperation"
21
+ }
22
+ }
23
+ }
24
+ },
25
+ nextLink: {
26
+ serializedName: "nextLink",
27
+ type: {
28
+ name: "String"
29
+ }
30
+ }
31
+ }
32
+ }
33
+ };
34
+ export const ResourceProviderOperation = {
35
+ type: {
36
+ name: "Composite",
37
+ className: "ResourceProviderOperation",
38
+ modelProperties: {
39
+ name: {
40
+ serializedName: "name",
41
+ type: {
42
+ name: "String"
43
+ }
44
+ },
45
+ isDataAction: {
46
+ serializedName: "isDataAction",
47
+ type: {
48
+ name: "String"
49
+ }
50
+ },
51
+ display: {
52
+ serializedName: "display",
53
+ type: {
54
+ name: "Composite",
55
+ className: "ResourceProviderOperationDisplay"
56
+ }
57
+ }
58
+ }
59
+ }
60
+ };
61
+ export const ResourceProviderOperationDisplay = {
62
+ type: {
63
+ name: "Composite",
64
+ className: "ResourceProviderOperationDisplay",
65
+ modelProperties: {
66
+ provider: {
67
+ serializedName: "provider",
68
+ type: {
69
+ name: "String"
70
+ }
71
+ },
72
+ resource: {
73
+ serializedName: "resource",
74
+ type: {
75
+ name: "String"
76
+ }
77
+ },
78
+ operation: {
79
+ serializedName: "operation",
80
+ type: {
81
+ name: "String"
82
+ }
83
+ },
84
+ description: {
85
+ serializedName: "description",
86
+ type: {
87
+ name: "String"
88
+ }
89
+ }
90
+ }
91
+ }
92
+ };
93
+ export const ErrorResponse = {
94
+ type: {
95
+ name: "Composite",
96
+ className: "ErrorResponse",
97
+ modelProperties: {
98
+ error: {
99
+ serializedName: "error",
100
+ type: {
101
+ name: "Composite",
102
+ className: "ErrorDefinition"
103
+ }
104
+ }
105
+ }
106
+ }
107
+ };
108
+ export const ErrorDefinition = {
109
+ type: {
110
+ name: "Composite",
111
+ className: "ErrorDefinition",
112
+ modelProperties: {
113
+ code: {
114
+ serializedName: "code",
115
+ readOnly: true,
116
+ type: {
117
+ name: "Number"
118
+ }
119
+ },
120
+ message: {
121
+ serializedName: "message",
122
+ readOnly: true,
123
+ type: {
124
+ name: "String"
125
+ }
126
+ },
127
+ details: {
128
+ serializedName: "details",
129
+ readOnly: true,
130
+ type: {
131
+ name: "Sequence",
132
+ element: {
133
+ type: {
134
+ name: "Composite",
135
+ className: "ErrorDefinition"
136
+ }
137
+ }
138
+ }
139
+ }
140
+ }
141
+ }
142
+ };
143
+ export const Dashboard = {
144
+ type: {
145
+ name: "Composite",
146
+ className: "Dashboard",
147
+ modelProperties: {
148
+ id: {
149
+ serializedName: "id",
150
+ readOnly: true,
151
+ type: {
152
+ name: "String"
153
+ }
154
+ },
155
+ name: {
156
+ serializedName: "name",
157
+ readOnly: true,
158
+ type: {
159
+ name: "String"
160
+ }
161
+ },
162
+ type: {
163
+ serializedName: "type",
164
+ readOnly: true,
165
+ type: {
166
+ name: "String"
167
+ }
168
+ },
169
+ location: {
170
+ serializedName: "location",
171
+ required: true,
172
+ type: {
173
+ name: "String"
174
+ }
175
+ },
176
+ tags: {
177
+ serializedName: "tags",
178
+ type: {
179
+ name: "Dictionary",
180
+ value: { type: { name: "String" } }
181
+ }
182
+ },
183
+ lenses: {
184
+ serializedName: "properties.lenses",
185
+ type: {
186
+ name: "Sequence",
187
+ element: {
188
+ type: {
189
+ name: "Composite",
190
+ className: "DashboardLens"
191
+ }
192
+ }
193
+ }
194
+ },
195
+ metadata: {
196
+ serializedName: "properties.metadata",
197
+ type: {
198
+ name: "Dictionary",
199
+ value: {
200
+ type: { name: "Dictionary", value: { type: { name: "any" } } }
201
+ }
202
+ }
203
+ }
204
+ }
205
+ }
206
+ };
207
+ export const DashboardLens = {
208
+ type: {
209
+ name: "Composite",
210
+ className: "DashboardLens",
211
+ modelProperties: {
212
+ order: {
213
+ serializedName: "order",
214
+ required: true,
215
+ type: {
216
+ name: "Number"
217
+ }
218
+ },
219
+ parts: {
220
+ serializedName: "parts",
221
+ required: true,
222
+ type: {
223
+ name: "Sequence",
224
+ element: {
225
+ type: {
226
+ name: "Composite",
227
+ className: "DashboardParts"
228
+ }
229
+ }
230
+ }
231
+ },
232
+ metadata: {
233
+ serializedName: "metadata",
234
+ type: {
235
+ name: "Dictionary",
236
+ value: {
237
+ type: { name: "Dictionary", value: { type: { name: "any" } } }
238
+ }
239
+ }
240
+ }
241
+ }
242
+ }
243
+ };
244
+ export const DashboardParts = {
245
+ type: {
246
+ name: "Composite",
247
+ className: "DashboardParts",
248
+ modelProperties: {
249
+ position: {
250
+ serializedName: "position",
251
+ type: {
252
+ name: "Composite",
253
+ className: "DashboardPartsPosition"
254
+ }
255
+ },
256
+ metadata: {
257
+ serializedName: "metadata",
258
+ type: {
259
+ name: "Composite",
260
+ className: "DashboardPartMetadata"
261
+ }
262
+ }
263
+ }
264
+ }
265
+ };
266
+ export const DashboardPartsPosition = {
267
+ type: {
268
+ name: "Composite",
269
+ className: "DashboardPartsPosition",
270
+ modelProperties: {
271
+ x: {
272
+ serializedName: "x",
273
+ required: true,
274
+ type: {
275
+ name: "Number"
276
+ }
277
+ },
278
+ y: {
279
+ serializedName: "y",
280
+ required: true,
281
+ type: {
282
+ name: "Number"
283
+ }
284
+ },
285
+ rowSpan: {
286
+ serializedName: "rowSpan",
287
+ required: true,
288
+ type: {
289
+ name: "Number"
290
+ }
291
+ },
292
+ colSpan: {
293
+ serializedName: "colSpan",
294
+ required: true,
295
+ type: {
296
+ name: "Number"
297
+ }
298
+ },
299
+ metadata: {
300
+ serializedName: "metadata",
301
+ type: {
302
+ name: "Dictionary",
303
+ value: {
304
+ type: { name: "Dictionary", value: { type: { name: "any" } } }
305
+ }
306
+ }
307
+ }
308
+ }
309
+ }
310
+ };
311
+ export const DashboardPartMetadata = {
312
+ serializedName: "DashboardPartMetadata",
313
+ type: {
314
+ name: "Composite",
315
+ className: "DashboardPartMetadata",
316
+ uberParent: "DashboardPartMetadata",
317
+ additionalProperties: { type: { name: "Object" } },
318
+ polymorphicDiscriminator: {
319
+ serializedName: "type",
320
+ clientName: "type"
321
+ },
322
+ modelProperties: {
323
+ type: {
324
+ serializedName: "type",
325
+ required: true,
326
+ type: {
327
+ name: "String"
328
+ }
329
+ }
330
+ }
331
+ }
332
+ };
333
+ export const PatchableDashboard = {
334
+ type: {
335
+ name: "Composite",
336
+ className: "PatchableDashboard",
337
+ modelProperties: {
338
+ tags: {
339
+ serializedName: "tags",
340
+ type: {
341
+ name: "Dictionary",
342
+ value: { type: { name: "String" } }
343
+ }
344
+ },
345
+ lenses: {
346
+ serializedName: "properties.lenses",
347
+ type: {
348
+ name: "Sequence",
349
+ element: {
350
+ type: {
351
+ name: "Composite",
352
+ className: "DashboardLens"
353
+ }
354
+ }
355
+ }
356
+ },
357
+ metadata: {
358
+ serializedName: "properties.metadata",
359
+ type: {
360
+ name: "Dictionary",
361
+ value: {
362
+ type: { name: "Dictionary", value: { type: { name: "any" } } }
363
+ }
364
+ }
365
+ }
366
+ }
367
+ }
368
+ };
369
+ export const DashboardListResult = {
370
+ type: {
371
+ name: "Composite",
372
+ className: "DashboardListResult",
373
+ modelProperties: {
374
+ value: {
375
+ serializedName: "value",
376
+ type: {
377
+ name: "Sequence",
378
+ element: {
379
+ type: {
380
+ name: "Composite",
381
+ className: "Dashboard"
382
+ }
383
+ }
384
+ }
385
+ },
386
+ nextLink: {
387
+ serializedName: "nextLink",
388
+ type: {
389
+ name: "String"
390
+ }
391
+ }
392
+ }
393
+ }
394
+ };
395
+ export const ConfigurationList = {
396
+ type: {
397
+ name: "Composite",
398
+ className: "ConfigurationList",
399
+ modelProperties: {
400
+ value: {
401
+ serializedName: "value",
402
+ type: {
403
+ name: "Sequence",
404
+ element: {
405
+ type: {
406
+ name: "Composite",
407
+ className: "Configuration"
408
+ }
409
+ }
410
+ }
411
+ },
412
+ nextLink: {
413
+ serializedName: "nextLink",
414
+ type: {
415
+ name: "String"
416
+ }
417
+ }
418
+ }
419
+ }
420
+ };
421
+ export const Resource = {
422
+ type: {
423
+ name: "Composite",
424
+ className: "Resource",
425
+ modelProperties: {
426
+ id: {
427
+ serializedName: "id",
428
+ readOnly: true,
429
+ type: {
430
+ name: "String"
431
+ }
432
+ },
433
+ name: {
434
+ serializedName: "name",
435
+ readOnly: true,
436
+ type: {
437
+ name: "String"
438
+ }
439
+ },
440
+ type: {
441
+ serializedName: "type",
442
+ readOnly: true,
443
+ type: {
444
+ name: "String"
445
+ }
446
+ }
447
+ }
448
+ }
449
+ };
450
+ export const ViolationsList = {
451
+ type: {
452
+ name: "Composite",
453
+ className: "ViolationsList",
454
+ modelProperties: {
455
+ value: {
456
+ serializedName: "value",
457
+ type: {
458
+ name: "Sequence",
459
+ element: {
460
+ type: {
461
+ name: "Composite",
462
+ className: "Violation"
463
+ }
464
+ }
465
+ }
466
+ },
467
+ nextLink: {
468
+ serializedName: "nextLink",
469
+ type: {
470
+ name: "String"
471
+ }
472
+ }
473
+ }
474
+ }
475
+ };
476
+ export const Violation = {
477
+ type: {
478
+ name: "Composite",
479
+ className: "Violation",
480
+ modelProperties: {
481
+ id: {
482
+ serializedName: "id",
483
+ readOnly: true,
484
+ type: {
485
+ name: "String"
486
+ }
487
+ },
488
+ userId: {
489
+ serializedName: "userId",
490
+ readOnly: true,
491
+ type: {
492
+ name: "String"
493
+ }
494
+ },
495
+ errorMessage: {
496
+ serializedName: "errorMessage",
497
+ readOnly: true,
498
+ type: {
499
+ name: "String"
500
+ }
501
+ }
502
+ }
503
+ }
504
+ };
505
+ export const MarkdownPartMetadataSettings = {
506
+ type: {
507
+ name: "Composite",
508
+ className: "MarkdownPartMetadataSettings",
509
+ modelProperties: {
510
+ content: {
511
+ serializedName: "content",
512
+ type: {
513
+ name: "Composite",
514
+ className: "MarkdownPartMetadataSettingsContent"
515
+ }
516
+ }
517
+ }
518
+ }
519
+ };
520
+ export const MarkdownPartMetadataSettingsContent = {
521
+ type: {
522
+ name: "Composite",
523
+ className: "MarkdownPartMetadataSettingsContent",
524
+ modelProperties: {
525
+ settings: {
526
+ serializedName: "settings",
527
+ type: {
528
+ name: "Composite",
529
+ className: "MarkdownPartMetadataSettingsContentSettings"
530
+ }
531
+ }
532
+ }
533
+ }
534
+ };
535
+ export const MarkdownPartMetadataSettingsContentSettings = {
536
+ type: {
537
+ name: "Composite",
538
+ className: "MarkdownPartMetadataSettingsContentSettings",
539
+ modelProperties: {
540
+ content: {
541
+ serializedName: "content",
542
+ type: {
543
+ name: "String"
544
+ }
545
+ },
546
+ title: {
547
+ serializedName: "title",
548
+ type: {
549
+ name: "String"
550
+ }
551
+ },
552
+ subtitle: {
553
+ serializedName: "subtitle",
554
+ type: {
555
+ name: "String"
556
+ }
557
+ },
558
+ markdownSource: {
559
+ serializedName: "markdownSource",
560
+ type: {
561
+ name: "Number"
562
+ }
563
+ },
564
+ markdownUri: {
565
+ serializedName: "markdownUri",
566
+ type: {
567
+ name: "String"
568
+ }
569
+ }
570
+ }
571
+ }
572
+ };
573
+ export const MarkdownPartMetadata = {
574
+ serializedName: "Extension/HubsExtension/PartType/MarkdownPart",
575
+ type: {
576
+ name: "Composite",
577
+ className: "MarkdownPartMetadata",
578
+ uberParent: "DashboardPartMetadata",
579
+ additionalProperties: { type: { name: "Object" } },
580
+ polymorphicDiscriminator: DashboardPartMetadata.type.polymorphicDiscriminator,
581
+ modelProperties: Object.assign(Object.assign({}, DashboardPartMetadata.type.modelProperties), { inputs: {
582
+ serializedName: "inputs",
583
+ type: {
584
+ name: "Sequence",
585
+ element: {
586
+ type: {
587
+ name: "Dictionary",
588
+ value: { type: { name: "any" } }
589
+ }
590
+ }
591
+ }
592
+ }, settings: {
593
+ serializedName: "settings",
594
+ type: {
595
+ name: "Composite",
596
+ className: "MarkdownPartMetadataSettings"
597
+ }
598
+ } })
599
+ }
600
+ };
601
+ export const ProxyResource = {
602
+ type: {
603
+ name: "Composite",
604
+ className: "ProxyResource",
605
+ modelProperties: Object.assign({}, Resource.type.modelProperties)
606
+ }
607
+ };
608
+ export const Configuration = {
609
+ type: {
610
+ name: "Composite",
611
+ className: "Configuration",
612
+ modelProperties: Object.assign(Object.assign({}, ProxyResource.type.modelProperties), { enforcePrivateMarkdownStorage: {
613
+ serializedName: "properties.enforcePrivateMarkdownStorage",
614
+ type: {
615
+ name: "Boolean"
616
+ }
617
+ } })
618
+ }
619
+ };
620
+ export let discriminators = {
621
+ DashboardPartMetadata: DashboardPartMetadata,
622
+ "DashboardPartMetadata.Extension/HubsExtension/PartType/MarkdownPart": MarkdownPartMetadata
623
+ };
624
+ //# sourceMappingURL=mappers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mappers.js","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,14 @@
1
+ import { OperationParameter, OperationURLParameter, OperationQueryParameter } from "@azure/core-client";
2
+ export declare const accept: OperationParameter;
3
+ export declare const $host: OperationURLParameter;
4
+ export declare const apiVersion: OperationQueryParameter;
5
+ export declare const nextLink: OperationURLParameter;
6
+ export declare const contentType: OperationParameter;
7
+ export declare const dashboard: OperationParameter;
8
+ export declare const subscriptionId: OperationURLParameter;
9
+ export declare const resourceGroupName: OperationURLParameter;
10
+ export declare const dashboardName: OperationURLParameter;
11
+ export declare const dashboard1: OperationParameter;
12
+ export declare const configurationName: OperationURLParameter;
13
+ export declare const tenantConfiguration: OperationParameter;
14
+ //# sourceMappingURL=parameters.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parameters.d.ts","sourceRoot":"","sources":["../../../src/models/parameters.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,kBAAkB,EAClB,qBAAqB,EACrB,uBAAuB,EACxB,MAAM,oBAAoB,CAAC;AAO5B,eAAO,MAAM,MAAM,EAAE,kBAUpB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,qBAUnB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,uBAUxB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,qBAUtB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,kBAUzB,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,kBAGvB,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,qBAS5B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,qBAS/B,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,qBAa3B,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,kBAGxB,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,qBAS/B,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,kBAGjC,CAAC"}