@cat-factory/contracts 0.335.0 → 0.337.0

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 (70) hide show
  1. package/dist/debug-api.d.ts +1 -1
  2. package/dist/entities.d.ts +14 -0
  3. package/dist/entities.d.ts.map +1 -1
  4. package/dist/entities.js +8 -0
  5. package/dist/entities.js.map +1 -1
  6. package/dist/environment-investigation.d.ts +212 -0
  7. package/dist/environment-investigation.d.ts.map +1 -0
  8. package/dist/environment-investigation.js +258 -0
  9. package/dist/environment-investigation.js.map +1 -0
  10. package/dist/environment-reachability.d.ts +246 -0
  11. package/dist/environment-reachability.d.ts.map +1 -0
  12. package/dist/environment-reachability.js +248 -0
  13. package/dist/environment-reachability.js.map +1 -0
  14. package/dist/environments.d.ts +282 -1
  15. package/dist/environments.d.ts.map +1 -1
  16. package/dist/environments.js +41 -0
  17. package/dist/environments.js.map +1 -1
  18. package/dist/execution.d.ts +38 -0
  19. package/dist/execution.d.ts.map +1 -1
  20. package/dist/execution.js +15 -0
  21. package/dist/execution.js.map +1 -1
  22. package/dist/frontend.d.ts +52 -1
  23. package/dist/frontend.d.ts.map +1 -1
  24. package/dist/frontend.js +69 -9
  25. package/dist/frontend.js.map +1 -1
  26. package/dist/index.d.ts +2 -0
  27. package/dist/index.d.ts.map +1 -1
  28. package/dist/index.js +2 -0
  29. package/dist/index.js.map +1 -1
  30. package/dist/provisioning-logs.d.ts +12 -5
  31. package/dist/provisioning-logs.d.ts.map +1 -1
  32. package/dist/provisioning-logs.js +10 -2
  33. package/dist/provisioning-logs.js.map +1 -1
  34. package/dist/requests.d.ts +2 -0
  35. package/dist/requests.d.ts.map +1 -1
  36. package/dist/routes/agent-runs.d.ts +8 -0
  37. package/dist/routes/agent-runs.d.ts.map +1 -1
  38. package/dist/routes/bug-hunt.d.ts +8 -0
  39. package/dist/routes/bug-hunt.d.ts.map +1 -1
  40. package/dist/routes/debug-api.d.ts +1 -1
  41. package/dist/routes/environmentUserHandlers.d.ts +6 -0
  42. package/dist/routes/environmentUserHandlers.d.ts.map +1 -1
  43. package/dist/routes/environments.d.ts +110 -0
  44. package/dist/routes/environments.d.ts.map +1 -1
  45. package/dist/routes/execution.d.ts +40 -0
  46. package/dist/routes/execution.d.ts.map +1 -1
  47. package/dist/routes/human-review.d.ts +4 -0
  48. package/dist/routes/human-review.d.ts.map +1 -1
  49. package/dist/routes/human-test.d.ts +20 -0
  50. package/dist/routes/human-test.d.ts.map +1 -1
  51. package/dist/routes/pipelines.d.ts +8 -0
  52. package/dist/routes/pipelines.d.ts.map +1 -1
  53. package/dist/routes/provisioning-logs.d.ts +1 -1
  54. package/dist/routes/public-evidence.d.ts +1 -0
  55. package/dist/routes/public-evidence.d.ts.map +1 -1
  56. package/dist/routes/visual-confirm.d.ts +12 -0
  57. package/dist/routes/visual-confirm.d.ts.map +1 -1
  58. package/dist/routes/workspaces.d.ts +10 -0
  59. package/dist/routes/workspaces.d.ts.map +1 -1
  60. package/dist/run-evidence.d.ts +8 -0
  61. package/dist/run-evidence.d.ts.map +1 -1
  62. package/dist/run-evidence.js +5 -1
  63. package/dist/run-evidence.js.map +1 -1
  64. package/dist/run-outcome.d.ts +58 -3
  65. package/dist/run-outcome.d.ts.map +1 -1
  66. package/dist/run-outcome.js +40 -3
  67. package/dist/run-outcome.js.map +1 -1
  68. package/dist/snapshot.d.ts +5 -0
  69. package/dist/snapshot.d.ts.map +1 -1
  70. package/package.json +1 -1
