@vertesia/common 1.5.0-dev.20260826.064249Z → 1.5.0-dev.20260901.033115Z

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 (50) hide show
  1. package/lib/api-contract/components.generated.json +109 -7
  2. package/lib/api-schemas/agent-runs.d.ts +10 -0
  3. package/lib/api-schemas/agent-runs.d.ts.map +1 -1
  4. package/lib/api-schemas/app-runtime.d.ts +28 -0
  5. package/lib/api-schemas/app-runtime.d.ts.map +1 -1
  6. package/lib/api-schemas/content.d.ts +10 -0
  7. package/lib/api-schemas/content.d.ts.map +1 -1
  8. package/lib/api-schemas/document-processing.d.ts +6 -0
  9. package/lib/api-schemas/document-processing.d.ts.map +1 -1
  10. package/lib/api-schemas/events.d.ts +18 -0
  11. package/lib/api-schemas/events.d.ts.map +1 -1
  12. package/lib/api-schemas/integrations.d.ts +14 -0
  13. package/lib/api-schemas/integrations.d.ts.map +1 -1
  14. package/lib/api-schemas/integrations.js +10 -0
  15. package/lib/api-schemas/integrations.js.map +1 -1
  16. package/lib/api-schemas/interaction.d.ts +86 -0
  17. package/lib/api-schemas/interaction.d.ts.map +1 -1
  18. package/lib/api-schemas/process.d.ts.map +1 -1
  19. package/lib/api-schemas/process.js +9 -1
  20. package/lib/api-schemas/process.js.map +1 -1
  21. package/lib/api-schemas/project-configuration.d.ts +20 -0
  22. package/lib/api-schemas/project-configuration.d.ts.map +1 -1
  23. package/lib/api-schemas/project.d.ts +30 -0
  24. package/lib/api-schemas/project.d.ts.map +1 -1
  25. package/lib/api-schemas/registry.d.ts +318 -0
  26. package/lib/api-schemas/registry.d.ts.map +1 -1
  27. package/lib/api-schemas/store.d.ts +100 -0
  28. package/lib/api-schemas/store.d.ts.map +1 -1
  29. package/lib/api-schemas/workflow-runs.d.ts +4 -0
  30. package/lib/api-schemas/workflow-runs.d.ts.map +1 -1
  31. package/lib/integrations.d.ts +1 -1
  32. package/lib/integrations.d.ts.map +1 -1
  33. package/lib/store/dsl-workflow.d.ts +4 -0
  34. package/lib/store/dsl-workflow.d.ts.map +1 -1
  35. package/lib/store/dsl-workflow.js.map +1 -1
  36. package/lib/store/intake-policy-schema.generated.d.ts.map +1 -1
  37. package/lib/store/intake-policy-schema.generated.js +10 -0
  38. package/lib/store/intake-policy-schema.generated.js.map +1 -1
  39. package/lib/vertesia-common.js +2 -2
  40. package/lib/vertesia-common.js.map +1 -1
  41. package/package.json +3 -3
  42. package/src/api-contract/components.generated.json +109 -7
  43. package/src/api-schemas/integrations.ts +12 -0
  44. package/src/api-schemas/llumiverse.contract.test.ts +15 -0
  45. package/src/api-schemas/process.ts +9 -1
  46. package/src/api-schemas/project.contract.test.ts +19 -0
  47. package/src/api-schemas/zeno-response-contracts.test.ts +24 -0
  48. package/src/integrations.ts +1 -1
  49. package/src/store/dsl-workflow.ts +4 -0
  50. package/src/store/intake-policy-schema.generated.ts +10 -0
@@ -3454,6 +3454,11 @@
3454
3454
  "type": "string",
3455
3455
  "minLength": 1,
3456
3456
  "description": "Provider-defined processing tier. Unknown non-empty values are preserved for forward compatibility."
3457
+ },
3458
+ "extra_body": {
3459
+ "type": "object",
3460
+ "additionalProperties": true,
3461
+ "description": "Additional provider-specific fields merged into the OpenAI-compatible request body."
3457
3462
  }
3458
3463
  },
3459
3464
  "required": [
@@ -3522,6 +3527,11 @@
3522
3527
  "type": "string",
3523
3528
  "minLength": 1,
3524
3529
  "description": "Provider-defined processing tier. Unknown non-empty values are preserved for forward compatibility."
3530
+ },
3531
+ "extra_body": {
3532
+ "type": "object",
3533
+ "additionalProperties": true,
3534
+ "description": "Additional provider-specific fields merged into the OpenAI-compatible request body."
3525
3535
  }
