@pushwoosh/rpc-gateway-ai-assistant 0.1.277 → 0.1.279

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/data.js CHANGED
@@ -2084,6 +2084,18 @@ export const data = {
2084
2084
  "method": "post",
2085
2085
  "path": "/api/v1/aigen/extract-style"
2086
2086
  },
2087
+ "ExtractTheme": {
2088
+ "request": "pushwoosh.aigen.v1.AiGenExtractThemeRequest",
2089
+ "response": "pushwoosh.aigen.v1.AiGenExtractThemeResponse",
2090
+ "method": "post",
2091
+ "path": "/api/v1/aigen/extract-theme"
2092
+ },
2093
+ "Translate": {
2094
+ "request": "pushwoosh.aigen.v1.AiGenTranslateRequest",
2095
+ "response": "pushwoosh.aigen.v1.AiGenTranslateResponse",
2096
+ "method": "post",
2097
+ "path": "/api/v1/aigen/translate"
2098
+ },
2087
2099
  "ConvertUnlayer": {
2088
2100
  "request": "pushwoosh.aigen.v1.AiGenConvertUnlayerRequest",
2089
2101
  "response": "pushwoosh.aigen.v1.AiGenConvertUnlayerResponse",
@@ -2570,6 +2582,134 @@ export const data = {
2570
2582
  }
2571
2583
  }
2572
2584
  },