@@ -135,6 +135,7 @@ export declare const listEnvironmentUserHandlersContract: {
135
135
  }, undefined>, undefined>;
136
136
  readonly response: v.ObjectSchema<{
137
137
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
138
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
138
139
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
139
140
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
140
141
  readonly from: v.StringSchema<undefined>;
@@ -369,6 +370,7 @@ export declare const listEnvironmentUserHandlersContract: {
369
370
  }, undefined>, undefined>;
370
371
  readonly response: v.ObjectSchema<{
371
372
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
373
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
372
374
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
373
375
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
374
376
  readonly from: v.StringSchema<undefined>;
@@ -498,6 +500,7 @@ export declare const upsertEnvironmentUserHandlerContract: {
498
500
  }, undefined>, undefined>;
499
501
  readonly response: v.ObjectSchema<{
500
502
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
503
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
501
504
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
502
505
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
503
506
  readonly from: v.StringSchema<undefined>;
@@ -732,6 +735,7 @@ export declare const upsertEnvironmentUserHandlerContract: {
732
735
  }, undefined>, undefined>;
733
736
  readonly response: v.ObjectSchema<{
734
737
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
738
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
735
739
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
736
740
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
737
741
  readonly from: v.StringSchema<undefined>;
@@ -882,6 +886,7 @@ export declare const upsertEnvironmentUserHandlerContract: {
882
886
  }, undefined>, undefined>;
883
887
  readonly response: v.ObjectSchema<{
884
888
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
889
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
885
890
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
886
891
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
887
892
  readonly from: v.StringSchema<undefined>;
@@ -1116,6 +1121,7 @@ export declare const upsertEnvironmentUserHandlerContract: {
1116
1121
  }, undefined>, undefined>;
1117
1122
  readonly response: v.ObjectSchema<{
1118
1123
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1124
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1119
1125
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1120
1126
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
1121
1127
  readonly from: v.StringSchema<undefined>;
@@ -1 +1 @@
1
- {"version":3,"file":"environmentUserHandlers.d.ts","sourceRoot":"","sources":["../../src/routes/environmentUserHandlers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAE3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAwB5B,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9C,CAAA;AAEF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAS/C,CAAA;AAEF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ/C,CAAA"}
1
+ {"version":3,"file":"environmentUserHandlers.d.ts","sourceRoot":"","sources":["../../src/routes/environmentUserHandlers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAE3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAwB5B,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9C,CAAA;AAEF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAS/C,CAAA;AAEF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ/C,CAAA"}
@@ -126,6 +126,7 @@ export declare const getEnvironmentConnectionContract: {
126
126
  }, undefined>, undefined>;
127
127
  readonly response: v.ObjectSchema<{
128
128
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
129
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
129
130
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
130
131
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
131
132
  readonly from: v.StringSchema<undefined>;
@@ -485,6 +486,7 @@ export declare const getEnvironmentConnectionContract: {
485
486
  }, undefined>, undefined>;
486
487
  readonly response: v.ObjectSchema<{
487
488
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
489
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
488
490
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
489
491
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
490
492
  readonly from: v.StringSchema<undefined>;
@@ -605,6 +607,7 @@ export declare const registerEnvironmentProviderContract: {
605
607
  }, undefined>, undefined>;
606
608
  readonly response: v.ObjectSchema<{
607
609
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
610
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
608
611
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
609
612
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
610
613
  readonly from: v.StringSchema<undefined>;
@@ -964,6 +967,7 @@ export declare const registerEnvironmentProviderContract: {
964
967
  }, undefined>, undefined>;
965
968
  readonly response: v.ObjectSchema<{
966
969
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
970
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
967
971
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
968
972
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
969
973
  readonly from: v.StringSchema<undefined>;
@@ -1108,6 +1112,7 @@ export declare const registerEnvironmentProviderContract: {
1108
1112
  }, undefined>, undefined>;
1109
1113
  readonly response: v.ObjectSchema<{
1110
1114
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1115
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1111
1116
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1112
1117
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
1113
1118
  readonly from: v.StringSchema<undefined>;
@@ -1467,6 +1472,7 @@ export declare const registerEnvironmentProviderContract: {
1467
1472
  }, undefined>, undefined>;
1468
1473
  readonly response: v.ObjectSchema<{
1469
1474
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1475
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1470
1476
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1471
1477
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
1472
1478
  readonly from: v.StringSchema<undefined>;
@@ -1618,6 +1624,7 @@ export declare const updateEnvironmentSecretsContract: {
1618
1624
  }, undefined>, undefined>;
1619
1625
  readonly response: v.ObjectSchema<{
1620
1626
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1627
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1621
1628
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1622
1629
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
1623
1630
  readonly from: v.StringSchema<undefined>;
@@ -1977,6 +1984,7 @@ export declare const updateEnvironmentSecretsContract: {
1977
1984
  }, undefined>, undefined>;
1978
1985
  readonly response: v.ObjectSchema<{
1979
1986
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1987
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1980
1988
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1981
1989
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
1982
1990
  readonly from: v.StringSchema<undefined>;
@@ -2197,6 +2205,7 @@ export declare const testEnvironmentConnectionContract: {
2197
2205
  }, undefined>, undefined>;
2198
2206
  readonly response: v.ObjectSchema<{
2199
2207
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2208
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2200
2209
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2201
2210
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2202
2211
  readonly from: v.StringSchema<undefined>;
@@ -2556,6 +2565,7 @@ export declare const testEnvironmentConnectionContract: {
2556
2565
  }, undefined>, undefined>;
2557
2566
  readonly response: v.ObjectSchema<{
2558
2567
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2568
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2559
2569
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2560
2570
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2561
2571
  readonly from: v.StringSchema<undefined>;
@@ -3307,6 +3317,7 @@ export declare const listEnvironmentHandlersContract: {
3307
3317
  }, undefined>, undefined>;
3308
3318
  readonly response: v.ObjectSchema<{
3309
3319
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3320
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3310
3321
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3311
3322
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3312
3323
  readonly from: v.StringSchema<undefined>;
@@ -3541,6 +3552,7 @@ export declare const listEnvironmentHandlersContract: {
3541
3552
  }, undefined>, undefined>;
3542
3553
  readonly response: v.ObjectSchema<{
3543
3554
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3555
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3544
3556
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3545
3557
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3546
3558
  readonly from: v.StringSchema<undefined>;
@@ -3673,6 +3685,7 @@ export declare const registerEnvironmentHandlerContract: {
3673
3685
  }, undefined>, undefined>;
3674
3686
  readonly response: v.ObjectSchema<{
3675
3687
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3688
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3676
3689
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3677
3690
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3678
3691
  readonly from: v.StringSchema<undefined>;
@@ -3907,6 +3920,7 @@ export declare const registerEnvironmentHandlerContract: {
3907
3920
  }, undefined>, undefined>;
3908
3921
  readonly response: v.ObjectSchema<{
3909
3922
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3923
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3910
3924
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3911
3925
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3912
3926
  readonly from: v.StringSchema<undefined>;
@@ -4057,6 +4071,7 @@ export declare const registerEnvironmentHandlerContract: {
4057
4071
  }, undefined>, undefined>;
4058
4072
  readonly response: v.ObjectSchema<{
4059
4073
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4074
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4060
4075
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4061
4076
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4062
4077
  readonly from: v.StringSchema<undefined>;
@@ -4291,6 +4306,7 @@ export declare const registerEnvironmentHandlerContract: {
4291
4306
  }, undefined>, undefined>;
4292
4307
  readonly response: v.ObjectSchema<{
4293
4308
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4309
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4294
4310
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4295
4311
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4296
4312
  readonly from: v.StringSchema<undefined>;
@@ -4411,6 +4427,7 @@ export declare const testEnvironmentHandlerContract: {
4411
4427
  }, undefined>, undefined>;
4412
4428
  readonly response: v.ObjectSchema<{
4413
4429
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4430
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4414
4431
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4415
4432
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4416
4433
  readonly from: v.StringSchema<undefined>;
@@ -4645,6 +4662,7 @@ export declare const testEnvironmentHandlerContract: {
4645
4662
  }, undefined>, undefined>;
4646
4663
  readonly response: v.ObjectSchema<{
4647
4664
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4665
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4648
4666
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4649
4667
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4650
4668
  readonly from: v.StringSchema<undefined>;
@@ -4843,6 +4861,7 @@ export declare const updateEnvironmentHandlerSecretsContract: {
4843
4861
  }, undefined>, undefined>;
4844
4862
  readonly response: v.ObjectSchema<{
4845
4863
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4864
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4846
4865
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4847
4866
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4848
4867
  readonly from: v.StringSchema<undefined>;
@@ -5077,6 +5096,7 @@ export declare const updateEnvironmentHandlerSecretsContract: {
5077
5096
  }, undefined>, undefined>;
5078
5097
  readonly response: v.ObjectSchema<{
5079
5098
  readonly urlPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5099
+ readonly addressesPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5080
5100
  readonly statusPath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5081
5101
  readonly statusMap: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
5082
5102
  readonly from: v.StringSchema<undefined>;
@@ -5256,6 +5276,23 @@ export declare const listEnvironmentsContract: {
5256
5276
  readonly providerId: v.StringSchema<undefined>;
5257
5277
  readonly externalId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5258
5278
  readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5279
+ readonly reachability: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
5280
+ readonly candidates: v.ArraySchema<v.ObjectSchema<{
5281
+ readonly address: v.StringSchema<undefined>;
5282
+ readonly label: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5283
+ }, undefined>, undefined>;
5284
+ readonly proof: v.NullableSchema<v.ObjectSchema<{
5285
+ readonly state: v.PicklistSchema<["reached", "not_reached", "inconclusive", "unproved"], undefined>;
5286
+ readonly via: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5287
+ readonly reason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5288
+ readonly attempts: v.ArraySchema<v.ObjectSchema<{
5289
+ readonly target: v.StringSchema<undefined>;
5290
+ readonly outcome: v.StringSchema<undefined>;
5291
+ readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5292
+ }, undefined>, undefined>;
5293
+ readonly checkedAt: v.NumberSchema<undefined>;
5294
+ }, undefined>, undefined>;
5295
+ }, undefined>, undefined>, undefined>;
5259
5296
  readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
5260
5297
  readonly access: v.OptionalSchema<v.ObjectSchema<{
5261
5298
  readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
@@ -5268,6 +5305,7 @@ export declare const listEnvironmentsContract: {
5268
5305
  readonly createdAt: v.NumberSchema<undefined>;
5269
5306
  readonly expiresAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
5270
5307
  readonly lastError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5308
+ readonly statusNote: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
5271
5309
  readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "cloudflare", "custom", "infraless"], undefined>, undefined>, undefined>;
5272
5310
  readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "cloudflare", "remote-custom", "none"], undefined>, undefined>, undefined>;
5273
5311
  }, undefined>, undefined>;
@@ -5313,6 +5351,23 @@ export declare const getEnvironmentContract: {
5313
5351
  readonly providerId: v.StringSchema<undefined>;
5314
5352
  readonly externalId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5315
5353
  readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5354
+ readonly reachability: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
5355
+ readonly candidates: v.ArraySchema<v.ObjectSchema<{
5356
+ readonly address: v.StringSchema<undefined>;
5357
+ readonly label: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5358
+ }, undefined>, undefined>;
5359
+ readonly proof: v.NullableSchema<v.ObjectSchema<{
5360
+ readonly state: v.PicklistSchema<["reached", "not_reached", "inconclusive", "unproved"], undefined>;
5361
+ readonly via: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5362
+ readonly reason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5363
+ readonly attempts: v.ArraySchema<v.ObjectSchema<{
5364
+ readonly target: v.StringSchema<undefined>;
5365
+ readonly outcome: v.StringSchema<undefined>;
5366
+ readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5367
+ }, undefined>, undefined>;
5368
+ readonly checkedAt: v.NumberSchema<undefined>;
5369
+ }, undefined>, undefined>;
5370
+ }, undefined>, undefined>, undefined>;
5316
5371
  readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
5317
5372
  readonly access: v.OptionalSchema<v.ObjectSchema<{
5318
5373
  readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
@@ -5325,6 +5380,7 @@ export declare const getEnvironmentContract: {
5325
5380
  readonly createdAt: v.NumberSchema<undefined>;
5326
5381
  readonly expiresAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
5327
5382
  readonly lastError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5383
+ readonly statusNote: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
5328
5384
  readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "cloudflare", "custom", "infraless"], undefined>, undefined>, undefined>;
5329
5385
  readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "cloudflare", "remote-custom", "none"], undefined>, undefined>, undefined>;
5330
5386
  }, undefined>;
@@ -5370,6 +5426,23 @@ export declare const getEnvironmentAccessContract: {
5370
5426
  readonly providerId: v.StringSchema<undefined>;
5371
5427
  readonly externalId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5372
5428
  readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5429
+ readonly reachability: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
5430
+ readonly candidates: v.ArraySchema<v.ObjectSchema<{
5431
+ readonly address: v.StringSchema<undefined>;
5432
+ readonly label: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5433
+ }, undefined>, undefined>;
5434
+ readonly proof: v.NullableSchema<v.ObjectSchema<{
5435
+ readonly state: v.PicklistSchema<["reached", "not_reached", "inconclusive", "unproved"], undefined>;
5436
+ readonly via: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5437
+ readonly reason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5438
+ readonly attempts: v.ArraySchema<v.ObjectSchema<{
5439
+ readonly target: v.StringSchema<undefined>;
5440
+ readonly outcome: v.StringSchema<undefined>;
5441
+ readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5442
+ }, undefined>, undefined>;
5443
+ readonly checkedAt: v.NumberSchema<undefined>;
5444
+ }, undefined>, undefined>;
5445
+ }, undefined>, undefined>, undefined>;
5373
5446
  readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
5374
5447
  readonly access: v.OptionalSchema<v.ObjectSchema<{
5375
5448
  readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
@@ -5382,6 +5455,7 @@ export declare const getEnvironmentAccessContract: {
5382
5455
  readonly createdAt: v.NumberSchema<undefined>;
5383
5456
  readonly expiresAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
5384
5457
  readonly lastError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5458
+ readonly statusNote: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
5385
5459
  readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "cloudflare", "custom", "infraless"], undefined>, undefined>, undefined>;
5386
5460
  readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "cloudflare", "remote-custom", "none"], undefined>, undefined>, undefined>;
5387
5461
  }, undefined>;
@@ -5426,6 +5500,23 @@ export declare const provisionEnvironmentContract: {
5426
5500
  readonly providerId: v.StringSchema<undefined>;
5427
5501
  readonly externalId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5428
5502
  readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5503
+ readonly reachability: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
5504
+ readonly candidates: v.ArraySchema<v.ObjectSchema<{
5505
+ readonly address: v.StringSchema<undefined>;
5506
+ readonly label: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5507
+ }, undefined>, undefined>;
5508
+ readonly proof: v.NullableSchema<v.ObjectSchema<{
5509
+ readonly state: v.PicklistSchema<["reached", "not_reached", "inconclusive", "unproved"], undefined>;
5510
+ readonly via: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5511
+ readonly reason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5512
+ readonly attempts: v.ArraySchema<v.ObjectSchema<{
5513
+ readonly target: v.StringSchema<undefined>;
5514
+ readonly outcome: v.StringSchema<undefined>;
5515
+ readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5516
+ }, undefined>, undefined>;
5517
+ readonly checkedAt: v.NumberSchema<undefined>;
5518
+ }, undefined>, undefined>;
5519
+ }, undefined>, undefined>, undefined>;
5429
5520
  readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
5430
5521
  readonly access: v.OptionalSchema<v.ObjectSchema<{
5431
5522
  readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
@@ -5438,6 +5529,7 @@ export declare const provisionEnvironmentContract: {
5438
5529
  readonly createdAt: v.NumberSchema<undefined>;
5439
5530
  readonly expiresAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
5440
5531
  readonly lastError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5532
+ readonly statusNote: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
5441
5533
  readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "cloudflare", "custom", "infraless"], undefined>, undefined>, undefined>;
5442
5534
  readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "cloudflare", "remote-custom", "none"], undefined>, undefined>, undefined>;
5443
5535
  }, undefined>;
@@ -5484,6 +5576,23 @@ export declare const teardownEnvironmentContract: {
5484
5576
  readonly providerId: v.StringSchema<undefined>;
5485
5577
  readonly externalId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5486
5578
  readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5579
+ readonly reachability: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
5580
+ readonly candidates: v.ArraySchema<v.ObjectSchema<{
5581
+ readonly address: v.StringSchema<undefined>;
5582
+ readonly label: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5583
+ }, undefined>, undefined>;
5584
+ readonly proof: v.NullableSchema<v.ObjectSchema<{
5585
+ readonly state: v.PicklistSchema<["reached", "not_reached", "inconclusive", "unproved"], undefined>;
5586
+ readonly via: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5587
+ readonly reason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5588
+ readonly attempts: v.ArraySchema<v.ObjectSchema<{
5589
+ readonly target: v.StringSchema<undefined>;
5590
+ readonly outcome: v.StringSchema<undefined>;
5591
+ readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5592
+ }, undefined>, undefined>;
5593
+ readonly checkedAt: v.NumberSchema<undefined>;
5594
+ }, undefined>, undefined>;
5595
+ }, undefined>, undefined>, undefined>;
5487
5596
  readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
5488
5597
  readonly access: v.OptionalSchema<v.ObjectSchema<{
5489
5598
  readonly scheme: v.PicklistSchema<["none", "bearer", "basic", "custom_header"], undefined>;
@@ -5496,6 +5605,7 @@ export declare const teardownEnvironmentContract: {
5496
5605
  readonly createdAt: v.NumberSchema<undefined>;
5497
5606
  readonly expiresAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
5498
5607
  readonly lastError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
5608
+ readonly statusNote: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
5499
5609
  readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "cloudflare", "custom", "infraless"], undefined>, undefined>, undefined>;
5500
5610
  readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "cloudflare", "remote-custom", "none"], undefined>, undefined>, undefined>;
5501
5611
  }, undefined>;
@@ -1 +1 @@
1
- {"version":3,"file":"environments.d.ts","sourceRoot":"","sources":["../../src/routes/environments.ts"],"names":[],"mappings":"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AWF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI1C,CAAA;AAEF,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK7C,CAAA;AAKF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKzC,CAAA;AAEF,eAAO,MAAM,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOlD,CAAA;AAEF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/C,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM3C,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAInC,CAAA;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKjC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA;AAOF,mFAAmF;AACnF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,+DAA+D;AAC/D,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKrC,CAAA;AAEF,4FAA4F;AAC5F,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA"}
1
+ {"version":3,"file":"environments.d.ts","sourceRoot":"","sources":["../../src/routes/environments.ts"],"names":[],"mappings":"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KvC,CAAA;AAWF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI1C,CAAA;AAEF,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK7C,CAAA;AAKF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKzC,CAAA;AAEF,eAAO,MAAM,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOlD,CAAA;AAEF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/C,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM3C,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAInC,CAAA;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKjC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA;AAOF,mFAAmF;AACnF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,+DAA+D;AAC/D,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKrC,CAAA;AAEF,4FAA4F;AAC5F,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA"}