3526
3536
  },
3527
3537
  "required": [
@@ -19084,6 +19094,17 @@
19084
19094
  "webhook_secret_hint": {
19085
19095
  "type": "string"
19086
19096
  },
19097
+ "webhook_secret": {
19098
+ "anyOf": [
19099
+ {
19100
+ "type": "string",
19101
+ "description": "Decrypted credential returned only to authenticated agent principals for runtime use. Human and service-account callers receive null; presence and hint fields report configuration status."
19102
+ },
19103
+ {
19104
+ "type": "null"
19105
+ }
19106
+ ]
19107
+ },
19087
19108
  "events": {
19088
19109
  "type": "array",
19089
19110
  "items": {
@@ -19102,7 +19123,8 @@
19102
19123
  },
19103
19124
  "required": [
19104
19125
  "integration",
19105
- "enabled"
19126
+ "enabled",
19127
+ "webhook_secret"
19106
19128
  ],
19107
19129
  "additionalProperties": false,
19108
19130
  "description": "Configuration for ask_user webhook notifications. Sends webhooks when agents call ask_user and when users respond."
@@ -19122,6 +19144,17 @@
19122
19144
  "api_key_hint": {
19123
19145
  "type": "string"
19124
19146
  },
19147
+ "api_key": {
19148
+ "anyOf": [
19149
+ {
19150
+ "type": "string",
19151
+ "description": "Decrypted credential returned only to authenticated agent principals for runtime use. Human and service-account callers receive null; presence and hint fields report configuration status."
19152
+ },
19153
+ {
19154
+ "type": "null"
19155
+ }
19156
+ ]
19157
+ },
19125
19158
  "email_domain": {
19126
19159
  "type": "string",
19127
19160
  "description": "Domain for email (both sending and receiving). Must be verified in Resend."
@@ -19136,6 +19169,17 @@
19136
19169
  "webhook_secret_hint": {
19137
19170
  "type": "string"
19138
19171
  },
19172
+ "webhook_secret": {
19173
+ "anyOf": [
19174
+ {
19175
+ "type": "string",
19176
+ "description": "Decrypted credential returned only to authenticated agent principals for runtime use. Human and service-account callers receive null; presence and hint fields report configuration status."
19177
+ },
19178
+ {
19179
+ "type": "null"
19180
+ }
19181
+ ]
19182
+ },
19139
19183
  "allowed_sender_domains": {
19140
19184
  "type": "array",
19141
19185
  "items": {
@@ -19155,7 +19199,9 @@
19155
19199
  "required": [
19156
19200
  "integration",
19157
19201
  "enabled",
19158
- "email_domain"
19202
+ "api_key",
19203
+ "email_domain",
19204
+ "webhook_secret"
19159
19205
  ],
19160
19206
  "additionalProperties": false
19161
19207
  },
@@ -19173,11 +19219,23 @@
19173
19219
  },
19174
19220
  "api_key_hint": {
19175
19221
  "type": "string"
19222
+ },
19223
+ "api_key": {
19224
+ "anyOf": [
19225
+ {
19226
+ "type": "string",
19227
+ "description": "Decrypted credential returned only to authenticated agent principals for runtime use. Human and service-account callers receive null; presence and hint fields report configuration status."
19228
+ },
19229
+ {
19230
+ "type": "null"
19231
+ }
19232
+ ]
19176
19233
  }
19177
19234
  },
19178
19235
  "required": [
19179
19236
  "integration",
19180
- "enabled"
19237
+ "enabled",
19238
+ "api_key"
19181
19239
  ],
19182
19240
  "additionalProperties": false
19183
19241
  },
@@ -19195,11 +19253,23 @@
19195
19253
  },
19196
19254
  "api_key_hint": {
19197
19255
  "type": "string"
19256
+ },
19257
+ "api_key": {
19258
+ "anyOf": [
19259
+ {
19260
+ "type": "string",
19261
+ "description": "Decrypted credential returned only to authenticated agent principals for runtime use. Human and service-account callers receive null; presence and hint fields report configuration status."
19262
+ },
19263
+ {
19264
+ "type": "null"
19265
+ }
19266
+ ]
19198
19267
  }
19199
19268
  },
19200
19269
  "required": [
19201
19270
  "integration",
19202
- "enabled"
19271
+ "enabled",
19272
+ "api_key"
19203
19273
  ],