2585
+ "pushwoosh.aigen.v1.AiGenSourceFormat": {
2586
+ "type": "E",
2587
+ "values": [
2588
+ "AI_GEN_SOURCE_FORMAT_UNSPECIFIED",
2589
+ "AI_GEN_SOURCE_FORMAT_TEXT",
2590
+ "AI_GEN_SOURCE_FORMAT_MARKDOWN",
2591
+ "AI_GEN_SOURCE_FORMAT_HTML",
2592
+ "AI_GEN_SOURCE_FORMAT_PDF"
2593
+ ]
2594
+ },
2595
+ "pushwoosh.aigen.v1.AiGenSource": {
2596
+ "type": "I",
2597
+ "fields": {
2598
+ "format": {
2599
+ "type": "pushwoosh.aigen.v1.AiGenSourceFormat"
2600
+ },
2601
+ "content": {
2602
+ "type": "string"
2603
+ },
2604
+ "name": {
2605
+ "type": "string"
2606
+ }
2607
+ }
2608
+ },
2609
+ "pushwoosh.aigen.v1.AiGenTheme": {
2610
+ "type": "I",
2611
+ "fields": {
2612
+ "colors": {
2613
+ "type": "string",
2614
+ "mapKeyType": "string"
2615
+ },
2616
+ "fontFamily": {
2617
+ "type": "string"
2618
+ },
2619
+ "headingFontFamily": {
2620
+ "type": "string"
2621
+ }
2622
+ }
2623
+ },
2624
+ "pushwoosh.aigen.v1.AiGenExtractThemeRequest": {
2625
+ "type": "I",
2626
+ "fields": {
2627
+ "image": {
2628
+ "type": "pushwoosh.aigen.v1.AiGenReferenceImage",
2629
+ "optional": true
2630
+ },
2631
+ "application": {
2632
+ "type": "string"
2633
+ },
2634
+ "llmProvider": {
2635
+ "type": "string",
2636
+ "optional": true
2637
+ },
2638
+ "llmModel": {
2639
+ "type": "string",
2640
+ "optional": true
2641
+ },
2642
+ "sources": {
2643
+ "type": "pushwoosh.aigen.v1.AiGenSource",
2644
+ "array": true
2645
+ },
2646
+ "description": {
2647
+ "type": "string"
2648
+ },
2649
+ "siteUrl": {
2650
+ "type": "string"
2651
+ }
2652
+ }
2653
+ },
2654
+ "pushwoosh.aigen.v1.AiGenExtractThemeResponse": {
2655
+ "type": "I",
2656
+ "fields": {
2657
+ "theme": {
2658
+ "type": "pushwoosh.aigen.v1.AiGenTheme"
2659
+ },
2660
+ "logoUrl": {
2661
+ "type": "string"
2662
+ },
2663
+ "brandVoice": {
2664
+ "type": "string"
2665
+ }
2666
+ }
2667
+ },
2668
+ "pushwoosh.aigen.v1.AiGenTranslateRequest": {
2669
+ "type": "I",
2670
+ "fields": {
2671
+ "application": {
2672
+ "type": "string"
2673
+ },
2674
+ "texts": {
2675
+ "type": "string",
2676
+ "array": true
2677
+ },
2678
+ "targetLanguages": {
2679
+ "type": "string",
2680
+ "array": true
2681
+ },
2682
+ "context": {
2683
+ "type": "string"
2684
+ },
2685
+ "llmProvider": {
2686
+ "type": "string",
2687
+ "optional": true
2688
+ },
2689
+ "llmModel": {
2690
+ "type": "string",
2691
+ "optional": true
2692
+ }
2693
+ }
2694
+ },
2695
+ "pushwoosh.aigen.v1.AiGenTranslatedTexts": {
2696
+ "type": "I",
2697
+ "fields": {
2698
+ "texts": {
2699
+ "type": "string",
2700
+ "array": true
2701
+ }
2702
+ }
2703
+ },
2704
+ "pushwoosh.aigen.v1.AiGenTranslateResponse": {
2705
+ "type": "I",
2706
+ "fields": {
2707
+ "translations": {
2708
+ "type": "pushwoosh.aigen.v1.AiGenTranslatedTexts",
2709
+ "mapKeyType": "string"
2710
+ }
2711
+ }
2712
+ },
2573
2713
  "pushwoosh.aigen.v1.AiGenConvertUnlayerRequest": {
2574
2714
  "type": "I",
2575
2715
  "fields": {
@@ -3966,630 +4106,5 @@ export const data = {
3966
4106
  "pushwoosh.templates.v1.DeleteResponse": {
3967
4107
  "type": "I",
3968
4108
  "fields": {}
3969
- },
3970
- "pushwoosh.vibeml.v1.VibeDocument": {
3971
- "type": "I",
3972
- "fields": {
3973
- "meta": {
3974
- "type": "pushwoosh.vibeml.v1.VibeMeta"
3975
- },
3976
- "theme": {
3977
- "type": "pushwoosh.vibeml.v1.VibeTheme",
3978
- "optional": true
3979
- },
3980
- "pages": {
3981
- "type": "pushwoosh.vibeml.v1.VibePage",
3982
- "array": true
3983
- },
3984
- "attributes": {
3985
- "type": "pushwoosh.vibeml.v1.VibeAttributes",
3986
- "optional": true
3987
- },
3988
- "fonts": {
3989
- "type": "pushwoosh.vibeml.v1.VibeFont",
3990
- "array": true
3991
- },
3992
- "settings": {
3993
- "type": "pushwoosh.vibeml.v1.VibeDocumentSettings"
3994
- },
3995
- "blockVariants": {
3996
- "type": "pushwoosh.vibeml.v1.VibeBlockVariants",
3997
- "mapKeyType": "string"
3998
- }
3999
- }
4000
- },
4001
- "pushwoosh.vibeml.v1.VibeBlockVariants": {
4002
- "type": "I",
4003
- "fields": {
4004
- "byName": {
4005
- "type": "pushwoosh.vibeml.v1.VibePropsDefault",
4006
- "mapKeyType": "string"
4007
- }
4008
- }
4009
- },
4010
- "pushwoosh.vibeml.v1.VibeDocumentSettings": {
4011
- "type": "I",
4012
- "fields": {
4013
- "contentWidth": {
4014
- "type": "string"
4015
- },
4016
- "background": {
4017
- "type": "string"
4018
- }
4019
- }
4020
- },
4021
- "pushwoosh.vibeml.v1.VibeAttributes": {
4022
- "type": "I",
4023
- "fields": {
4024
- "all": {
4025
- "type": "string",
4026
- "mapKeyType": "string"
4027
- },
4028
- "byType": {
4029
- "type": "pushwoosh.vibeml.v1.VibePropsDefault",
4030
- "mapKeyType": "string"
4031
- }
4032
- }
4033
- },
4034
- "pushwoosh.vibeml.v1.VibePropsDefault": {
4035
- "type": "I",
4036
- "fields": {
4037
- "props": {
4038
- "type": "string",
4039
- "mapKeyType": "string"
4040
- }
4041
- }
4042
- },
4043
- "pushwoosh.vibeml.v1.VibeFont": {
4044
- "type": "I",
4045
- "fields": {
4046
- "name": {
4047
- "type": "string"
4048
- },
4049
- "href": {
4050
- "type": "string"
4051
- }
4052
- }
4053
- },
4054
- "pushwoosh.vibeml.v1.VibePage": {
4055
- "type": "I",
4056
- "fields": {
4057
- "id": {
4058
- "type": "string"
4059
- },
4060
- "rows": {
4061
- "type": "pushwoosh.vibeml.v1.VibeRow",
4062
- "array": true
4063
- }
4064
- }
4065
- },
4066
- "pushwoosh.vibeml.v1.VibeRow": {
4067
- "type": "I",
4068
- "fields": {
4069
- "section": {
4070
- "type": "pushwoosh.vibeml.v1.VibeSection"
4071
- },
4072
- "wrapper": {
4073
- "type": "pushwoosh.vibeml.v1.VibeWrapper"
4074
- }
4075
- },
4076
- "oneofs": {
4077
- "row": {
4078
- "oneof": [
4079
- "section",
4080
- "wrapper"
4081
- ]
4082
- }
4083
- }
4084
- },
4085
- "pushwoosh.vibeml.v1.VibeWrapper": {
4086
- "type": "I",
4087
- "fields": {
4088
- "id": {
4089
- "type": "string"
4090
- },
4091
- "props": {
4092
- "type": "string",
4093
- "mapKeyType": "string"
4094
- },
4095
- "sections": {
4096
- "type": "pushwoosh.vibeml.v1.VibeSection",
4097
- "array": true
4098
- }
4099
- }
4100
- },
4101
- "pushwoosh.vibeml.v1.VibeMeta": {
4102
- "type": "I",
4103
- "fields": {
4104
- "subject": {
4105
- "type": "string"
4106
- },
4107
- "preheader": {
4108
- "type": "string"
4109
- }
4110
- }
4111
- },
4112
- "pushwoosh.vibeml.v1.VibeTheme": {
4113
- "type": "I",
4114
- "fields": {
4115
- "colors": {
4116
- "type": "string",
4117
- "mapKeyType": "string"
4118
- },
4119
- "fontFamily": {
4120
- "type": "string"
4121
- },
4122
- "headingFontFamily": {
4123
- "type": "string"
4124
- }
4125
- }
4126
- },
4127
- "pushwoosh.vibeml.v1.VibeSection": {
4128
- "type": "I",
4129
- "fields": {
4130
- "id": {
4131
- "type": "string"
4132
- },
4133
- "props": {
4134
- "type": "string",
4135
- "mapKeyType": "string"
4136
- },
4137
- "columns": {
4138
- "type": "pushwoosh.vibeml.v1.VibeColumn",
4139
- "array": true
4140
- }
4141
- }
4142
- },
4143
- "pushwoosh.vibeml.v1.VibeColumn": {
4144
- "type": "I",
4145
- "fields": {
4146
- "id": {
4147
- "type": "string"
4148
- },
4149
- "props": {
4150
- "type": "string",
4151
- "mapKeyType": "string"
4152
- },
4153
- "children": {
4154
- "type": "pushwoosh.vibeml.v1.VibeContentBlock",
4155
- "array": true
4156
- }
4157
- }
4158
- },
4159
- "pushwoosh.vibeml.v1.VibeContentBlock": {
4160
- "type": "I",
4161
- "fields": {
4162
- "text": {
4163
- "type": "pushwoosh.vibeml.v1.VibeText"
4164
- },
4165
- "image": {
4166
- "type": "pushwoosh.vibeml.v1.VibeImage"
4167
- },
4168
- "button": {
4169
- "type": "pushwoosh.vibeml.v1.VibeButton"
4170
- },
4171
- "spacer": {
4172
- "type": "pushwoosh.vibeml.v1.VibeSpacer"
4173
- },
4174
- "divider": {
4175
- "type": "pushwoosh.vibeml.v1.VibeDivider"
4176
- },
4177
- "table": {
4178
- "type": "pushwoosh.vibeml.v1.VibeTable"
4179
- },
4180
- "buttonGroup": {
4181
- "type": "pushwoosh.vibeml.v1.VibeButtonGroup"
4182
- }
4183
- },
4184
- "oneofs": {
4185
- "block": {
4186
- "oneof": [
4187
- "text",
4188
- "image",
4189
- "button",
4190
- "spacer",
4191
- "divider",
4192
- "table",
4193
- "buttonGroup"
4194
- ]
4195
- }
4196
- }
4197
- },
4198
- "pushwoosh.vibeml.v1.VibeText": {
4199
- "type": "I",
4200
- "fields": {
4201
- "id": {
4202
- "type": "string"
4203
- },
4204
- "props": {
4205
- "type": "string",
4206
- "mapKeyType": "string"
4207
- },
4208
- "content": {
4209
- "type": "string"
4210
- },
4211
- "variant": {
4212
- "type": "string"
4213
- }
4214
- }
4215
- },
4216
- "pushwoosh.vibeml.v1.VibeImage": {
4217
- "type": "I",
4218
- "fields": {
4219
- "id": {
4220
- "type": "string"
4221
- },
4222
- "props": {
4223
- "type": "string",
4224
- "mapKeyType": "string"
4225
- }
4226
- }
4227
- },
4228
- "pushwoosh.vibeml.v1.VibeButton": {
4229
- "type": "I",
4230
- "fields": {
4231
- "id": {
4232
- "type": "string"
4233
- },
4234
- "props": {
4235
- "type": "string",
4236
- "mapKeyType": "string"
4237
- },
4238
- "content": {
4239
- "type": "string"
4240
- },
4241
- "variant": {
4242
- "type": "string"
4243
- }
4244
- }
4245
- },
4246
- "pushwoosh.vibeml.v1.VibeButtonGroup": {
4247
- "type": "I",
4248
- "fields": {
4249
- "id": {
4250
- "type": "string"
4251
- },
4252
- "props": {
4253
- "type": "string",
4254
- "mapKeyType": "string"
4255
- },
4256
- "items": {
4257
- "type": "pushwoosh.vibeml.v1.VibeButtonGroupItem",
4258
- "array": true
4259
- }
4260
- }
4261
- },
4262
- "pushwoosh.vibeml.v1.VibeButtonGroupItem": {
4263
- "type": "I",
4264
- "fields": {
4265
- "button": {
4266
- "type": "pushwoosh.vibeml.v1.VibeButton"
4267
- },
4268
- "image": {
4269
- "type": "pushwoosh.vibeml.v1.VibeImage"
4270
- }
4271
- },
4272
- "oneofs": {
4273
- "item": {
4274
- "oneof": [
4275
- "button",
4276
- "image"
4277
- ]
4278
- }
4279
- }
4280
- },
4281
- "pushwoosh.vibeml.v1.VibeSpacer": {
4282
- "type": "I",
4283
- "fields": {
4284
- "id": {
4285
- "type": "string"
4286
- },
4287
- "props": {
4288
- "type": "string",
4289
- "mapKeyType": "string"
4290
- }
4291
- }
4292
- },
4293
- "pushwoosh.vibeml.v1.VibeDivider": {
4294
- "type": "I",
4295
- "fields": {
4296
- "id": {
4297
- "type": "string"
4298
- },
4299
- "props": {
4300
- "type": "string",
4301
- "mapKeyType": "string"
4302
- }
4303
- }
4304
- },
4305
- "pushwoosh.vibeml.v1.VibeTable": {
4306
- "type": "I",
4307
- "fields": {
4308
- "id": {
4309
- "type": "string"
4310
- },
4311
- "props": {
4312
- "type": "string",
4313
- "mapKeyType": "string"
4314
- },
4315
- "rows": {
4316
- "type": "pushwoosh.vibeml.v1.VibeTableRow",
4317
- "array": true
4318
- }
4319
- }
4320
- },
4321
- "pushwoosh.vibeml.v1.VibeTableRow": {
4322
- "type": "I",
4323
- "fields": {
4324
- "header": {
4325
- "type": "boolean"
4326
- },
4327
- "cells": {
4328
- "type": "string",
4329
- "array": true
4330
- }
4331
- }
4332
- },
4333
- "pushwoosh.vibeml.v1.VibeMlService": {
4334
- "type": "S",
4335
- "key": "vibeMl",
4336
- "methods": {
4337
- "Generate": {
4338
- "request": "pushwoosh.vibeml.v1.VibeMlGenerateRequest",
4339
- "response": "pushwoosh.vibeml.v1.VibeMlGenerateResponse",
4340
- "method": "post",
4341
- "path": "/api/v1/vibeml/generate"
4342
- },
4343
- "Edit": {
4344
- "request": "pushwoosh.vibeml.v1.VibeMlEditRequest",
4345
- "response": "pushwoosh.vibeml.v1.VibeMlEditResponse",
4346
- "method": "post",
4347
- "path": "/api/v1/vibeml/edit"
4348
- },
4349
- "Restyle": {
4350
- "request": "pushwoosh.vibeml.v1.VibeMlRestyleRequest",
4351
- "response": "pushwoosh.vibeml.v1.VibeMlRestyleResponse",
4352
- "method": "post",
4353
- "path": "/api/v1/vibeml/restyle"
4354
- },
4355
- "ExtractTheme": {
4356
- "request": "pushwoosh.vibeml.v1.VibeMlExtractThemeRequest",
4357
- "response": "pushwoosh.vibeml.v1.VibeMlExtractThemeResponse",
4358
- "method": "post",
4359
- "path": "/api/v1/vibeml/extract-theme"
4360
- },
4361
- "Translate": {
4362
- "request": "pushwoosh.vibeml.v1.VibeMlTranslateRequest",
4363
- "response": "pushwoosh.vibeml.v1.VibeMlTranslateResponse",
4364
- "method": "post",
4365
- "path": "/api/v1/vibeml/translate"
4366
- }
4367
- }
4368
- },
4369
- "pushwoosh.vibeml.v1.VibeSourceFormat": {
4370
- "type": "E",
4371
- "values": [
4372
- "VIBE_SOURCE_FORMAT_UNSPECIFIED",
4373
- "VIBE_SOURCE_FORMAT_TEXT",
4374
- "VIBE_SOURCE_FORMAT_MARKDOWN",
4375
- "VIBE_SOURCE_FORMAT_HTML",
4376
- "VIBE_SOURCE_FORMAT_PDF"
4377
- ]
4378
- },
4379
- "pushwoosh.vibeml.v1.VibeSource": {
4380
- "type": "I",
4381
- "fields": {
4382
- "format": {
4383
- "type": "pushwoosh.vibeml.v1.VibeSourceFormat"
4384
- },
4385
- "content": {
4386
- "type": "string"
4387
- },
4388
- "name": {
4389
- "type": "string"
4390
- }
4391
- }
4392
- },
4393
- "pushwoosh.vibeml.v1.VibeMlGenerateRequest": {
4394
- "type": "I",
4395
- "fields": {
4396
- "prompt": {
4397
- "type": "string"
4398
- },
4399
- "application": {
4400
- "type": "string"
4401
- },
4402
- "styleDocument": {
4403
- "type": "pushwoosh.vibeml.v1.VibeDocument"
4404
- },
4405
- "llmProvider": {
4406
- "type": "string"
4407
- },
4408
- "llmModel": {
4409
- "type": "string",
4410
- "optional": true
4411
- },
4412
- "sources": {
4413
- "type": "pushwoosh.vibeml.v1.VibeSource",
4414
- "array": true
4415
- }
4416
- }
4417
- },
4418
- "pushwoosh.vibeml.v1.VibeMlGenerateResponse": {
4419
- "type": "I",
4420
- "fields": {
4421
- "document": {
4422
- "type": "pushwoosh.vibeml.v1.VibeDocument"
4423
- },
4424
- "summary": {
4425
- "type": "string"
4426
- }
4427
- }
4428
- },
4429
- "pushwoosh.vibeml.v1.VibeMlEditRequest": {
4430
- "type": "I",
4431
- "fields": {
4432
- "prompt": {
4433
- "type": "string"
4434
- },
4435
- "document": {
4436
- "type": "pushwoosh.vibeml.v1.VibeDocument"
4437
- },
4438
- "application": {
4439
- "type": "string"
4440
- },
4441
- "llmProvider": {
4442
- "type": "string"
4443
- },
4444
- "llmModel": {
4445
- "type": "string",
4446
- "optional": true
4447
- },
4448
- "sources": {
4449
- "type": "pushwoosh.vibeml.v1.VibeSource",
4450
- "array": true
4451
- }
4452
- }
4453
- },
4454
- "pushwoosh.vibeml.v1.VibeMlEditResponse": {
4455
- "type": "I",
4456
- "fields": {
4457
- "document": {
4458
- "type": "pushwoosh.vibeml.v1.VibeDocument"
4459
- },
4460
- "summary": {
4461
- "type": "string"
4462
- }
4463
- }
4464
- },
4465
- "pushwoosh.vibeml.v1.VibeMlRestyleRequest": {
4466
- "type": "I",
4467
- "fields": {
4468
- "style": {
4469
- "type": "pushwoosh.vibeml.v1.VibeDocument"
4470
- },
4471
- "content": {
4472
- "type": "pushwoosh.vibeml.v1.VibeDocument"
4473
- },
4474
- "application": {
4475
- "type": "string"
4476
- },
4477
- "llmProvider": {
4478
- "type": "string"
4479
- },
4480
- "llmModel": {
4481
- "type": "string",
4482
- "optional": true
4483
- }
4484
- }
4485
- },
4486
- "pushwoosh.vibeml.v1.VibeMlRestyleResponse": {
4487
- "type": "I",
4488
- "fields": {
4489
- "document": {
4490
- "type": "pushwoosh.vibeml.v1.VibeDocument"
4491
- },
4492
- "summary": {
4493
- "type": "string"
4494
- }
4495
- }
4496
- },
4497
- "pushwoosh.vibeml.v1.VibeReferenceImage": {
4498
- "type": "I",
4499
- "fields": {
4500
- "mediaType": {
4501
- "type": "string"
4502
- },
4503
- "data": {
4504
- "type": "string"
4505
- }
4506
- }
4507
- },
4508
- "pushwoosh.vibeml.v1.VibeMlExtractThemeRequest": {
4509
- "type": "I",
4510
- "fields": {
4511
- "image": {
4512
- "type": "pushwoosh.vibeml.v1.VibeReferenceImage",
4513
- "optional": true
4514
- },
4515
- "application": {
4516
- "type": "string"
4517
- },
4518
- "llmProvider": {
4519
- "type": "string"
4520
- },
4521
- "llmModel": {
4522
- "type": "string",
4523
- "optional": true
4524
- },
4525
- "sources": {
4526
- "type": "pushwoosh.vibeml.v1.VibeSource",
4527
- "array": true
4528
- },
4529
- "description": {
4530
- "type": "string"
4531
- },
4532
- "siteUrl": {
4533
- "type": "string"
4534
- }
4535
- }
4536
- },
4537
- "pushwoosh.vibeml.v1.VibeMlExtractThemeResponse": {
4538
- "type": "I",
4539
- "fields": {
4540
- "theme": {
4541
- "type": "pushwoosh.vibeml.v1.VibeTheme"
4542
- },
4543
- "logoUrl": {
4544
- "type": "string"
4545
- },
4546
- "brandVoice": {
4547
- "type": "string"
4548
- }
4549
- }
4550
- },
4551
- "pushwoosh.vibeml.v1.VibeMlTranslateRequest": {
4552
- "type": "I",
4553
- "fields": {
4554
- "application": {
4555
- "type": "string"
4556
- },
4557
- "texts": {
4558
- "type": "string",
4559
- "array": true
4560
- },
4561
- "targetLanguages": {
4562
- "type": "string",
4563
- "array": true
4564
- },
4565
- "context": {
4566
- "type": "string"
4567
- },
4568
- "llmProvider": {
4569
- "type": "string"
4570
- },
4571
- "llmModel": {
4572
- "type": "string",
4573
- "optional": true
4574
- }
4575
- }
4576
- },
4577
- "pushwoosh.vibeml.v1.VibeMlTranslatedTexts": {
4578
- "type": "I",
4579
- "fields": {
4580
- "texts": {
4581
- "type": "string",
4582
- "array": true
4583
- }
4584
- }
4585
- },
4586
- "pushwoosh.vibeml.v1.VibeMlTranslateResponse": {
4587
- "type": "I",
4588
- "fields": {
4589
- "translations": {
4590
- "type": "pushwoosh.vibeml.v1.VibeMlTranslatedTexts",
4591
- "mapKeyType": "string"
4592
- }
4593
- }
4594
4109
  }
4595
4110
  };