19204
19274
  "additionalProperties": false
19205
19275
  },
@@ -19218,13 +19288,25 @@
19218
19288
  "api_key_hint": {
19219
19289
  "type": "string"
19220
19290
  },
19291
+ "api_key": {
19292
+ "anyOf": [
19293
+ {
19294
+ "type": "string",
19295
+ "description": "Decrypted credential returned only to authenticated agent principals for runtime use. Human and service-account callers receive null; presence and hint fields report configuration status."
19296
+ },
19297
+ {
19298
+ "type": "null"
19299
+ }
19300
+ ]
19301
+ },
19221
19302
  "url": {
19222
19303
  "type": "string"
19223
19304
  }
19224
19305
  },
19225
19306
  "required": [
19226
19307
  "integration",
19227
- "enabled"
19308
+ "enabled",
19309
+ "api_key"
19228
19310
  ],
19229
19311
  "additionalProperties": false
19230
19312
  },
@@ -19274,13 +19356,25 @@
19274
19356
  "api_key_hint": {
19275
19357
  "type": "string"
19276
19358
  },
19359
+ "api_key": {
19360
+ "anyOf": [
19361
+ {
19362
+ "type": "string",
19363
+ "description": "Decrypted credential returned only to authenticated agent principals for runtime use. Human and service-account callers receive null; presence and hint fields report configuration status."
19364
+ },
19365
+ {
19366
+ "type": "null"
19367
+ }
19368
+ ]
19369
+ },
19277
19370
  "url": {
19278
19371
  "type": "string"
19279
19372
  }
19280
19373
  },
19281
19374
  "required": [
19282
19375
  "integration",
19283
- "enabled"
19376
+ "enabled",
19377
+ "api_key"
19284
19378
  ],
19285
19379
  "additionalProperties": false
19286
19380
  },
@@ -24618,11 +24712,19 @@
24618
24712
  "type": {
24619
24713
  "type": "string",
24620
24714
  "const": "workflow",
24621
- "description": "The type fo the step. If not set defaults to \"activity\""
24715
+ "description": "Identifies this step as a child workflow"
24622
24716
  },
24623
24717
  "name": {
24624
24718
  "type": "string"
24625
24719
  },
24720
+ "title": {
24721
+ "type": "string",
24722
+ "description": "Title of the child workflow to be displayed in the UI workflow builder"
24723
+ },
24724
+ "description": {
24725
+ "type": "string",
24726
+ "description": "Description of the child workflow displayed in the UI workflow builder"
24727
+ },
24626
24728
  "vars": {
24627
24729
  "type": "object",
24628
24730
  "additionalProperties": true,
@@ -467,6 +467,7 @@ export declare const AutonomousRunResponseSchema: z.ZodObject<{
467
467
  }>>;
468
468
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
469
469
  service_tier: z.ZodOptional<z.ZodString>;
470
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
470
471
  }, z.core.$strict>, z.ZodObject<{
471
472
  _option_id: z.ZodLiteral<"openai-text">;
472
473
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -500,6 +501,7 @@ export declare const AutonomousRunResponseSchema: z.ZodObject<{
500
501
  }>>;
501
502
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
502
503
  service_tier: z.ZodOptional<z.ZodString>;
504
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
503
505
  }, z.core.$strict>, z.ZodObject<{
504
506
  _option_id: z.ZodLiteral<"openai-dalle">;
505
507
  size: z.ZodOptional<z.ZodEnum<{
@@ -1225,6 +1227,7 @@ export declare const AgentRunSchema: z.ZodObject<{
1225
1227
  }>>;
1226
1228
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
1227
1229
  service_tier: z.ZodOptional<z.ZodString>;
1230
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1228
1231
  }, z.core.$strict>, z.ZodObject<{
1229
1232
  _option_id: z.ZodLiteral<"openai-text">;
1230
1233
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -1258,6 +1261,7 @@ export declare const AgentRunSchema: z.ZodObject<{
1258
1261
  }>>;
1259
1262
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
1260
1263
  service_tier: z.ZodOptional<z.ZodString>;
1264
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1261
1265
  }, z.core.$strict>, z.ZodObject<{
1262
1266
  _option_id: z.ZodLiteral<"openai-dalle">;
1263
1267
  size: z.ZodOptional<z.ZodEnum<{
@@ -1983,6 +1987,7 @@ export declare const CreateAgentRunPayloadSchema: z.ZodObject<{
1983
1987
  }>>;
1984
1988
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
1985
1989
  service_tier: z.ZodOptional<z.ZodString>;
1990
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1986
1991
  }, z.core.$strict>, z.ZodObject<{
1987
1992
  _option_id: z.ZodLiteral<"openai-text">;
1988
1993
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -2016,6 +2021,7 @@ export declare const CreateAgentRunPayloadSchema: z.ZodObject<{
2016
2021
  }>>;
2017
2022
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
2018
2023
  service_tier: z.ZodOptional<z.ZodString>;
2024
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2019
2025
  }, z.core.$strict>, z.ZodObject<{
2020
2026
  _option_id: z.ZodLiteral<"openai-dalle">;
2021
2027
  size: z.ZodOptional<z.ZodEnum<{
@@ -2739,6 +2745,7 @@ export declare const CreateRunPayloadSchema: z.ZodUnion<readonly [z.ZodObject<{
2739
2745
  }>>;
2740
2746
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
2741
2747
  service_tier: z.ZodOptional<z.ZodString>;
2748
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2742
2749
  }, z.core.$strict>, z.ZodObject<{
2743
2750
  _option_id: z.ZodLiteral<"openai-text">;
2744
2751
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -2772,6 +2779,7 @@ export declare const CreateRunPayloadSchema: z.ZodUnion<readonly [z.ZodObject<{
2772
2779
  }>>;
2773
2780
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
2774
2781
  service_tier: z.ZodOptional<z.ZodString>;
2782
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2775
2783
  }, z.core.$strict>, z.ZodObject<{
2776
2784
  _option_id: z.ZodLiteral<"openai-dalle">;
2777
2785
  size: z.ZodOptional<z.ZodEnum<{
@@ -4302,6 +4310,7 @@ export declare const AgentRunInternalsSchema: z.ZodObject<{
4302
4310
  }>>;
4303
4311
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
4304
4312
  service_tier: z.ZodOptional<z.ZodString>;
4313
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
4305
4314
  }, z.core.$strict>, z.ZodObject<{
4306
4315
  _option_id: z.ZodLiteral<"openai-text">;
4307
4316
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -4335,6 +4344,7 @@ export declare const AgentRunInternalsSchema: z.ZodObject<{
4335
4344
  }>>;
4336
4345
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
4337
4346
  service_tier: z.ZodOptional<z.ZodString>;
4347
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
4338
4348
  }, z.core.$strict>, z.ZodObject<{
4339
4349
  _option_id: z.ZodLiteral<"openai-dalle">;
4340
4350
  size: z.ZodOptional<z.ZodEnum<{
@@ -1 +1 @@
1
- {"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/api-schemas/agent-runs.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AACnF,OAAO,EAAE,KAAK,UAAU,EAAkD,MAAM,0BAA0B,CAAC;AA0H3G,eAAO,MAAM,gBAAgB,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,CAOpB,CAAC;AAEhC,eAAO,MAAM,8BAA8B;;kBAIE,CAAC;AAE9C,eAAO,MAAM,+BAA+B;;;;kBAME,CAAC;AAE/C,eAAO,MAAM,sBAAsB,EAuBzB,CAAC,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC;AAEtC,eAAO,MAAM,+BAA+B,yBAAgE,CAAC;AAE7G,eAAO,MAAM,wCAAwC;;;kBAKiE,CAAC;AAEvH,eAAO,MAAM,uCAAuC;;;kBAKiE,CAAC;AAEtH,eAAO,MAAM,+BAA+B;;;kBAK0D,CAAC;AAEvG,eAAO,MAAM,wBAAwB,gCAInC,CAAC;AAIH,eAAO,MAAM,gCAAgC;;kBAIyD,CAAC;AAEvG,eAAO,MAAM,0BAA0B,EAGjC,CAAC,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC;AAEtC,eAAO,MAAM,0BAA0B;;;;;;EAIrC,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;kBAYE,CAAC;AAEjC,eAAO,MAAM,kCAAkC;;;;kBASzC,CAAC;AAEP,eAAO,MAAM,8BAA8B;;;kBAKoE,CAAC;AAEhH,eAAO,MAAM,yBAAyB;;;kBAK6D,CAAC;AAIpG,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;kBA+BgF,CAAC;AAEpH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAkJlC,CAAC;AAEP,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
1
+ {"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/api-schemas/agent-runs.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AACnF,OAAO,EAAE,KAAK,UAAU,EAAkD,MAAM,0BAA0B,CAAC;AA0H3G,eAAO,MAAM,gBAAgB,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,CAOpB,CAAC;AAEhC,eAAO,MAAM,8BAA8B;;kBAIE,CAAC;AAE9C,eAAO,MAAM,+BAA+B;;;;kBAME,CAAC;AAE/C,eAAO,MAAM,sBAAsB,EAuBzB,CAAC,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC;AAEtC,eAAO,MAAM,+BAA+B,yBAAgE,CAAC;AAE7G,eAAO,MAAM,wCAAwC;;;kBAKiE,CAAC;AAEvH,eAAO,MAAM,uCAAuC;;;kBAKiE,CAAC;AAEtH,eAAO,MAAM,+BAA+B;;;kBAK0D,CAAC;AAEvG,eAAO,MAAM,wBAAwB,gCAInC,CAAC;AAIH,eAAO,MAAM,gCAAgC;;kBAIyD,CAAC;AAEvG,eAAO,MAAM,0BAA0B,EAGjC,CAAC,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC;AAEtC,eAAO,MAAM,0BAA0B;;;;;;EAIrC,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;kBAYE,CAAC;AAEjC,eAAO,MAAM,kCAAkC;;;;kBASzC,CAAC;AAEP,eAAO,MAAM,8BAA8B;;;kBAKoE,CAAC;AAEhH,eAAO,MAAM,yBAAyB;;;kBAK6D,CAAC;AAIpG,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;kBA+BgF,CAAC;AAEpH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAkJlC,CAAC;AAEP,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
@@ -1119,6 +1119,7 @@ export declare const InCodeTypeDefinitionArraySchema: z.ZodArray<z.ZodObject<{
1119
1119
  }>>;
1120
1120
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
1121
1121
  service_tier: z.ZodOptional<z.ZodString>;
1122
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1122
1123
  }, z.core.$strict>, z.ZodObject<{
1123
1124
  _option_id: z.ZodLiteral<"openai-text">;
1124
1125
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -1152,6 +1153,7 @@ export declare const InCodeTypeDefinitionArraySchema: z.ZodArray<z.ZodObject<{
1152
1153
  }>>;
1153
1154
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
1154
1155
  service_tier: z.ZodOptional<z.ZodString>;
1156
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1155
1157
  }, z.core.$strict>, z.ZodObject<{
1156
1158
  _option_id: z.ZodLiteral<"openai-dalle">;
1157
1159
  size: z.ZodOptional<z.ZodEnum<{
@@ -1681,6 +1683,7 @@ export declare const InCodeTypeDefinitionArraySchema: z.ZodArray<z.ZodObject<{
1681
1683
  }>>;
1682
1684
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
1683
1685
  service_tier: z.ZodOptional<z.ZodString>;
1686
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1684
1687
  }, z.core.$strict>, z.ZodObject<{
1685
1688
  _option_id: z.ZodLiteral<"openai-text">;
1686
1689
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -1714,6 +1717,7 @@ export declare const InCodeTypeDefinitionArraySchema: z.ZodArray<z.ZodObject<{
1714
1717
  }>>;
1715
1718
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
1716
1719
  service_tier: z.ZodOptional<z.ZodString>;
1720
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1717
1721
  }, z.core.$strict>, z.ZodObject<{
1718
1722
  _option_id: z.ZodLiteral<"openai-dalle">;
1719
1723
  size: z.ZodOptional<z.ZodEnum<{
@@ -2279,6 +2283,7 @@ export declare const InCodeTypeDefinitionArraySchema: z.ZodArray<z.ZodObject<{
2279
2283
  }>>;
2280
2284
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
2281
2285
  service_tier: z.ZodOptional<z.ZodString>;
2286
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2282
2287
  }, z.core.$strict>, z.ZodObject<{
2283
2288
  _option_id: z.ZodLiteral<"openai-text">;
2284
2289
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -2312,6 +2317,7 @@ export declare const InCodeTypeDefinitionArraySchema: z.ZodArray<z.ZodObject<{
2312
2317
  }>>;
2313
2318
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
2314
2319
  service_tier: z.ZodOptional<z.ZodString>;
2320
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2315
2321
  }, z.core.$strict>, z.ZodObject<{
2316
2322
  _option_id: z.ZodLiteral<"openai-dalle">;
2317
2323
  size: z.ZodOptional<z.ZodEnum<{
@@ -2830,6 +2836,7 @@ export declare const InCodeTypeDefinitionArraySchema: z.ZodArray<z.ZodObject<{
2830
2836
  }>>;
2831
2837
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
2832
2838
  service_tier: z.ZodOptional<z.ZodString>;
2839
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2833
2840
  }, z.core.$strict>, z.ZodObject<{
2834
2841
  _option_id: z.ZodLiteral<"openai-text">;
2835
2842
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -2863,6 +2870,7 @@ export declare const InCodeTypeDefinitionArraySchema: z.ZodArray<z.ZodObject<{
2863
2870
  }>>;
2864
2871
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
2865
2872
  service_tier: z.ZodOptional<z.ZodString>;
2873
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2866
2874
  }, z.core.$strict>, z.ZodObject<{
2867
2875
  _option_id: z.ZodLiteral<"openai-dalle">;
2868
2876
  size: z.ZodOptional<z.ZodEnum<{
@@ -3386,6 +3394,7 @@ export declare const InCodeTypeDefinitionArraySchema: z.ZodArray<z.ZodObject<{
3386
3394
  }>>;
3387
3395
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
3388
3396
  service_tier: z.ZodOptional<z.ZodString>;
3397
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3389
3398
  }, z.core.$strict>, z.ZodObject<{
3390
3399
  _option_id: z.ZodLiteral<"openai-text">;
3391
3400
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -3419,6 +3428,7 @@ export declare const InCodeTypeDefinitionArraySchema: z.ZodArray<z.ZodObject<{
3419
3428
  }>>;
3420
3429
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
3421
3430
  service_tier: z.ZodOptional<z.ZodString>;
3431
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3422
3432
  }, z.core.$strict>, z.ZodObject<{
3423
3433
  _option_id: z.ZodLiteral<"openai-dalle">;
3424
3434
  size: z.ZodOptional<z.ZodEnum<{
@@ -6335,6 +6345,7 @@ export declare const AppEventSubscriptionDefinitionSchema: z.ZodObject<{
6335
6345
  }>>;
6336
6346
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
6337
6347
  service_tier: z.ZodOptional<z.ZodString>;
6348
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6338
6349
  }, z.core.$strict>, z.ZodObject<{
6339
6350
  _option_id: z.ZodLiteral<"openai-text">;
6340
6351
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -6368,6 +6379,7 @@ export declare const AppEventSubscriptionDefinitionSchema: z.ZodObject<{
6368
6379
  }>>;
6369
6380
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
6370
6381
  service_tier: z.ZodOptional<z.ZodString>;
6382
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6371
6383
  }, z.core.$strict>, z.ZodObject<{
6372
6384
  _option_id: z.ZodLiteral<"openai-dalle">;
6373
6385
  size: z.ZodOptional<z.ZodEnum<{
@@ -6893,6 +6905,7 @@ export declare const AppEventSubscriptionDefinitionSchema: z.ZodObject<{
6893
6905
  }>>;
6894
6906
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
6895
6907
  service_tier: z.ZodOptional<z.ZodString>;
6908
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6896
6909
  }, z.core.$strict>, z.ZodObject<{
6897
6910
  _option_id: z.ZodLiteral<"openai-text">;
6898
6911
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -6926,6 +6939,7 @@ export declare const AppEventSubscriptionDefinitionSchema: z.ZodObject<{
6926
6939
  }>>;
6927
6940
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
6928
6941
  service_tier: z.ZodOptional<z.ZodString>;
6942
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6929
6943
  }, z.core.$strict>, z.ZodObject<{
6930
6944
  _option_id: z.ZodLiteral<"openai-dalle">;
6931
6945
  size: z.ZodOptional<z.ZodEnum<{
@@ -7615,6 +7629,7 @@ export declare const AppPackageSchema: z.ZodObject<{
7615
7629
  }>>;
7616
7630
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
7617
7631
  service_tier: z.ZodOptional<z.ZodString>;
7632
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
7618
7633
  }, z.core.$strict>, z.ZodObject<{
7619
7634
  _option_id: z.ZodLiteral<"openai-text">;
7620
7635
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -7648,6 +7663,7 @@ export declare const AppPackageSchema: z.ZodObject<{
7648
7663
  }>>;
7649
7664
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
7650
7665
  service_tier: z.ZodOptional<z.ZodString>;
7666
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
7651
7667
  }, z.core.$strict>, z.ZodObject<{
7652
7668
  _option_id: z.ZodLiteral<"openai-dalle">;
7653
7669
  size: z.ZodOptional<z.ZodEnum<{
@@ -8177,6 +8193,7 @@ export declare const AppPackageSchema: z.ZodObject<{
8177
8193
  }>>;
8178
8194
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
8179
8195
  service_tier: z.ZodOptional<z.ZodString>;
8196
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8180
8197
  }, z.core.$strict>, z.ZodObject<{
8181
8198
  _option_id: z.ZodLiteral<"openai-text">;
8182
8199
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -8210,6 +8227,7 @@ export declare const AppPackageSchema: z.ZodObject<{
8210
8227
  }>>;
8211
8228
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
8212
8229
  service_tier: z.ZodOptional<z.ZodString>;
8230
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8213
8231
  }, z.core.$strict>, z.ZodObject<{
8214
8232
  _option_id: z.ZodLiteral<"openai-dalle">;
8215
8233
  size: z.ZodOptional<z.ZodEnum<{
@@ -8775,6 +8793,7 @@ export declare const AppPackageSchema: z.ZodObject<{
8775
8793
  }>>;
8776
8794
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
8777
8795
  service_tier: z.ZodOptional<z.ZodString>;
8796
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8778
8797
  }, z.core.$strict>, z.ZodObject<{
8779
8798
  _option_id: z.ZodLiteral<"openai-text">;
8780
8799
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -8808,6 +8827,7 @@ export declare const AppPackageSchema: z.ZodObject<{
8808
8827
  }>>;
8809
8828
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
8810
8829
  service_tier: z.ZodOptional<z.ZodString>;
8830
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
8811
8831
  }, z.core.$strict>, z.ZodObject<{
8812
8832
  _option_id: z.ZodLiteral<"openai-dalle">;
8813
8833
  size: z.ZodOptional<z.ZodEnum<{
@@ -9326,6 +9346,7 @@ export declare const AppPackageSchema: z.ZodObject<{
9326
9346
  }>>;
9327
9347
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
9328
9348
  service_tier: z.ZodOptional<z.ZodString>;
9349
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
9329
9350
  }, z.core.$strict>, z.ZodObject<{
9330
9351
  _option_id: z.ZodLiteral<"openai-text">;
9331
9352
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -9359,6 +9380,7 @@ export declare const AppPackageSchema: z.ZodObject<{
9359
9380
  }>>;
9360
9381
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
9361
9382
  service_tier: z.ZodOptional<z.ZodString>;
9383
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
9362
9384
  }, z.core.$strict>, z.ZodObject<{
9363
9385
  _option_id: z.ZodLiteral<"openai-dalle">;
9364
9386
  size: z.ZodOptional<z.ZodEnum<{
@@ -9882,6 +9904,7 @@ export declare const AppPackageSchema: z.ZodObject<{
9882
9904
  }>>;
9883
9905
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
9884
9906
  service_tier: z.ZodOptional<z.ZodString>;
9907
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
9885
9908
  }, z.core.$strict>, z.ZodObject<{
9886
9909
  _option_id: z.ZodLiteral<"openai-text">;
9887
9910
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -9915,6 +9938,7 @@ export declare const AppPackageSchema: z.ZodObject<{
9915
9938
  }>>;
9916
9939
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
9917
9940
  service_tier: z.ZodOptional<z.ZodString>;
9941
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
9918
9942
  }, z.core.$strict>, z.ZodObject<{
9919
9943
  _option_id: z.ZodLiteral<"openai-dalle">;
9920
9944
  size: z.ZodOptional<z.ZodEnum<{
@@ -11187,6 +11211,7 @@ export declare const AppPackageSchema: z.ZodObject<{
11187
11211
  }>>;
11188
11212
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
11189
11213
  service_tier: z.ZodOptional<z.ZodString>;
11214
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
11190
11215
  }, z.core.$strict>, z.ZodObject<{
11191
11216
  _option_id: z.ZodLiteral<"openai-text">;
11192
11217
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -11220,6 +11245,7 @@ export declare const AppPackageSchema: z.ZodObject<{
11220
11245
  }>>;
11221
11246
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
11222
11247
  service_tier: z.ZodOptional<z.ZodString>;
11248
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
11223
11249
  }, z.core.$strict>, z.ZodObject<{
11224
11250
  _option_id: z.ZodLiteral<"openai-dalle">;
11225
11251
  size: z.ZodOptional<z.ZodEnum<{
@@ -11745,6 +11771,7 @@ export declare const AppPackageSchema: z.ZodObject<{
11745
11771
  }>>;
11746
11772
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
11747
11773
  service_tier: z.ZodOptional<z.ZodString>;
11774
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
11748
11775
  }, z.core.$strict>, z.ZodObject<{
11749
11776
  _option_id: z.ZodLiteral<"openai-text">;
11750
11777
  max_tokens: z.ZodOptional<z.ZodNumber>;
@@ -11778,6 +11805,7 @@ export declare const AppPackageSchema: z.ZodObject<{
11778
11805
  }>>;
11779
11806
  include_thoughts: z.ZodOptional<z.ZodBoolean>;
11780
11807
  service_tier: z.ZodOptional<z.ZodString>;
11808
+ extra_body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
11781
11809
  }, z.core.$strict>, z.ZodObject<{
11782
11810
  _option_id: z.ZodLiteral<"openai-dalle">;
11783
11811
  size: z.ZodOptional<z.ZodEnum<{
@@ -1 +1 @@
1
- {"version":3,"file":"app-runtime.d.ts","sourceRoot":"","sources":["../../src/api-schemas/app-runtime.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,YAAY,CAAC;AAE1D,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AAuCnE,eAAO,MAAM,wBAAwB,yBAAyD,CAAC;AAE/F,eAAO,MAAM,wBAAwB,aAAkE,CAAC;AAExG,eAAO,MAAM,oCAAoC;;;;kBAgB3C,CAAC;AAEP,eAAO,MAAM,uBAAuB;;kBAQ9B,CAAC;AAEP,eAAO,MAAM,4BAA4B;;;kBAQE,CAAC;AAE5C,eAAO,MAAM,gCAAgC;;kBAOwD,CAAC;AAEtG,eAAO,MAAM,kCAAkC;;;EAE6C,CAAC;AAE7F,eAAO,MAAM,gCAAgC;;;;;;EAI3C,CAAC;AAEH,eAAO,MAAM,mCAAmC;;kBAI4D,CAAC;AAE7G,eAAO,MAAM,iCAAiC;;;;kBAYxC,CAAC;AAEP,eAAO,MAAM,kCAAkC;;;;;kBA4BkE,CAAC;AAElH,eAAO,MAAM,oCAAoC;;;kBAc3C,CAAC;AAEP,eAAO,MAAM,8BAA8B;;;;;;EAEiE,CAAC;AAE7G,eAAO,MAAM,+BAA+B;;;;kBAsBtC,CAAC;AAEP,eAAO,MAAM,+BAA+B;;;;;;kBAkBtC,CAAC;AAEP,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;oBAAgF,CAAC;AAErH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAYjC,CAAC;AAEP,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAqB3C,CAAC;AAEP,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAoDE,CAAC;AAEhC,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAgEE,CAAC"}
1
+ {"version":3,"file":"app-runtime.d.ts","sourceRoot":"","sources":["../../src/api-schemas/app-runtime.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,YAAY,CAAC;AAE1D,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AAuCnE,eAAO,MAAM,wBAAwB,yBAAyD,CAAC;AAE/F,eAAO,MAAM,wBAAwB,aAAkE,CAAC;AAExG,eAAO,MAAM,oCAAoC;;;;kBAgB3C,CAAC;AAEP,eAAO,MAAM,uBAAuB;;kBAQ9B,CAAC;AAEP,eAAO,MAAM,4BAA4B;;;kBAQE,CAAC;AAE5C,eAAO,MAAM,gCAAgC;;kBAOwD,CAAC;AAEtG,eAAO,MAAM,kCAAkC;;;EAE6C,CAAC;AAE7F,eAAO,MAAM,gCAAgC;;;;;;EAI3C,CAAC;AAEH,eAAO,MAAM,mCAAmC;;kBAI4D,CAAC;AAE7G,eAAO,MAAM,iCAAiC;;;;kBAYxC,CAAC;AAEP,eAAO,MAAM,kCAAkC;;;;;kBA4BkE,CAAC;AAElH,eAAO,MAAM,oCAAoC;;;kBAc3C,CAAC;AAEP,eAAO,MAAM,8BAA8B;;;;;;EAEiE,CAAC;AAE7G,eAAO,MAAM,+BAA+B;;;;kBAsBtC,CAAC;AAEP,eAAO,MAAM,+BAA+B;;;;;;kBAkBtC,CAAC;AAEP,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;oBAAgF,CAAC;AAErH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAYjC,CAAC;AAEP,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAqB3C,CAAC;AAEP,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAoDE,CAAC;AAEhC,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAgEE,CAAC"}