@kaitranntt/ccs 6.7.0 → 6.7.1-dev.2
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/README.md +45 -23
- package/dist/api/index.d.ts +7 -0
- package/dist/api/index.d.ts.map +1 -0
- package/dist/api/index.js +24 -0
- package/dist/api/index.js.map +1 -0
- package/dist/api/services/index.d.ts +10 -0
- package/dist/api/services/index.d.ts.map +1 -0
- package/dist/api/services/index.js +26 -0
- package/dist/api/services/index.js.map +1 -0
- package/dist/api/services/profile-reader.d.ts +28 -0
- package/dist/api/services/profile-reader.d.ts.map +1 -0
- package/dist/api/services/profile-reader.js +148 -0
- package/dist/api/services/profile-reader.js.map +1 -0
- package/dist/api/services/profile-types.d.ts +42 -0
- package/dist/api/services/profile-types.d.ts.map +1 -0
- package/dist/api/services/profile-types.js +8 -0
- package/dist/api/services/profile-types.js.map +1 -0
- package/dist/api/services/profile-writer.d.ts +6 -0
- package/dist/api/services/profile-writer.d.ts.map +1 -0
- package/dist/api/services/profile-writer.js +176 -0
- package/dist/api/services/profile-writer.js.map +1 -0
- package/dist/api/services/validation-service.d.ts +26 -0
- package/dist/api/services/validation-service.d.ts.map +1 -0
- package/dist/api/services/validation-service.js +77 -0
- package/dist/api/services/validation-service.js.map +1 -0
- package/dist/auth/auth-commands.d.ts +16 -22
- package/dist/auth/auth-commands.d.ts.map +1 -1
- package/dist/auth/auth-commands.js +29 -467
- package/dist/auth/auth-commands.js.map +1 -1
- package/dist/auth/commands/create-command.d.ts +11 -0
- package/dist/auth/commands/create-command.d.ts.map +1 -0
- package/dist/auth/commands/create-command.js +137 -0
- package/dist/auth/commands/create-command.js.map +1 -0
- package/dist/auth/commands/default-command.d.ts +15 -0
- package/dist/auth/commands/default-command.d.ts.map +1 -0
- package/dist/auth/commands/default-command.js +71 -0
- package/dist/auth/commands/default-command.js.map +1 -0
- package/dist/auth/commands/index.d.ts +12 -0
- package/dist/auth/commands/index.d.ts.map +1 -0
- package/dist/auth/commands/index.js +25 -0
- package/dist/auth/commands/index.js.map +1 -0
- package/dist/auth/commands/list-command.d.ts +11 -0
- package/dist/auth/commands/list-command.d.ts.map +1 -0
- package/dist/auth/commands/list-command.js +124 -0
- package/dist/auth/commands/list-command.js.map +1 -0
- package/dist/auth/commands/remove-command.d.ts +11 -0
- package/dist/auth/commands/remove-command.d.ts.map +1 -0
- package/dist/auth/commands/remove-command.js +102 -0
- package/dist/auth/commands/remove-command.js.map +1 -0
- package/dist/auth/commands/show-command.d.ts +11 -0
- package/dist/auth/commands/show-command.d.ts.map +1 -0
- package/dist/auth/commands/show-command.js +103 -0
- package/dist/auth/commands/show-command.js.map +1 -0
- package/dist/auth/commands/types.d.ts +50 -0
- package/dist/auth/commands/types.d.ts.map +1 -0
- package/dist/auth/commands/types.js +26 -0
- package/dist/auth/commands/types.js.map +1 -0
- package/dist/auth/index.d.ts +8 -0
- package/dist/auth/index.d.ts.map +1 -0
- package/dist/auth/index.js +16 -0
- package/dist/auth/index.js.map +1 -0
- package/dist/auth/profile-detector.d.ts +0 -5
- package/dist/auth/profile-detector.d.ts.map +1 -1
- package/dist/auth/profile-detector.js +1 -9
- package/dist/auth/profile-detector.js.map +1 -1
- package/dist/auth/profile-registry.d.ts +0 -4
- package/dist/auth/profile-registry.d.ts.map +1 -1
- package/dist/auth/profile-registry.js +3 -10
- package/dist/auth/profile-registry.js.map +1 -1
- package/dist/ccs.js +21 -4
- package/dist/ccs.js.map +1 -1
- package/dist/cliproxy/auth/auth-types.d.ts +85 -0
- package/dist/cliproxy/auth/auth-types.d.ts.map +1 -0
- package/dist/cliproxy/auth/auth-types.js +100 -0
- package/dist/cliproxy/auth/auth-types.js.map +1 -0
- package/dist/cliproxy/auth/environment-detector.d.ts +30 -0
- package/dist/cliproxy/auth/environment-detector.d.ts.map +1 -0
- package/dist/cliproxy/auth/environment-detector.js +124 -0
- package/dist/cliproxy/auth/environment-detector.js.map +1 -0
- package/dist/cliproxy/auth/index.d.ts +11 -0
- package/dist/cliproxy/auth/index.d.ts.map +1 -0
- package/dist/cliproxy/auth/index.js +35 -0
- package/dist/cliproxy/auth/index.js.map +1 -0
- package/dist/cliproxy/auth/oauth-handler.d.ts +29 -0
- package/dist/cliproxy/auth/oauth-handler.d.ts.map +1 -0
- package/dist/cliproxy/auth/oauth-handler.js +205 -0
- package/dist/cliproxy/auth/oauth-handler.js.map +1 -0
- package/dist/cliproxy/auth/oauth-process.d.ts +27 -0
- package/dist/cliproxy/auth/oauth-process.d.ts.map +1 -0
- package/dist/cliproxy/auth/oauth-process.js +209 -0
- package/dist/cliproxy/auth/oauth-process.js.map +1 -0
- package/dist/cliproxy/auth/token-manager.d.ts +53 -0
- package/dist/cliproxy/auth/token-manager.d.ts.map +1 -0
- package/dist/cliproxy/auth/token-manager.js +250 -0
- package/dist/cliproxy/auth/token-manager.js.map +1 -0
- package/dist/cliproxy/auth-handler.d.ts +13 -103
- package/dist/cliproxy/auth-handler.d.ts.map +1 -1
- package/dist/cliproxy/auth-handler.js +35 -766
- package/dist/cliproxy/auth-handler.js.map +1 -1
- package/dist/cliproxy/binary/downloader.d.ts +29 -0
- package/dist/cliproxy/binary/downloader.d.ts.map +1 -0
- package/dist/cliproxy/binary/downloader.js +218 -0
- package/dist/cliproxy/binary/downloader.js.map +1 -0
- package/dist/cliproxy/binary/extractor.d.ts +12 -0
- package/dist/cliproxy/binary/extractor.d.ts.map +1 -0
- package/dist/cliproxy/binary/extractor.js +27 -0
- package/dist/cliproxy/binary/extractor.js.map +1 -0
- package/dist/cliproxy/binary/index.d.ts +13 -0
- package/dist/cliproxy/binary/index.d.ts.map +1 -0
- package/dist/cliproxy/binary/index.js +53 -0
- package/dist/cliproxy/binary/index.js.map +1 -0
- package/dist/cliproxy/binary/installer.d.ts +24 -0
- package/dist/cliproxy/binary/installer.d.ts.map +1 -0
- package/dist/cliproxy/binary/installer.js +117 -0
- package/dist/cliproxy/binary/installer.js.map +1 -0
- package/dist/cliproxy/binary/lifecycle.d.ts +11 -0
- package/dist/cliproxy/binary/lifecycle.d.ts.map +1 -0
- package/dist/cliproxy/binary/lifecycle.js +106 -0
- package/dist/cliproxy/binary/lifecycle.js.map +1 -0
- package/dist/cliproxy/binary/tar-extractor.d.ts +9 -0
- package/dist/cliproxy/binary/tar-extractor.d.ts.map +1 -0
- package/dist/cliproxy/binary/tar-extractor.js +118 -0
- package/dist/cliproxy/binary/tar-extractor.js.map +1 -0
- package/dist/cliproxy/binary/types.d.ts +24 -0
- package/dist/cliproxy/binary/types.d.ts.map +1 -0
- package/dist/cliproxy/binary/types.js +14 -0
- package/dist/cliproxy/binary/types.js.map +1 -0
- package/dist/cliproxy/binary/updater.d.ts +7 -0
- package/dist/cliproxy/binary/updater.d.ts.map +1 -0
- package/dist/cliproxy/binary/updater.js +18 -0
- package/dist/cliproxy/binary/updater.js.map +1 -0
- package/dist/cliproxy/binary/verifier.d.ts +18 -0
- package/dist/cliproxy/binary/verifier.d.ts.map +1 -0
- package/dist/cliproxy/binary/verifier.js +82 -0
- package/dist/cliproxy/binary/verifier.js.map +1 -0
- package/dist/cliproxy/binary/version-cache.d.ts +46 -0
- package/dist/cliproxy/binary/version-cache.d.ts.map +1 -0
- package/dist/cliproxy/binary/version-cache.js +171 -0
- package/dist/cliproxy/binary/version-cache.js.map +1 -0
- package/dist/cliproxy/binary/version-checker.d.ts +19 -0
- package/dist/cliproxy/binary/version-checker.d.ts.map +1 -0
- package/dist/cliproxy/binary/version-checker.js +77 -0
- package/dist/cliproxy/binary/version-checker.js.map +1 -0
- package/dist/cliproxy/binary/zip-extractor.d.ts +9 -0
- package/dist/cliproxy/binary/zip-extractor.d.ts.map +1 -0
- package/dist/cliproxy/binary/zip-extractor.js +110 -0
- package/dist/cliproxy/binary/zip-extractor.js.map +1 -0
- package/dist/cliproxy/binary-manager.d.ts +16 -170
- package/dist/cliproxy/binary-manager.d.ts.map +1 -1
- package/dist/cliproxy/binary-manager.js +38 -865
- package/dist/cliproxy/binary-manager.js.map +1 -1
- package/dist/cliproxy/remote-proxy-client.d.ts +3 -0
- package/dist/cliproxy/remote-proxy-client.d.ts.map +1 -1
- package/dist/cliproxy/remote-proxy-client.js +7 -3
- package/dist/cliproxy/remote-proxy-client.js.map +1 -1
- package/dist/cliproxy/services/binary-service.d.ts +65 -0
- package/dist/cliproxy/services/binary-service.d.ts.map +1 -0
- package/dist/cliproxy/services/binary-service.js +140 -0
- package/dist/cliproxy/services/binary-service.js.map +1 -0
- package/dist/cliproxy/services/index.d.ts +8 -0
- package/dist/cliproxy/services/index.d.ts.map +1 -0
- package/dist/cliproxy/services/index.js +31 -0
- package/dist/cliproxy/services/index.js.map +1 -0
- package/dist/cliproxy/services/proxy-lifecycle-service.d.ts +38 -0
- package/dist/cliproxy/services/proxy-lifecycle-service.d.ts.map +1 -0
- package/dist/cliproxy/services/proxy-lifecycle-service.js +41 -0
- package/dist/cliproxy/services/proxy-lifecycle-service.js.map +1 -0
- package/dist/cliproxy/services/variant-config-adapter.d.ts +38 -0
- package/dist/cliproxy/services/variant-config-adapter.d.ts.map +1 -0
- package/dist/cliproxy/services/variant-config-adapter.js +172 -0
- package/dist/cliproxy/services/variant-config-adapter.js.map +1 -0
- package/dist/cliproxy/services/variant-service.d.ts +37 -0
- package/dist/cliproxy/services/variant-service.d.ts.map +1 -0
- package/dist/cliproxy/services/variant-service.js +128 -0
- package/dist/cliproxy/services/variant-service.js.map +1 -0
- package/dist/cliproxy/services/variant-settings.d.ts +32 -0
- package/dist/cliproxy/services/variant-settings.d.ts.map +1 -0
- package/dist/cliproxy/services/variant-settings.js +128 -0
- package/dist/cliproxy/services/variant-settings.js.map +1 -0
- package/dist/commands/api-command.d.ts +3 -6
- package/dist/commands/api-command.d.ts.map +1 -1
- package/dist/commands/api-command.js +84 -445
- package/dist/commands/api-command.js.map +1 -1
- package/dist/commands/cliproxy-command.d.ts +0 -3
- package/dist/commands/cliproxy-command.d.ts.map +1 -1
- package/dist/commands/cliproxy-command.js +182 -621
- package/dist/commands/cliproxy-command.js.map +1 -1
- package/dist/commands/index.d.ts +17 -0
- package/dist/commands/index.d.ts.map +1 -0
- package/dist/commands/index.js +33 -0
- package/dist/commands/index.js.map +1 -0
- package/dist/config/unified-config-loader.d.ts +7 -0
- package/dist/config/unified-config-loader.d.ts.map +1 -1
- package/dist/config/unified-config-loader.js +11 -1
- package/dist/config/unified-config-loader.js.map +1 -1
- package/dist/delegation/executor/index.d.ts +7 -0
- package/dist/delegation/executor/index.d.ts.map +1 -0
- package/dist/delegation/executor/index.js +28 -0
- package/dist/delegation/executor/index.js.map +1 -0
- package/dist/delegation/executor/result-aggregator.d.ts +30 -0
- package/dist/delegation/executor/result-aggregator.d.ts.map +1 -0
- package/dist/delegation/executor/result-aggregator.js +66 -0
- package/dist/delegation/executor/result-aggregator.js.map +1 -0
- package/dist/delegation/executor/stream-parser.d.ts +28 -0
- package/dist/delegation/executor/stream-parser.d.ts.map +1 -0
- package/dist/delegation/executor/stream-parser.js +140 -0
- package/dist/delegation/executor/stream-parser.js.map +1 -0
- package/dist/delegation/executor/types.d.ts +121 -0
- package/dist/delegation/executor/types.d.ts.map +1 -0
- package/dist/delegation/executor/types.js +6 -0
- package/dist/delegation/executor/types.js.map +1 -0
- package/dist/delegation/headless-executor.d.ts +13 -91
- package/dist/delegation/headless-executor.d.ts.map +1 -1
- package/dist/delegation/headless-executor.js +84 -291
- package/dist/delegation/headless-executor.js.map +1 -1
- package/dist/delegation/index.d.ts +11 -0
- package/dist/delegation/index.d.ts.map +1 -0
- package/dist/delegation/index.js +33 -0
- package/dist/delegation/index.js.map +1 -0
- package/dist/delegation/result-formatter.d.ts +1 -30
- package/dist/delegation/result-formatter.d.ts.map +1 -1
- package/dist/delegation/result-formatter.js.map +1 -1
- package/dist/errors/cleanup-registry.d.ts +64 -0
- package/dist/errors/cleanup-registry.d.ts.map +1 -0
- package/dist/errors/cleanup-registry.js +141 -0
- package/dist/errors/cleanup-registry.js.map +1 -0
- package/dist/errors/error-handler.d.ts +45 -0
- package/dist/errors/error-handler.d.ts.map +1 -0
- package/dist/errors/error-handler.js +150 -0
- package/dist/errors/error-handler.js.map +1 -0
- package/dist/errors/error-types.d.ts +102 -0
- package/dist/errors/error-types.d.ts.map +1 -0
- package/dist/errors/error-types.js +158 -0
- package/dist/errors/error-types.js.map +1 -0
- package/dist/errors/exit-codes.d.ts +49 -0
- package/dist/errors/exit-codes.d.ts.map +1 -0
- package/dist/errors/exit-codes.js +72 -0
- package/dist/errors/exit-codes.js.map +1 -0
- package/dist/errors/index.d.ts +29 -0
- package/dist/errors/index.d.ts.map +1 -0
- package/dist/errors/index.js +62 -0
- package/dist/errors/index.js.map +1 -0
- package/dist/glmt/glmt-transformer.d.ts +29 -248
- package/dist/glmt/glmt-transformer.d.ts.map +1 -1
- package/dist/glmt/glmt-transformer.js +63 -718
- package/dist/glmt/glmt-transformer.js.map +1 -1
- package/dist/glmt/index.d.ts +14 -0
- package/dist/glmt/index.d.ts.map +1 -0
- package/dist/glmt/index.js +41 -0
- package/dist/glmt/index.js.map +1 -0
- package/dist/glmt/pipeline/content-transformer.d.ts +39 -0
- package/dist/glmt/pipeline/content-transformer.d.ts.map +1 -0
- package/dist/glmt/pipeline/content-transformer.js +162 -0
- package/dist/glmt/pipeline/content-transformer.js.map +1 -0
- package/dist/glmt/pipeline/index.d.ts +12 -0
- package/dist/glmt/pipeline/index.d.ts.map +1 -0
- package/dist/glmt/pipeline/index.js +20 -0
- package/dist/glmt/pipeline/index.js.map +1 -0
- package/dist/glmt/pipeline/request-transformer.d.ts +31 -0
- package/dist/glmt/pipeline/request-transformer.d.ts.map +1 -0
- package/dist/glmt/pipeline/request-transformer.js +116 -0
- package/dist/glmt/pipeline/request-transformer.js.map +1 -0
- package/dist/glmt/pipeline/response-builder.d.ts +52 -0
- package/dist/glmt/pipeline/response-builder.d.ts.map +1 -0
- package/dist/glmt/pipeline/response-builder.js +205 -0
- package/dist/glmt/pipeline/response-builder.js.map +1 -0
- package/dist/glmt/pipeline/stream-parser.d.ts +59 -0
- package/dist/glmt/pipeline/stream-parser.d.ts.map +1 -0
- package/dist/glmt/pipeline/stream-parser.js +241 -0
- package/dist/glmt/pipeline/stream-parser.js.map +1 -0
- package/dist/glmt/pipeline/tool-call-handler.d.ts +22 -0
- package/dist/glmt/pipeline/tool-call-handler.d.ts.map +1 -0
- package/dist/glmt/pipeline/tool-call-handler.js +87 -0
- package/dist/glmt/pipeline/tool-call-handler.js.map +1 -0
- package/dist/glmt/pipeline/types.d.ts +159 -0
- package/dist/glmt/pipeline/types.d.ts.map +1 -0
- package/dist/glmt/pipeline/types.js +6 -0
- package/dist/glmt/pipeline/types.js.map +1 -0
- package/dist/management/checks/cliproxy-check.d.ts +37 -0
- package/dist/management/checks/cliproxy-check.d.ts.map +1 -0
- package/dist/management/checks/cliproxy-check.js +187 -0
- package/dist/management/checks/cliproxy-check.js.map +1 -0
- package/dist/management/checks/config-check.d.ts +27 -0
- package/dist/management/checks/config-check.d.ts.map +1 -0
- package/dist/management/checks/config-check.js +158 -0
- package/dist/management/checks/config-check.js.map +1 -0
- package/dist/management/checks/env-check.d.ts +17 -0
- package/dist/management/checks/env-check.d.ts.map +1 -0
- package/dist/management/checks/env-check.js +71 -0
- package/dist/management/checks/env-check.js.map +1 -0
- package/dist/management/checks/index.d.ts +12 -0
- package/dist/management/checks/index.d.ts.map +1 -0
- package/dist/management/checks/index.js +48 -0
- package/dist/management/checks/index.js.map +1 -0
- package/dist/management/checks/oauth-check.d.ts +16 -0
- package/dist/management/checks/oauth-check.d.ts.map +1 -0
- package/dist/management/checks/oauth-check.js +68 -0
- package/dist/management/checks/oauth-check.js.map +1 -0
- package/dist/management/checks/profile-check.d.ts +36 -0
- package/dist/management/checks/profile-check.d.ts.map +1 -0
- package/dist/management/checks/profile-check.js +165 -0
- package/dist/management/checks/profile-check.js.map +1 -0
- package/dist/management/checks/symlink-check.d.ts +30 -0
- package/dist/management/checks/symlink-check.d.ts.map +1 -0
- package/dist/management/checks/symlink-check.js +204 -0
- package/dist/management/checks/symlink-check.js.map +1 -0
- package/dist/management/checks/system-check.d.ts +25 -0
- package/dist/management/checks/system-check.d.ts.map +1 -0
- package/dist/management/checks/system-check.js +136 -0
- package/dist/management/checks/system-check.js.map +1 -0
- package/dist/management/checks/types.d.ts +64 -0
- package/dist/management/checks/types.d.ts.map +1 -0
- package/dist/management/checks/types.js +63 -0
- package/dist/management/checks/types.js.map +1 -0
- package/dist/management/doctor.d.ts +3 -92
- package/dist/management/doctor.d.ts.map +1 -1
- package/dist/management/doctor.js +15 -831
- package/dist/management/doctor.js.map +1 -1
- package/dist/management/index.d.ts +15 -0
- package/dist/management/index.d.ts.map +1 -0
- package/dist/management/index.js +56 -0
- package/dist/management/index.js.map +1 -0
- package/dist/management/repair/auto-repair.d.ts +13 -0
- package/dist/management/repair/auto-repair.d.ts.map +1 -0
- package/dist/management/repair/auto-repair.js +170 -0
- package/dist/management/repair/auto-repair.js.map +1 -0
- package/dist/management/repair/index.d.ts +5 -0
- package/dist/management/repair/index.d.ts.map +1 -0
- package/dist/management/repair/index.js +9 -0
- package/dist/management/repair/index.js.map +1 -0
- package/dist/types/delegation.d.ts +1 -13
- package/dist/types/delegation.d.ts.map +1 -1
- package/dist/types/utils.d.ts +27 -0
- package/dist/types/utils.d.ts.map +1 -1
- package/dist/ui/assets/{accounts-p1_nf0Jy.js → accounts--0JKEYYO.js} +1 -1
- package/dist/ui/assets/analytics-CX5PurM9.js +1 -0
- package/dist/ui/assets/api-D80tfZOx.js +1 -0
- package/dist/ui/assets/{card-CCDc-Mx9.js → card-B-DPlvgo.js} +1 -1
- package/dist/ui/assets/cliproxy-D4AoDTZB.js +3 -0
- package/dist/ui/assets/cliproxy-control-panel-CJ2CfYod.js +1 -0
- package/dist/ui/assets/{code-editor-Br9x-r-E.js → code-editor-DIj6qdUG.js} +1 -1
- package/dist/ui/assets/confirm-dialog-DZkzZLrs.js +1 -0
- package/dist/ui/assets/copilot-Q9tyCgYD.js +4 -0
- package/dist/ui/assets/form-utils-DP6ILe7Z.js +20 -0
- package/dist/ui/assets/health-Cw76uZRy.js +1 -0
- package/dist/ui/assets/{icons-BOsxPbiD.js → icons-ZmwVoUeR.js} +1 -1
- package/dist/ui/assets/index-C1W0iP_Z.js +46 -0
- package/dist/ui/assets/index-It66SkKf.css +1 -0
- package/dist/ui/assets/{radix-ui-DFHQr9A5.js → radix-ui-CV3R9pD6.js} +3 -3
- package/dist/ui/assets/settings-CDdHW_gU.js +1 -0
- package/dist/ui/assets/{shared-BfYhSN4-.js → shared--pI8rTbP.js} +1 -1
- package/dist/ui/assets/{switch-CMk95lwf.js → switch-BP6SzLyZ.js} +1 -1
- package/dist/ui/assets/{tanstack-C4gT2P7V.js → tanstack-Df9bCj5R.js} +1 -1
- package/dist/ui/index.html +6 -6
- package/dist/utils/claude-spawner.d.ts +54 -0
- package/dist/utils/claude-spawner.d.ts.map +1 -0
- package/dist/utils/claude-spawner.js +118 -0
- package/dist/utils/claude-spawner.js.map +1 -0
- package/dist/utils/delegation-validator.d.ts +8 -4
- package/dist/utils/delegation-validator.d.ts.map +1 -1
- package/dist/utils/delegation-validator.js.map +1 -1
- package/dist/utils/helpers.d.ts +0 -11
- package/dist/utils/helpers.d.ts.map +1 -1
- package/dist/utils/helpers.js +1 -57
- package/dist/utils/helpers.js.map +1 -1
- package/dist/utils/index.d.ts +15 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/index.js +50 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/time.d.ts +10 -0
- package/dist/utils/time.d.ts.map +1 -0
- package/dist/utils/time.js +27 -0
- package/dist/utils/time.js.map +1 -0
- package/dist/utils/ui/boxes.d.ts +24 -0
- package/dist/utils/ui/boxes.d.ts.map +1 -0
- package/dist/utils/ui/boxes.js +108 -0
- package/dist/utils/ui/boxes.js.map +1 -0
- package/dist/utils/ui/colors.d.ts +25 -0
- package/dist/utils/ui/colors.d.ts.map +1 -0
- package/dist/utils/ui/colors.js +70 -0
- package/dist/utils/ui/colors.js.map +1 -0
- package/dist/utils/ui/index.d.ts +51 -0
- package/dist/utils/ui/index.d.ts.map +1 -0
- package/dist/utils/ui/index.js +96 -0
- package/dist/utils/ui/index.js.map +1 -0
- package/dist/utils/ui/indicators.d.ts +23 -0
- package/dist/utils/ui/indicators.d.ts.map +1 -0
- package/dist/utils/ui/indicators.js +39 -0
- package/dist/utils/ui/indicators.js.map +1 -0
- package/dist/utils/ui/init.d.ts +30 -0
- package/dist/utils/ui/init.d.ts.map +1 -0
- package/dist/utils/ui/init.js +102 -0
- package/dist/utils/ui/init.js.map +1 -0
- package/dist/utils/ui/spinner.d.ts +13 -0
- package/dist/utils/ui/spinner.d.ts.map +1 -0
- package/dist/utils/ui/spinner.js +89 -0
- package/dist/utils/ui/spinner.js.map +1 -0
- package/dist/utils/ui/tables.d.ts +12 -0
- package/dist/utils/ui/tables.d.ts.map +1 -0
- package/dist/utils/ui/tables.js +69 -0
- package/dist/utils/ui/tables.js.map +1 -0
- package/dist/utils/ui/tasks.d.ts +26 -0
- package/dist/utils/ui/tasks.d.ts.map +1 -0
- package/dist/utils/ui/tasks.js +102 -0
- package/dist/utils/ui/tasks.js.map +1 -0
- package/dist/utils/ui/text.d.ts +24 -0
- package/dist/utils/ui/text.d.ts.map +1 -0
- package/dist/utils/ui/text.js +60 -0
- package/dist/utils/ui/text.js.map +1 -0
- package/dist/utils/ui/types.d.ts +36 -0
- package/dist/utils/ui/types.d.ts.map +1 -0
- package/dist/utils/ui/types.js +33 -0
- package/dist/utils/ui/types.js.map +1 -0
- package/dist/utils/ui.d.ts +3 -138
- package/dist/utils/ui.d.ts.map +1 -1
- package/dist/utils/ui.js +40 -567
- package/dist/utils/ui.js.map +1 -1
- package/dist/utils/websearch/gemini-cli.d.ts +36 -0
- package/dist/utils/websearch/gemini-cli.d.ts.map +1 -0
- package/dist/utils/websearch/gemini-cli.js +132 -0
- package/dist/utils/websearch/gemini-cli.js.map +1 -0
- package/dist/utils/websearch/grok-cli.d.ts +26 -0
- package/dist/utils/websearch/grok-cli.d.ts.map +1 -0
- package/dist/utils/websearch/grok-cli.js +81 -0
- package/dist/utils/websearch/grok-cli.js.map +1 -0
- package/dist/utils/websearch/hook-config.d.ts +21 -0
- package/dist/utils/websearch/hook-config.d.ts.map +1 -0
- package/dist/utils/websearch/hook-config.js +183 -0
- package/dist/utils/websearch/hook-config.js.map +1 -0
- package/dist/utils/websearch/hook-env.d.ts +16 -0
- package/dist/utils/websearch/hook-env.d.ts.map +1 -0
- package/dist/utils/websearch/hook-env.js +62 -0
- package/dist/utils/websearch/hook-env.js.map +1 -0
- package/dist/utils/websearch/hook-installer.d.ts +27 -0
- package/dist/utils/websearch/hook-installer.d.ts.map +1 -0
- package/dist/utils/websearch/hook-installer.js +141 -0
- package/dist/utils/websearch/hook-installer.js.map +1 -0
- package/dist/utils/websearch/index.d.ts +15 -0
- package/dist/utils/websearch/index.d.ts.map +1 -0
- package/dist/utils/websearch/index.js +44 -0
- package/dist/utils/websearch/index.js.map +1 -0
- package/dist/utils/websearch/opencode-cli.d.ts +26 -0
- package/dist/utils/websearch/opencode-cli.d.ts.map +1 -0
- package/dist/utils/websearch/opencode-cli.js +81 -0
- package/dist/utils/websearch/opencode-cli.js.map +1 -0
- package/dist/utils/websearch/status.d.ts +35 -0
- package/dist/utils/websearch/status.d.ts.map +1 -0
- package/dist/utils/websearch/status.js +185 -0
- package/dist/utils/websearch/status.js.map +1 -0
- package/dist/utils/websearch/types.d.ts +85 -0
- package/dist/utils/websearch/types.d.ts.map +1 -0
- package/dist/utils/websearch/types.js +10 -0
- package/dist/utils/websearch/types.js.map +1 -0
- package/dist/utils/websearch-manager.d.ts +7 -186
- package/dist/utils/websearch-manager.d.ts.map +1 -1
- package/dist/utils/websearch-manager.js +37 -710
- package/dist/utils/websearch-manager.js.map +1 -1
- package/dist/web-server/data-aggregator.d.ts +3 -51
- package/dist/web-server/data-aggregator.d.ts.map +1 -1
- package/dist/web-server/data-aggregator.js +18 -386
- package/dist/web-server/data-aggregator.js.map +1 -1
- package/dist/web-server/health/cliproxy-checks.d.ts +23 -0
- package/dist/web-server/health/cliproxy-checks.d.ts.map +1 -0
- package/dist/web-server/health/cliproxy-checks.js +145 -0
- package/dist/web-server/health/cliproxy-checks.js.map +1 -0
- package/dist/web-server/health/config-checks.d.ts +19 -0
- package/dist/web-server/health/config-checks.d.ts.map +1 -0
- package/dist/web-server/health/config-checks.js +174 -0
- package/dist/web-server/health/config-checks.js.map +1 -0
- package/dist/web-server/health/environment-checks.d.ts +11 -0
- package/dist/web-server/health/environment-checks.d.ts.map +1 -0
- package/dist/web-server/health/environment-checks.js +40 -0
- package/dist/web-server/health/environment-checks.js.map +1 -0
- package/dist/web-server/health/index.d.ts +13 -0
- package/dist/web-server/health/index.d.ts.map +1 -0
- package/dist/web-server/health/index.js +41 -0
- package/dist/web-server/health/index.js.map +1 -0
- package/dist/web-server/health/oauth-checks.d.ts +11 -0
- package/dist/web-server/health/oauth-checks.d.ts.map +1 -0
- package/dist/web-server/health/oauth-checks.js +34 -0
- package/dist/web-server/health/oauth-checks.js.map +1 -0
- package/dist/web-server/health/profile-checks.d.ts +19 -0
- package/dist/web-server/health/profile-checks.d.ts.map +1 -0
- package/dist/web-server/health/profile-checks.js +152 -0
- package/dist/web-server/health/profile-checks.js.map +1 -0
- package/dist/web-server/health/symlink-checks.d.ts +15 -0
- package/dist/web-server/health/symlink-checks.d.ts.map +1 -0
- package/dist/web-server/health/symlink-checks.js +173 -0
- package/dist/web-server/health/symlink-checks.js.map +1 -0
- package/dist/web-server/health/system-checks.d.ts +19 -0
- package/dist/web-server/health/system-checks.d.ts.map +1 -0
- package/dist/web-server/health/system-checks.js +127 -0
- package/dist/web-server/health/system-checks.js.map +1 -0
- package/dist/web-server/health/types.d.ts +34 -0
- package/dist/web-server/health/types.d.ts.map +1 -0
- package/dist/web-server/health/types.js +8 -0
- package/dist/web-server/health/types.js.map +1 -0
- package/dist/web-server/health/websearch-checks.d.ts +11 -0
- package/dist/web-server/health/websearch-checks.d.ts.map +1 -0
- package/dist/web-server/health/websearch-checks.js +53 -0
- package/dist/web-server/health/websearch-checks.js.map +1 -0
- package/dist/web-server/health-service.d.ts +4 -30
- package/dist/web-server/health-service.d.ts.map +1 -1
- package/dist/web-server/health-service.js +28 -695
- package/dist/web-server/health-service.js.map +1 -1
- package/dist/web-server/index.d.ts.map +1 -1
- package/dist/web-server/index.js +2 -5
- package/dist/web-server/index.js.map +1 -1
- package/dist/web-server/routes/cliproxy-auth-routes.d.ts +6 -0
- package/dist/web-server/routes/cliproxy-auth-routes.d.ts.map +1 -0
- package/dist/web-server/routes/cliproxy-auth-routes.js +202 -0
- package/dist/web-server/routes/cliproxy-auth-routes.js.map +1 -0
- package/dist/web-server/routes/cliproxy-stats-routes.d.ts +6 -0
- package/dist/web-server/routes/cliproxy-stats-routes.d.ts.map +1 -0
- package/dist/web-server/routes/cliproxy-stats-routes.js +253 -0
- package/dist/web-server/routes/cliproxy-stats-routes.js.map +1 -0
- package/dist/web-server/routes/config-routes.d.ts +6 -0
- package/dist/web-server/routes/config-routes.d.ts.map +1 -0
- package/dist/web-server/routes/config-routes.js +145 -0
- package/dist/web-server/routes/config-routes.js.map +1 -0
- package/dist/web-server/routes/copilot-routes.d.ts +6 -0
- package/dist/web-server/routes/copilot-routes.d.ts.map +1 -0
- package/dist/web-server/routes/copilot-routes.js +195 -0
- package/dist/web-server/routes/copilot-routes.js.map +1 -0
- package/dist/web-server/routes/copilot-settings-routes.d.ts +6 -0
- package/dist/web-server/routes/copilot-settings-routes.d.ts.map +1 -0
- package/dist/web-server/routes/copilot-settings-routes.js +122 -0
- package/dist/web-server/routes/copilot-settings-routes.js.map +1 -0
- package/dist/web-server/routes/health-routes.d.ts +6 -0
- package/dist/web-server/routes/health-routes.d.ts.map +1 -0
- package/dist/web-server/routes/health-routes.js +30 -0
- package/dist/web-server/routes/health-routes.js.map +1 -0
- package/dist/web-server/routes/index.d.ts +8 -0
- package/dist/web-server/routes/index.d.ts.map +1 -0
- package/dist/web-server/routes/index.js +54 -0
- package/dist/web-server/routes/index.js.map +1 -0
- package/dist/web-server/routes/misc-routes.d.ts +6 -0
- package/dist/web-server/routes/misc-routes.d.ts.map +1 -0
- package/dist/web-server/routes/misc-routes.js +219 -0
- package/dist/web-server/routes/misc-routes.js.map +1 -0
- package/dist/web-server/routes/profile-routes.d.ts +6 -0
- package/dist/web-server/routes/profile-routes.d.ts.map +1 -0
- package/dist/web-server/routes/profile-routes.js +164 -0
- package/dist/web-server/routes/profile-routes.js.map +1 -0
- package/dist/web-server/routes/provider-routes.d.ts +6 -0
- package/dist/web-server/routes/provider-routes.d.ts.map +1 -0
- package/dist/web-server/routes/provider-routes.js +146 -0
- package/dist/web-server/routes/provider-routes.js.map +1 -0
- package/dist/web-server/routes/route-helpers.d.ts +55 -0
- package/dist/web-server/routes/route-helpers.d.ts.map +1 -0
- package/dist/web-server/routes/route-helpers.js +201 -0
- package/dist/web-server/routes/route-helpers.js.map +1 -0
- package/dist/web-server/routes/settings-routes.d.ts +6 -0
- package/dist/web-server/routes/settings-routes.d.ts.map +1 -0
- package/dist/web-server/routes/settings-routes.js +207 -0
- package/dist/web-server/routes/settings-routes.js.map +1 -0
- package/dist/web-server/routes/variant-routes.d.ts +6 -0
- package/dist/web-server/routes/variant-routes.d.ts.map +1 -0
- package/dist/web-server/routes/variant-routes.js +158 -0
- package/dist/web-server/routes/variant-routes.js.map +1 -0
- package/dist/web-server/routes/websearch-routes.d.ts +6 -0
- package/dist/web-server/routes/websearch-routes.d.ts.map +1 -0
- package/dist/web-server/routes/websearch-routes.js +130 -0
- package/dist/web-server/routes/websearch-routes.js.map +1 -0
- package/dist/web-server/services/index.d.ts +7 -0
- package/dist/web-server/services/index.d.ts.map +1 -0
- package/dist/web-server/services/index.js +21 -0
- package/dist/web-server/services/index.js.map +1 -0
- package/dist/web-server/services/usage-aggregator.d.ts +7 -0
- package/dist/web-server/services/usage-aggregator.d.ts.map +1 -0
- package/dist/web-server/services/usage-aggregator.js +23 -0
- package/dist/web-server/services/usage-aggregator.js.map +1 -0
- package/dist/web-server/usage/aggregator.d.ts +54 -0
- package/dist/web-server/usage/aggregator.d.ts.map +1 -0
- package/dist/web-server/usage/aggregator.js +470 -0
- package/dist/web-server/usage/aggregator.js.map +1 -0
- package/dist/web-server/usage/data-aggregator.d.ts +55 -0
- package/dist/web-server/usage/data-aggregator.d.ts.map +1 -0
- package/dist/web-server/usage/data-aggregator.js +391 -0
- package/dist/web-server/usage/data-aggregator.js.map +1 -0
- package/dist/web-server/usage/disk-cache.d.ts +46 -0
- package/dist/web-server/usage/disk-cache.d.ts.map +1 -0
- package/dist/web-server/usage/disk-cache.js +162 -0
- package/dist/web-server/usage/disk-cache.js.map +1 -0
- package/dist/web-server/usage/handlers.d.ts +50 -0
- package/dist/web-server/usage/handlers.d.ts.map +1 -0
- package/dist/web-server/usage/handlers.js +524 -0
- package/dist/web-server/usage/handlers.js.map +1 -0
- package/dist/web-server/usage/index.d.ts +12 -0
- package/dist/web-server/usage/index.d.ts.map +1 -0
- package/dist/web-server/usage/index.js +54 -0
- package/dist/web-server/usage/index.js.map +1 -0
- package/dist/web-server/usage/routes.d.ts +11 -0
- package/dist/web-server/usage/routes.d.ts.map +1 -0
- package/dist/web-server/usage/routes.js +37 -0
- package/dist/web-server/usage/routes.js.map +1 -0
- package/dist/web-server/usage/types.d.ts +119 -0
- package/dist/web-server/usage/types.d.ts.map +1 -0
- package/dist/web-server/usage/types.js +9 -0
- package/dist/web-server/usage/types.js.map +1 -0
- package/dist/web-server/usage-disk-cache.d.ts +3 -42
- package/dist/web-server/usage-disk-cache.d.ts.map +1 -1
- package/dist/web-server/usage-disk-cache.js +5 -144
- package/dist/web-server/usage-disk-cache.js.map +1 -1
- package/dist/web-server/usage-routes.d.ts +3 -31
- package/dist/web-server/usage-routes.d.ts.map +1 -1
- package/dist/web-server/usage-routes.js +8 -1139
- package/dist/web-server/usage-routes.js.map +1 -1
- package/dist/web-server/usage-types.d.ts +3 -115
- package/dist/web-server/usage-types.d.ts.map +1 -1
- package/dist/web-server/usage-types.js +17 -3
- package/dist/web-server/usage-types.js.map +1 -1
- package/package.json +1 -1
- package/scripts/dev-release.sh +113 -0
- package/dist/ui/assets/analytics-D1k2nYcF.js +0 -1
- package/dist/ui/assets/api-D9VVmZ1j.js +0 -1
- package/dist/ui/assets/cliproxy-CTt_Nsft.js +0 -1
- package/dist/ui/assets/cliproxy-control-panel-DKMAi4_4.js +0 -1
- package/dist/ui/assets/copilot-C6F8PT_L.js +0 -4
- package/dist/ui/assets/form-utils-BuXDJb0w.js +0 -20
- package/dist/ui/assets/health-DiAvJaSn.js +0 -1
- package/dist/ui/assets/index-Brq6EBKZ.css +0 -1
- package/dist/ui/assets/index-ByU8ZhED.js +0 -48
- package/dist/ui/assets/settings-CEomZLGl.js +0 -1
- package/dist/web-server/routes.d.ts +0 -7
- package/dist/web-server/routes.d.ts.map +0 -1
- package/dist/web-server/routes.js +0 -1891
- package/dist/web-server/routes.js.map +0 -1
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/code-editor-Br9x-r-E.js","assets/radix-ui-DFHQr9A5.js","assets/react-vendor-FspHSO0w.js","assets/index-ByU8ZhED.js","assets/tanstack-C4gT2P7V.js","assets/notifications-B2Pz7lik.js","assets/utils-CzKF5WmX.js","assets/icons-BOsxPbiD.js","assets/form-utils-BuXDJb0w.js","assets/code-highlight-BoHWVYut.js","assets/index-Brq6EBKZ.css"])))=>i.map(i=>d[i]);
|
|
2
|
-
import{j as e}from"./radix-ui-DFHQr9A5.js";import{S as j,e as v,B as p,o as we,X as ye,Y as be,Z as R,_ as O,i as A,q,L as w,I as te,z as le,A as oe,E as re,F as ce,G as L,p as de,$ as Se,a0 as Ce,a1 as ke,a2 as Fe,c as K}from"./index-ByU8ZhED.js";import{u as Pe,a as C,b as y}from"./tanstack-C4gT2P7V.js";import{r as h}from"./react-vendor-FspHSO0w.js";import{S as D}from"./switch-CMk95lwf.js";import{t as Q}from"./notifications-B2Pz7lik.js";import{J as me,L as J,O as Me,Q as Ae,Y as Le,Z as ae,I as Ee,X as Te,j as _e,a as Ie,T as Re,a6 as Oe,ak as qe,ag as ne,K as De,a8 as Qe,al as $e,l as ue,m as xe}from"./icons-BOsxPbiD.js";import"./utils-CzKF5WmX.js";import"./form-utils-BuXDJb0w.js";import"./code-highlight-BoHWVYut.js";const m="/api";async function Ke(){const s=await fetch(`${m}/copilot/status`);if(!s.ok)throw new Error("Failed to fetch copilot status");return s.json()}async function Je(){const s=await fetch(`${m}/copilot/config`);if(!s.ok)throw new Error("Failed to fetch copilot config");return s.json()}async function Ge(){const s=await fetch(`${m}/copilot/models`);if(!s.ok)throw new Error("Failed to fetch copilot models");return s.json()}async function ze(){const s=await fetch(`${m}/copilot/settings/raw`);if(!s.ok)throw new Error("Failed to fetch copilot raw settings");return s.json()}async function Be(s){const a=await fetch(`${m}/copilot/config`,{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});if(!a.ok)throw new Error("Failed to update copilot config");return a.json()}async function Ue(s){const a=await fetch(`${m}/copilot/settings/raw`,{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});if(a.status===409)throw new Error("CONFLICT");if(!a.ok)throw new Error("Failed to save copilot raw settings");return a.json()}async function He(){const s=await fetch(`${m}/copilot/auth/start`,{method:"POST"});if(!s.ok)throw new Error("Failed to start auth");return s.json()}async function Ve(){const s=await fetch(`${m}/copilot/daemon/start`,{method:"POST"});if(!s.ok)throw new Error("Failed to start daemon");return s.json()}async function Xe(){const s=await fetch(`${m}/copilot/daemon/stop`,{method:"POST"});if(!s.ok)throw new Error("Failed to stop daemon");return s.json()}async function Ye(){const s=await fetch(`${m}/copilot/info`);if(!s.ok)throw new Error("Failed to fetch copilot info");return s.json()}async function Ze(s){const a=await fetch(`${m}/copilot/install`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s?{version:s}:{})});if(!a.ok)throw new Error("Failed to install copilot-api");return a.json()}function he(){const s=Pe(),a=C({queryKey:["copilot-status"],queryFn:Ke,refetchInterval:5e3}),l=C({queryKey:["copilot-config"],queryFn:Je}),r=C({queryKey:["copilot-models"],queryFn:Ge}),n=C({queryKey:["copilot-raw-settings"],queryFn:ze}),d=C({queryKey:["copilot-info"],queryFn:Ye}),c=y({mutationFn:Be,onSuccess:()=>{s.invalidateQueries({queryKey:["copilot-status"]}),s.invalidateQueries({queryKey:["copilot-config"]}),s.invalidateQueries({queryKey:["copilot-raw-settings"]})}}),i=y({mutationFn:Ue,onSuccess:()=>{s.invalidateQueries({queryKey:["copilot-status"]}),s.invalidateQueries({queryKey:["copilot-config"]}),s.invalidateQueries({queryKey:["copilot-raw-settings"]})}}),x=y({mutationFn:He,onSuccess:()=>{s.invalidateQueries({queryKey:["copilot-status"]})}}),N=y({mutationFn:Ve,onSuccess:()=>{s.invalidateQueries({queryKey:["copilot-status"]})}}),f=y({mutationFn:Xe,onSuccess:()=>{s.invalidateQueries({queryKey:["copilot-status"]})}}),o=y({mutationFn:Ze,onSuccess:()=>{s.invalidateQueries({queryKey:["copilot-status"]}),s.invalidateQueries({queryKey:["copilot-info"]})}});return{status:a.data,statusLoading:a.isLoading,statusError:a.error,refetchStatus:a.refetch,config:l.data,configLoading:l.isLoading,models:r.data?.models??[],currentModel:r.data?.current,modelsLoading:r.isLoading,rawSettings:n.data,rawSettingsLoading:n.isLoading,refetchRawSettings:n.refetch,updateConfig:c.mutate,updateConfigAsync:c.mutateAsync,isUpdating:c.isPending,saveRawSettings:i.mutate,saveRawSettingsAsync:i.mutateAsync,isSavingRawSettings:i.isPending,startAuth:x.mutate,startAuthAsync:x.mutateAsync,isAuthenticating:x.isPending,authResult:x.data,startDaemon:N.mutate,isStartingDaemon:N.isPending,stopDaemon:f.mutate,isStoppingDaemon:f.isPending,info:d.data,infoLoading:d.isLoading,refetchInfo:d.refetch,install:o.mutate,installAsync:o.mutateAsync,isInstalling:o.isPending}}const We=h.lazy(()=>Fe(()=>import("./code-editor-Br9x-r-E.js"),__vite__mapDeps([0,1,2,3,4,5,6,7,8,9,10])).then(s=>({default:s.CodeEditor}))),es=[{name:"GPT-4.1 (Free)",description:"Free tier - no premium usage",default:"gpt-4.1",opus:"gpt-4.1",sonnet:"gpt-4.1",haiku:"gpt-4.1"},{name:"GPT-5 Mini (Free)",description:"Free tier - lightweight model",default:"gpt-5-mini",opus:"gpt-5-mini",sonnet:"gpt-5-mini",haiku:"gpt-5-mini"},{name:"Raptor Mini (Free)",description:"Free tier - fine-tuned for coding",default:"raptor-mini",opus:"raptor-mini",sonnet:"raptor-mini",haiku:"raptor-mini"}],ss=[{name:"Claude Opus 4.5",description:"Pro+ (3x) - Most capable reasoning",default:"claude-opus-4.5",opus:"claude-opus-4.5",sonnet:"claude-sonnet-4.5",haiku:"claude-haiku-4.5"},{name:"Claude Sonnet 4.5",description:"Pro+ (1x) - Balanced performance",default:"claude-sonnet-4.5",opus:"claude-opus-4.5",sonnet:"claude-sonnet-4.5",haiku:"claude-haiku-4.5"},{name:"GPT-5.2",description:"Pro+ (1x) - Latest OpenAI (Preview)",default:"gpt-5.2",opus:"gpt-5.2",sonnet:"gpt-5.1",haiku:"gpt-5-mini"},{name:"GPT-5.1 Codex Max",description:"Pro+ (1x) - Best for coding",default:"gpt-5.1-codex-max",opus:"gpt-5.1-codex-max",sonnet:"gpt-5.1-codex",haiku:"gpt-5.1-codex-mini"},{name:"Gemini 2.5 Pro",description:"Pro+ (1x) - Google latest",default:"gemini-2.5-pro",opus:"gemini-2.5-pro",sonnet:"gemini-2.5-pro",haiku:"gemini-3-flash"}];function ie(s){switch(s){case"free":return"bg-green-100 text-green-700 border-green-200";case"pro":return"bg-blue-100 text-blue-700 border-blue-200";case"pro+":return"bg-purple-100 text-purple-700 border-purple-200";case"business":return"bg-orange-100 text-orange-700 border-orange-200";case"enterprise":return"bg-red-100 text-red-700 border-red-200";default:return"bg-muted text-muted-foreground"}}function ts(s){return s==null?null:s===0?"Free":s<1?`${s}x`:s===1?"1x":`${s}x`}function F({label:s,description:a,value:l,onChange:r,models:n,disabled:d}){const c=n.find(i=>i.id===l);return e.jsxs("div",{className:"space-y-1.5",children:[e.jsxs("div",{children:[e.jsx("label",{className:"text-xs font-medium",children:s}),a&&e.jsx("p",{className:"text-[10px] text-muted-foreground",children:a})]}),e.jsxs(le,{value:l||"",onValueChange:r,disabled:d,children:[e.jsx(oe,{className:"h-9",children:e.jsx(re,{placeholder:"Select model",children:l&&e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx("span",{className:"truncate font-mono text-xs",children:l}),c?.minPlan&&e.jsx(v,{variant:"outline",className:`text-[9px] px-1 py-0 h-4 ${ie(c.minPlan)}`,children:c.minPlan})]})})}),e.jsx(ce,{className:"max-h-[300px]",children:e.jsxs(Ce,{children:[e.jsxs(ke,{className:"text-xs text-muted-foreground",children:["Available Models (",n.length,")"]}),n.map(i=>e.jsx(L,{value:i.id,children:e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx("span",{className:"truncate font-mono text-xs",children:i.name||i.id}),i.minPlan&&e.jsx(v,{variant:"outline",className:`text-[9px] px-1 py-0 h-4 ${ie(i.minPlan)}`,children:i.minPlan}),i.multiplier!==void 0&&e.jsx("span",{className:"text-[9px] text-muted-foreground",children:ts(i.multiplier)}),i.preview&&e.jsx(v,{variant:"secondary",className:"text-[9px] px-1 py-0 h-4",children:"Preview"}),l===i.id&&e.jsx(_e,{className:"w-3 h-3 text-primary ml-auto"})]})},i.id))]})})]})]})}function as(){const{config:s,configLoading:a,models:l,modelsLoading:r,rawSettings:n,rawSettingsLoading:d,updateConfigAsync:c,isUpdating:i,saveRawSettingsAsync:x,isSavingRawSettings:N,refetchRawSettings:f}=he(),[o,E]=h.useState({}),[g,T]=h.useState(null),[pe,G]=h.useState(!1),z=o.enabled??s?.enabled??!1,B=o.autoStart??s?.auto_start??!1,U=o.port??s?.port??4141,H=o.accountType??s?.account_type??"individual",b=o.model??s?.model??"claude-opus-4-5-20250514",_=o.rateLimit??s?.rate_limit?.toString()??"",V=o.waitOnLimit??s?.wait_on_limit??!0,X=o.opusModel??s?.opus_model??"",Y=o.sonnetModel??s?.sonnet_model??"",Z=o.haikuModel??s?.haiku_model??"",u=(t,S)=>{E(ve=>({...ve,[t]:S}))},W=t=>{E(S=>({...S,model:t.default,opusModel:t.opus,sonnetModel:t.sonnet,haikuModel:t.haiku})),Q.success(`Applied "${t.name}" preset`)},k=h.useMemo(()=>g!==null?g:n?.settings?JSON.stringify(n.settings,null,2):`{
|
|
3
|
-
"env": {}
|
|
4
|
-
}`,[g,n]),fe=h.useCallback(t=>{T(t)},[]),I=h.useMemo(()=>{try{return JSON.parse(k),!0}catch{return!1}},[k]),ge=h.useMemo(()=>{const t=Object.keys(o).length>0,S=g!==null&&g!==JSON.stringify(n?.settings,null,2);return t||S},[o,g,n]),ee=async()=>{try{if(Object.keys(o).length>0&&await c({enabled:z,auto_start:B,port:U,account_type:H,model:b,rate_limit:_?parseInt(_,10):null,wait_on_limit:V,opus_model:X||void 0,sonnet_model:Y||void 0,haiku_model:Z||void 0}),g!==null&&I){const t=JSON.parse(k);await x({settings:t,expectedMtime:n?.mtime})}E({}),T(null),Q.success("Copilot configuration saved")}catch(t){t.message==="CONFLICT"?G(!0):Q.error("Failed to save settings")}},se=async t=>{G(!1),t?(await f(),ee()):T(null)};if(a||d)return e.jsxs("div",{className:"space-y-6",children:[e.jsx(j,{className:"h-10 w-full"}),e.jsx(j,{className:"h-10 w-full"}),e.jsx(j,{className:"h-10 w-full"}),e.jsx(j,{className:"h-10 w-full"})]});const je=()=>e.jsx("div",{className:"h-full flex flex-col",children:e.jsxs(ye,{defaultValue:"config",className:"h-full flex flex-col",children:[e.jsx("div",{className:"px-4 pt-4 shrink-0",children:e.jsxs(be,{className:"w-full",children:[e.jsx(R,{value:"config",className:"flex-1",children:"Model Config"}),e.jsx(R,{value:"settings",className:"flex-1",children:"Settings"}),e.jsx(R,{value:"info",className:"flex-1",children:"Info"})]})}),e.jsxs("div",{className:"flex-1 overflow-hidden flex flex-col",children:[e.jsx(O,{value:"config",className:"flex-1 mt-0 border-0 p-0 data-[state=inactive]:hidden flex flex-col overflow-hidden",children:e.jsx(A,{className:"flex-1",children:e.jsxs("div",{className:"p-4 space-y-6",children:[e.jsxs("div",{children:[e.jsxs("h3",{className:"text-sm font-medium mb-2 flex items-center gap-2",children:[e.jsx(Le,{className:"w-4 h-4"}),"Presets"]}),e.jsx("p",{className:"text-xs text-muted-foreground mb-3",children:"Apply pre-configured model mappings"}),e.jsxs("div",{className:"mb-4",children:[e.jsxs("div",{className:"flex items-center gap-2 mb-2",children:[e.jsx(v,{variant:"outline",className:"text-[10px] bg-green-100 text-green-700 border-green-200",children:"Free Tier"}),e.jsx("span",{className:"text-[10px] text-muted-foreground",children:"No premium usage count"})]}),e.jsx("div",{className:"flex flex-wrap gap-2",children:es.map(t=>e.jsxs(p,{variant:"outline",size:"sm",className:"text-xs h-7 gap-1",onClick:()=>W(t),title:t.description,children:[e.jsx(ae,{className:"w-3 h-3 text-green-600"}),t.name]},t.name))})]}),e.jsxs("div",{children:[e.jsxs("div",{className:"flex items-center gap-2 mb-2",children:[e.jsx(v,{variant:"outline",className:"text-[10px] bg-blue-100 text-blue-700 border-blue-200",children:"Pro+ Required"}),e.jsx("span",{className:"text-[10px] text-muted-foreground",children:"Uses premium request quota"})]}),e.jsx("div",{className:"flex flex-wrap gap-2",children:ss.map(t=>e.jsxs(p,{variant:"outline",size:"sm",className:"text-xs h-7 gap-1",onClick:()=>W(t),title:t.description,children:[e.jsx(ae,{className:"w-3 h-3"}),t.name]},t.name))})]})]}),e.jsx(q,{}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-sm font-medium mb-2",children:"Model Mapping"}),e.jsx("p",{className:"text-xs text-muted-foreground mb-4",children:"Configure which models to use for each tier"}),e.jsxs("div",{className:"space-y-4",children:[e.jsx(F,{label:"Default Model",description:"Used when no specific tier is requested",value:b,onChange:t=>u("model",t),models:l,disabled:r}),e.jsx(F,{label:"Opus (Most capable)",description:"For complex reasoning tasks",value:X||b,onChange:t=>u("opusModel",t),models:l,disabled:r}),e.jsx(F,{label:"Sonnet (Balanced)",description:"Balance of speed and capability",value:Y||b,onChange:t=>u("sonnetModel",t),models:l,disabled:r}),e.jsx(F,{label:"Haiku (Fast)",description:"Quick responses for simple tasks",value:Z||b,onChange:t=>u("haikuModel",t),models:l,disabled:r})]})]})]})})}),e.jsx(O,{value:"settings",className:"flex-1 mt-0 border-0 p-0 data-[state=inactive]:hidden flex flex-col overflow-hidden",children:e.jsx(A,{className:"flex-1",children:e.jsxs("div",{className:"p-4 space-y-6",children:[e.jsxs("div",{className:"flex items-center justify-between rounded-lg border p-4",children:[e.jsxs("div",{className:"space-y-0.5",children:[e.jsx(w,{htmlFor:"enabled",className:"text-sm font-medium",children:"Enable Copilot"}),e.jsx("p",{className:"text-xs text-muted-foreground",children:"Allow using GitHub Copilot subscription"})]}),e.jsx(D,{id:"enabled",checked:z,onCheckedChange:t=>u("enabled",t)})]}),e.jsxs("div",{className:"space-y-4",children:[e.jsx("h3",{className:"text-sm font-medium",children:"Basic Settings"}),e.jsxs("div",{className:"space-y-2",children:[e.jsx(w,{htmlFor:"port",className:"text-xs",children:"Port"}),e.jsx(te,{id:"port",type:"number",value:U,onChange:t=>u("port",parseInt(t.target.value,10)),min:1024,max:65535,className:"max-w-[150px] h-8"})]}),e.jsxs("div",{className:"space-y-2",children:[e.jsx(w,{htmlFor:"account-type",className:"text-xs",children:"Account Type"}),e.jsxs(le,{value:H,onValueChange:t=>u("accountType",t),children:[e.jsx(oe,{id:"account-type",className:"max-w-[150px] h-8",children:e.jsx(re,{})}),e.jsxs(ce,{children:[e.jsx(L,{value:"individual",children:"Individual"}),e.jsx(L,{value:"business",children:"Business"}),e.jsx(L,{value:"enterprise",children:"Enterprise"})]})]})]})]}),e.jsx(q,{}),e.jsxs("div",{className:"space-y-4",children:[e.jsx("h3",{className:"text-sm font-medium",children:"Rate Limiting"}),e.jsxs("div",{className:"space-y-2",children:[e.jsx(w,{htmlFor:"rate-limit",className:"text-xs",children:"Rate Limit (seconds)"}),e.jsx(te,{id:"rate-limit",type:"number",value:_,onChange:t=>u("rateLimit",t.target.value),placeholder:"No limit",min:0,className:"max-w-[150px] h-8"})]}),e.jsxs("div",{className:"flex items-center justify-between rounded-lg border p-3",children:[e.jsxs("div",{className:"space-y-0.5",children:[e.jsx(w,{htmlFor:"wait-on-limit",className:"text-xs",children:"Wait on Rate Limit"}),e.jsx("p",{className:"text-[10px] text-muted-foreground",children:"Wait instead of error when limit hit"})]}),e.jsx(D,{id:"wait-on-limit",checked:V,onCheckedChange:t=>u("waitOnLimit",t)})]})]}),e.jsx(q,{}),e.jsxs("div",{className:"space-y-4",children:[e.jsx("h3",{className:"text-sm font-medium",children:"Daemon Settings"}),e.jsxs("div",{className:"flex items-center justify-between rounded-lg border p-3",children:[e.jsxs("div",{className:"space-y-0.5",children:[e.jsx(w,{htmlFor:"auto-start",className:"text-xs",children:"Auto-start Daemon"}),e.jsx("p",{className:"text-[10px] text-muted-foreground",children:"Start copilot-api when using profile"})]}),e.jsx(D,{id:"auto-start",checked:B,onCheckedChange:t=>u("autoStart",t)})]})]})]})})}),e.jsx(O,{value:"info",className:"h-full mt-0 border-0 p-0 data-[state=inactive]:hidden",children:e.jsx(A,{className:"h-full",children:e.jsxs("div",{className:"p-4 space-y-6",children:[e.jsxs("div",{children:[e.jsxs("h3",{className:"text-sm font-medium flex items-center gap-2 mb-3",children:[e.jsx(Ee,{className:"w-4 h-4"}),"Configuration Info"]}),e.jsxs("div",{className:"space-y-3 bg-card rounded-lg border p-4 shadow-sm",children:[e.jsxs("div",{className:"grid grid-cols-[100px_1fr] gap-2 text-sm items-center",children:[e.jsx("span",{className:"font-medium text-muted-foreground",children:"Provider"}),e.jsx("span",{className:"font-mono",children:"GitHub Copilot"})]}),n&&e.jsxs(e.Fragment,{children:[e.jsxs("div",{className:"grid grid-cols-[100px_1fr] gap-2 text-sm items-center",children:[e.jsx("span",{className:"font-medium text-muted-foreground",children:"File Path"}),e.jsxs("div",{className:"flex items-center gap-2 min-w-0",children:[e.jsx("code",{className:"bg-muted px-1.5 py-0.5 rounded text-xs break-all",children:n.path}),e.jsx(de,{value:n.path,size:"icon",className:"h-5 w-5"})]})]}),e.jsxs("div",{className:"grid grid-cols-[100px_1fr] gap-2 text-sm items-center",children:[e.jsx("span",{className:"font-medium text-muted-foreground",children:"Status"}),e.jsx(v,{variant:"outline",className:n.exists?"w-fit text-green-600 border-green-200 bg-green-50":"w-fit text-muted-foreground",children:n.exists?"File exists":"Using defaults"})]})]})]})]}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-sm font-medium mb-3",children:"Quick Usage"}),e.jsxs("div",{className:"space-y-3 bg-card rounded-lg border p-4 shadow-sm",children:[e.jsx(P,{label:"Run with Copilot",command:"ccs copilot"}),e.jsx(P,{label:"Authenticate",command:"ccs copilot auth"}),e.jsx(P,{label:"Start daemon",command:"ccs copilot --start"}),e.jsx(P,{label:"Stop daemon",command:"ccs copilot --stop"})]})]})]})})})]})]})}),Ne=()=>e.jsx(h.Suspense,{fallback:e.jsxs("div",{className:"flex items-center justify-center h-full",children:[e.jsx(J,{className:"w-6 h-6 animate-spin text-muted-foreground"}),e.jsx("span",{className:"ml-2 text-muted-foreground",children:"Loading editor..."})]}),children:e.jsxs("div",{className:"h-full flex flex-col",children:[!I&&g!==null&&e.jsxs("div",{className:"mb-2 px-3 py-2 bg-destructive/10 text-destructive text-sm rounded-md flex items-center gap-2 mx-6 mt-4 shrink-0",children:[e.jsx(Te,{className:"w-4 h-4"}),"Invalid JSON syntax"]}),e.jsx("div",{className:"flex-1 overflow-hidden px-6 pb-4 pt-4",children:e.jsx("div",{className:"h-full border rounded-md overflow-hidden bg-background",children:e.jsx(We,{value:k,onChange:fe,language:"json",minHeight:"100%"})})}),e.jsx("div",{className:"mx-6 mb-4",children:e.jsx("div",{className:"border rounded-md overflow-hidden",children:e.jsx(Se,{profileEnv:n?.settings?.env})})})]})});return e.jsxs("div",{className:"flex-1 flex flex-col overflow-hidden",children:[e.jsxs("div",{className:"px-6 py-4 border-b bg-background flex items-center justify-between shrink-0",children:[e.jsx("div",{className:"flex items-center gap-3",children:e.jsxs("div",{children:[e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx("h2",{className:"text-lg font-semibold",children:"Copilot Configuration"}),n&&e.jsx(v,{variant:"outline",className:"text-xs",children:"copilot.settings.json"})]}),n&&e.jsxs("p",{className:"text-xs text-muted-foreground mt-0.5",children:["Last modified:"," ",n.exists?new Date(n.mtime).toLocaleString():"Never saved"]})]})}),e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx(p,{variant:"ghost",size:"sm",onClick:()=>f(),disabled:d,children:e.jsx(me,{className:`w-4 h-4 ${d?"animate-spin":""}`})}),e.jsx(p,{size:"sm",onClick:ee,disabled:i||N||!ge||!I,children:i||N?e.jsxs(e.Fragment,{children:[e.jsx(J,{className:"w-4 h-4 mr-1 animate-spin"}),"Saving..."]}):e.jsxs(e.Fragment,{children:[e.jsx(Me,{className:"w-4 h-4 mr-1"}),"Save"]})})]})]}),e.jsxs("div",{className:"flex-1 flex divide-x overflow-hidden",children:[e.jsx("div",{className:"w-[540px] shrink-0 flex flex-col overflow-hidden bg-muted/5",children:je()}),e.jsxs("div",{className:"flex-1 min-w-0 flex flex-col overflow-hidden",children:[e.jsxs("div",{className:"px-6 py-2 bg-muted/30 border-b flex items-center gap-2 shrink-0 h-[45px]",children:[e.jsx(Ae,{className:"w-4 h-4 text-muted-foreground"}),e.jsx("span",{className:"text-sm font-medium text-muted-foreground",children:"Raw Configuration (JSON)"})]}),Ne()]})]}),e.jsx(we,{open:pe,title:"File Modified Externally",description:"This settings file was modified by another process. Overwrite with your changes or discard?",confirmText:"Overwrite",variant:"destructive",onConfirm:()=>se(!0),onCancel:()=>se(!1)})]})}function P({label:s,command:a}){return e.jsxs("div",{children:[e.jsx("label",{className:"text-xs text-muted-foreground",children:s}),e.jsxs("div",{className:"mt-1 flex gap-2",children:[e.jsx("code",{className:"flex-1 px-2 py-1.5 bg-muted rounded text-xs font-mono truncate",children:a}),e.jsx(de,{value:a,size:"icon",className:"h-6 w-6"})]})]})}function $({title:s,children:a}){return e.jsxs("div",{className:"space-y-2",children:[e.jsx("div",{className:"text-xs font-medium text-muted-foreground uppercase tracking-wide px-3",children:s}),e.jsx("div",{className:"space-y-1",children:a})]})}function M({icon:s,label:a,status:l,statusText:r,variant:n="default"}){return e.jsxs("div",{className:"flex items-center gap-3 px-3 py-2 rounded-lg bg-muted/50",children:[e.jsx(s,{className:"w-4 h-4 text-muted-foreground shrink-0"}),e.jsx("div",{className:"flex-1 min-w-0",children:e.jsx("span",{className:"text-sm",children:a})}),e.jsx("div",{className:"flex items-center gap-1.5",children:l?e.jsxs(e.Fragment,{children:[e.jsx(ue,{className:K("w-4 h-4",n==="warning"?"text-yellow-500":"text-green-500")}),e.jsx("span",{className:K("text-xs",n==="warning"?"text-yellow-500":"text-green-500"),children:r||"Yes"})]}):e.jsxs(e.Fragment,{children:[e.jsx(xe,{className:"w-4 h-4 text-muted-foreground"}),e.jsx("span",{className:"text-xs text-muted-foreground",children:r||"No"})]})})]})}function ns(){return e.jsxs("div",{className:"space-y-4 p-4",children:[e.jsx(j,{className:"h-8 w-full"}),e.jsx(j,{className:"h-12 w-full"}),e.jsx(j,{className:"h-12 w-full"}),e.jsx(j,{className:"h-12 w-full"})]})}function ps(){const{status:s,statusLoading:a,refetchStatus:l,startAuth:r,isAuthenticating:n,startDaemon:d,isStartingDaemon:c,stopDaemon:i,isStoppingDaemon:x,install:N,isInstalling:f}=he();return e.jsxs("div",{className:"h-[calc(100vh-100px)] flex",children:[e.jsxs("div",{className:"w-80 border-r flex flex-col bg-muted/30 shrink-0",children:[e.jsxs("div",{className:"p-4 border-b bg-background",children:[e.jsxs("div",{className:"flex items-center justify-between mb-1",children:[e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx(Ie,{className:"w-5 h-5 text-primary"}),e.jsx("h1",{className:"font-semibold",children:"Copilot"})]}),e.jsx(p,{variant:"ghost",size:"icon",className:"h-8 w-8",onClick:()=>l(),disabled:a,children:e.jsx(me,{className:K("w-4 h-4",a&&"animate-spin")})})]}),e.jsx("p",{className:"text-xs text-muted-foreground",children:"GitHub Copilot proxy"})]}),e.jsx(A,{className:"flex-1",children:a?e.jsx(ns,{}):e.jsxs("div",{className:"p-3 space-y-4",children:[e.jsxs("div",{className:"rounded-md border border-yellow-500/50 bg-yellow-500/15 p-3 space-y-1.5",children:[e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx(Re,{className:"h-4 w-4 text-yellow-600 dark:text-yellow-400 shrink-0"}),e.jsx("span",{className:"text-xs font-semibold text-yellow-800 dark:text-yellow-200",children:"Unofficial API - Use at Your Own Risk"})]}),e.jsxs("ul",{className:"text-[11px] text-yellow-700 dark:text-yellow-300 space-y-0.5 pl-6 list-disc",children:[e.jsx("li",{children:"Reverse-engineered API - may break anytime"}),e.jsx("li",{children:"Excessive use may trigger account restrictions"}),e.jsx("li",{children:"No warranty, no responsibility from CCS"})]})]}),e.jsxs($,{title:"Setup",children:[e.jsx(M,{icon:Oe,label:"copilot-api",status:s?.installed??!1,statusText:s?.installed?s.version?`v${s.version}`:"Installed":"Missing"}),!s?.installed&&e.jsx(p,{size:"sm",className:"w-full mt-2",onClick:()=>N(void 0),disabled:f,children:f?e.jsxs(e.Fragment,{children:[e.jsx(J,{className:"w-3.5 h-3.5 mr-1.5 animate-spin"}),"Installing..."]}):e.jsxs(e.Fragment,{children:[e.jsx(qe,{className:"w-3.5 h-3.5 mr-1.5"}),"Install copilot-api"]})}),s?.installed&&e.jsx(M,{icon:ne,label:"Integration",status:s?.enabled??!1,statusText:s?.enabled?"Enabled":"Disabled"})]}),s?.installed&&e.jsxs($,{title:"Auth",children:[e.jsx(M,{icon:De,label:"GitHub",status:s?.authenticated??!1,statusText:s?.authenticated?"Connected":"Not Connected"}),!s?.authenticated&&e.jsx(p,{size:"sm",className:"w-full mt-2",onClick:()=>r(),disabled:n,children:n?"Authenticating...":"Authenticate"})]}),s?.authenticated&&e.jsxs($,{title:"Daemon",children:[e.jsx(M,{icon:Qe,label:"Status",status:s?.daemon_running??!1,statusText:s?.daemon_running?"Running":"Stopped"}),e.jsxs("div",{className:"px-3 py-1 text-xs text-muted-foreground",children:["Port: ",s?.port??4141]}),e.jsx("div",{className:"px-1",children:s?.daemon_running?e.jsxs(p,{size:"sm",variant:"outline",className:"w-full",onClick:()=>i(),disabled:x,children:[e.jsx($e,{className:"w-3.5 h-3.5 mr-1.5"}),x?"Stopping...":"Stop"]}):e.jsxs(p,{size:"sm",variant:"outline",className:"w-full",onClick:()=>d(),disabled:c,children:[e.jsx(ne,{className:"w-3.5 h-3.5 mr-1.5"}),c?"Starting...":"Start"]})})]})]})}),e.jsx("div",{className:"p-3 border-t bg-background text-xs text-muted-foreground",children:e.jsxs("div",{className:"flex items-center justify-between",children:[e.jsx("span",{children:"Proxy"}),s?.daemon_running?e.jsxs("span",{className:"flex items-center gap-1",children:[e.jsx(ue,{className:"w-3 h-3 text-green-500"}),"Active"]}):e.jsxs("span",{className:"flex items-center gap-1",children:[e.jsx(xe,{className:"w-3 h-3 text-muted-foreground"}),"Inactive"]})]})})]}),e.jsx("div",{className:"flex-1 flex flex-col min-w-0 bg-background overflow-hidden",children:e.jsx(as,{})})]})}export{ps as CopilotPage};
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import{c as H}from"./react-vendor-FspHSO0w.js";var Se=e=>e.type==="checkbox",he=e=>e instanceof Date,K=e=>e==null;const cr=e=>typeof e=="object";var j=e=>!K(e)&&!Array.isArray(e)&&cr(e)&&!he(e),Mr=e=>j(e)&&e.target?Se(e.target)?e.target.checked:e.target.value:e,Br=e=>e.substring(0,e.search(/\.\d+(\.|$)/))||e,Wr=(e,t)=>e.has(Br(t)),qr=e=>{const t=e.constructor&&e.constructor.prototype;return j(t)&&t.hasOwnProperty("isPrototypeOf")},lt=typeof window<"u"&&typeof window.HTMLElement<"u"&&typeof document<"u";function M(e){let t;const r=Array.isArray(e),n=typeof FileList<"u"?e instanceof FileList:!1;if(e instanceof Date)t=new Date(e);else if(!(lt&&(e instanceof Blob||n))&&(r||j(e)))if(t=r?[]:Object.create(Object.getPrototypeOf(e)),!r&&!qr(e))t=e;else for(const o in e)e.hasOwnProperty(o)&&(t[o]=M(e[o]));else return e;return t}var Be=e=>/^\w*$/.test(e),R=e=>e===void 0,ft=e=>Array.isArray(e)?e.filter(Boolean):[],dt=e=>ft(e.replace(/["|']|\]/g,"").split(/\.|\[/)),g=(e,t,r)=>{if(!t||!j(e))return r;const n=(Be(t)?[t]:dt(t)).reduce((o,s)=>K(o)?o:o[s],e);return R(n)||n===e?R(e[t])?r:e[t]:n},se=e=>typeof e=="boolean",E=(e,t,r)=>{let n=-1;const o=Be(t)?[t]:dt(t),s=o.length,i=s-1;for(;++n<s;){const a=o[n];let _=r;if(n!==i){const v=e[a];_=j(v)||Array.isArray(v)?v:isNaN(+o[n+1])?{}:[]}if(a==="__proto__"||a==="constructor"||a==="prototype")return;e[a]=_,e=e[a]}};const Ot={BLUR:"blur",FOCUS_OUT:"focusout"},te={onBlur:"onBlur",onChange:"onChange",onSubmit:"onSubmit",onTouched:"onTouched",all:"all"},ue={max:"max",min:"min",maxLength:"maxLength",minLength:"minLength",pattern:"pattern",required:"required",validate:"validate"},Jr=H.createContext(null);Jr.displayName="HookFormContext";var Kr=(e,t,r,n=!0)=>{const o={defaultValues:t._defaultValues};for(const s in e)Object.defineProperty(o,s,{get:()=>{const i=s;return t._proxyFormState[i]!==te.all&&(t._proxyFormState[i]=!n||te.all),e[i]}});return o};const Hr=typeof window<"u"?H.useLayoutEffect:H.useEffect;var G=e=>typeof e=="string",Gr=(e,t,r,n,o)=>G(e)?(n&&t.watch.add(e),g(r,e,o)):Array.isArray(e)?e.map(s=>(n&&t.watch.add(s),g(r,s))):(n&&(t.watchAll=!0),r),st=e=>K(e)||!cr(e);function le(e,t,r=new WeakSet){if(st(e)||st(t))return Object.is(e,t);if(he(e)&&he(t))return e.getTime()===t.getTime();const n=Object.keys(e),o=Object.keys(t);if(n.length!==o.length)return!1;if(r.has(e)||r.has(t))return!0;r.add(e),r.add(t);for(const s of n){const i=e[s];if(!o.includes(s))return!1;if(s!=="ref"){const a=t[s];if(he(i)&&he(a)||j(i)&&j(a)||Array.isArray(i)&&Array.isArray(a)?!le(i,a,r):!Object.is(i,a))return!1}}return!0}var Xr=(e,t,r,n,o)=>t?{...r[e],types:{...r[e]&&r[e].types?r[e].types:{},[n]:o||!0}}:{},Ee=e=>Array.isArray(e)?e:[e],St=()=>{let e=[];return{get observers(){return e},next:o=>{for(const s of e)s.next&&s.next(o)},subscribe:o=>(e.push(o),{unsubscribe:()=>{e=e.filter(s=>s!==o)}}),unsubscribe:()=>{e=[]}}};function ar(e,t){const r={};for(const n in e)if(e.hasOwnProperty(n)){const o=e[n],s=t[n];if(o&&j(o)&&s){const i=ar(o,s);j(i)&&(r[n]=i)}else e[n]&&(r[n]=s)}return r}var q=e=>j(e)&&!Object.keys(e).length,ht=e=>e.type==="file",re=e=>typeof e=="function",Ue=e=>{if(!lt)return!1;const t=e?e.ownerDocument:0;return e instanceof(t&&t.defaultView?t.defaultView.HTMLElement:HTMLElement)},lr=e=>e.type==="select-multiple",pt=e=>e.type==="radio",Yr=e=>pt(e)||Se(e),ot=e=>Ue(e)&&e.isConnected;function Qr(e,t){const r=t.slice(0,-1).length;let n=0;for(;n<r;)e=R(e)?n++:e[t[n++]];return e}function en(e){for(const t in e)if(e.hasOwnProperty(t)&&!R(e[t]))return!1;return!0}function U(e,t){const r=Array.isArray(t)?t:Be(t)?[t]:dt(t),n=r.length===1?e:Qr(e,r),o=r.length-1,s=r[o];return n&&delete n[s],o!==0&&(j(n)&&q(n)||Array.isArray(n)&&en(n))&&U(e,r.slice(0,-1)),e}var tn=e=>{for(const t in e)if(re(e[t]))return!0;return!1};function fr(e){return Array.isArray(e)||j(e)&&!tn(e)}function it(e,t={}){for(const r in e){const n=e[r];fr(n)?(t[r]=Array.isArray(n)?[]:{},it(n,t[r])):R(n)||(t[r]=!0)}return t}function we(e,t,r){r||(r=it(t));for(const n in e){const o=e[n];if(fr(o))R(t)||st(r[n])?r[n]=it(o,Array.isArray(o)?[]:{}):we(o,K(t)?{}:t[n],r[n]);else{const s=t[n];r[n]=!le(o,s)}}return r}const xt={value:!1,isValid:!1},Vt={value:!0,isValid:!0};var dr=e=>{if(Array.isArray(e)){if(e.length>1){const t=e.filter(r=>r&&r.checked&&!r.disabled).map(r=>r.value);return{value:t,isValid:!!t.length}}return e[0].checked&&!e[0].disabled?e[0].attributes&&!R(e[0].attributes.value)?R(e[0].value)||e[0].value===""?Vt:{value:e[0].value,isValid:!0}:Vt:xt}return xt},hr=(e,{valueAsNumber:t,valueAsDate:r,setValueAs:n})=>R(e)?e:t?e===""?NaN:e&&+e:r&&G(e)?new Date(e):n?n(e):e;const Pt={isValid:!1,value:null};var pr=e=>Array.isArray(e)?e.reduce((t,r)=>r&&r.checked&&!r.disabled?{isValid:!0,value:r.value}:t,Pt):Pt;function Tt(e){const t=e.ref;return ht(t)?t.files:pt(t)?pr(e.refs).value:lr(t)?[...t.selectedOptions].map(({value:r})=>r):Se(t)?dr(e.refs).value:hr(R(t.value)?e.ref.value:t.value,e)}var rn=(e,t,r,n)=>{const o={};for(const s of e){const i=g(t,s);i&&E(o,s,i._f)}return{criteriaMode:r,names:[...e],fields:o,shouldUseNativeValidation:n}},je=e=>e instanceof RegExp,Ae=e=>R(e)?e:je(e)?e.source:j(e)?je(e.value)?e.value.source:e.value:e,It=e=>({isOnSubmit:!e||e===te.onSubmit,isOnBlur:e===te.onBlur,isOnChange:e===te.onChange,isOnAll:e===te.all,isOnTouch:e===te.onTouched});const Ct="AsyncFunction";var nn=e=>!!e&&!!e.validate&&!!(re(e.validate)&&e.validate.constructor.name===Ct||j(e.validate)&&Object.values(e.validate).find(t=>t.constructor.name===Ct)),on=e=>e.mount&&(e.required||e.min||e.max||e.maxLength||e.minLength||e.pattern||e.validate),Rt=(e,t,r)=>!r&&(t.watchAll||t.watch.has(e)||[...t.watch].some(n=>e.startsWith(n)&&/^\.\w+/.test(e.slice(n.length))));const De=(e,t,r,n)=>{for(const o of r||Object.keys(e)){const s=g(e,o);if(s){const{_f:i,...a}=s;if(i){if(i.refs&&i.refs[0]&&t(i.refs[0],o)&&!n)return!0;if(i.ref&&t(i.ref,i.name)&&!n)return!0;if(De(a,t))break}else if(j(a)&&De(a,t))break}}};function Ut(e,t,r){const n=g(e,r);if(n||Be(r))return{error:n,name:r};const o=r.split(".");for(;o.length;){const s=o.join("."),i=g(t,s),a=g(e,s);if(i&&!Array.isArray(i)&&r!==s)return{name:r};if(a&&a.type)return{name:s,error:a};if(a&&a.root&&a.root.type)return{name:`${s}.root`,error:a.root};o.pop()}return{name:r}}var sn=(e,t,r,n)=>{r(e);const{name:o,...s}=e;return q(s)||Object.keys(s).length>=Object.keys(t).length||Object.keys(s).find(i=>t[i]===(!n||te.all))},un=(e,t,r)=>!e||!t||e===t||Ee(e).some(n=>n&&(r?n===t:n.startsWith(t)||t.startsWith(n))),cn=(e,t,r,n,o)=>o.isOnAll?!1:!r&&o.isOnTouch?!(t||e):(r?n.isOnBlur:o.isOnBlur)?!e:(r?n.isOnChange:o.isOnChange)?e:!0,an=(e,t)=>!ft(g(e,t)).length&&U(e,t),ln=(e,t,r)=>{const n=Ee(g(e,r));return E(n,"root",t[r]),E(e,r,n),e};function jt(e,t,r="validate"){if(G(e)||Array.isArray(e)&&e.every(G)||se(e)&&!e)return{type:r,message:G(e)?e:"",ref:t}}var ye=e=>j(e)&&!je(e)?e:{value:e,message:""},Lt=async(e,t,r,n,o,s)=>{const{ref:i,refs:a,required:_,maxLength:v,minLength:y,min:k,max:m,pattern:S,validate:T,name:V,valueAsNumber:Q,mount:Ze}=e._f,z=g(r,V);if(!Ze||t.has(V))return{};const L=a?a[0]:i,I=Z=>{o&&L.reportValidity&&(L.setCustomValidity(se(Z)?"":Z||""),L.reportValidity())},O={},xe=pt(i),ce=Se(i),Ye=xe||ce,ee=(Q||ht(i))&&R(i.value)&&R(z)||Ue(i)&&i.value===""||z===""||Array.isArray(z)&&!z.length,de=Xr.bind(null,V,n,O),ne=(Z,A,C,W=ue.maxLength,J=ue.minLength)=>{const oe=Z?A:C;O[V]={type:Z?W:J,message:oe,ref:i,...de(Z?W:J,oe)}};if(s?!Array.isArray(z)||!z.length:_&&(!Ye&&(ee||K(z))||se(z)&&!z||ce&&!dr(a).isValid||xe&&!pr(a).isValid)){const{value:Z,message:A}=G(_)?{value:!!_,message:_}:ye(_);if(Z&&(O[V]={type:ue.required,message:A,ref:L,...de(ue.required,A)},!n))return I(A),O}if(!ee&&(!K(k)||!K(m))){let Z,A;const C=ye(m),W=ye(k);if(!K(z)&&!isNaN(z)){const J=i.valueAsNumber||z&&+z;K(C.value)||(Z=J>C.value),K(W.value)||(A=J<W.value)}else{const J=i.valueAsDate||new Date(z),oe=Ve=>new Date(new Date().toDateString()+" "+Ve),$e=i.type=="time",ve=i.type=="week";G(C.value)&&z&&(Z=$e?oe(z)>oe(C.value):ve?z>C.value:J>new Date(C.value)),G(W.value)&&z&&(A=$e?oe(z)<oe(W.value):ve?z<W.value:J<new Date(W.value))}if((Z||A)&&(ne(!!Z,C.message,W.message,ue.max,ue.min),!n))return I(O[V].message),O}if((v||y)&&!ee&&(G(z)||s&&Array.isArray(z))){const Z=ye(v),A=ye(y),C=!K(Z.value)&&z.length>+Z.value,W=!K(A.value)&&z.length<+A.value;if((C||W)&&(ne(C,Z.message,A.message),!n))return I(O[V].message),O}if(S&&!ee&&G(z)){const{value:Z,message:A}=ye(S);if(je(Z)&&!z.match(Z)&&(O[V]={type:ue.pattern,message:A,ref:i,...de(ue.pattern,A)},!n))return I(A),O}if(T){if(re(T)){const Z=await T(z,r),A=jt(Z,L);if(A&&(O[V]={...A,...de(ue.validate,A.message)},!n))return I(A.message),O}else if(j(T)){let Z={};for(const A in T){if(!q(Z)&&!n)break;const C=jt(await T[A](z,r),L,A);C&&(Z={...C,...de(A,C.message)},I(C.message),n&&(O[V]=Z))}if(!q(Z)&&(O[V]={ref:L,...Z},!n))return O}}return I(!0),O};const fn={mode:te.onSubmit,reValidateMode:te.onChange,shouldFocusError:!0};function dn(e={}){let t={...fn,...e},r={submitCount:0,isDirty:!1,isReady:!1,isLoading:re(t.defaultValues),isValidating:!1,isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,touchedFields:{},dirtyFields:{},validatingFields:{},errors:t.errors||{},disabled:t.disabled||!1},n={},o=j(t.defaultValues)||j(t.values)?M(t.defaultValues||t.values)||{}:{},s=t.shouldUnregister?{}:M(o),i={action:!1,mount:!1,watch:!1},a={mount:new Set,disabled:new Set,unMount:new Set,array:new Set,watch:new Set},_,v=0;const y={isDirty:!1,dirtyFields:!1,validatingFields:!1,touchedFields:!1,isValidating:!1,isValid:!1,errors:!1};let k={...y};const m={array:St(),state:St()},S=t.criteriaMode===te.all,T=u=>c=>{clearTimeout(v),v=setTimeout(u,c)},V=async u=>{if(!t.disabled&&(y.isValid||k.isValid||u)){const c=t.resolver?q((await ce()).errors):await ee(n,!0);c!==r.isValid&&m.state.next({isValid:c})}},Q=(u,c)=>{!t.disabled&&(y.isValidating||y.validatingFields||k.isValidating||k.validatingFields)&&((u||Array.from(a.mount)).forEach(l=>{l&&(c?E(r.validatingFields,l,c):U(r.validatingFields,l))}),m.state.next({validatingFields:r.validatingFields,isValidating:!q(r.validatingFields)}))},Ze=(u,c=[],l,p,h=!0,d=!0)=>{if(p&&l&&!t.disabled){if(i.action=!0,d&&Array.isArray(g(n,u))){const w=l(g(n,u),p.argA,p.argB);h&&E(n,u,w)}if(d&&Array.isArray(g(r.errors,u))){const w=l(g(r.errors,u),p.argA,p.argB);h&&E(r.errors,u,w),an(r.errors,u)}if((y.touchedFields||k.touchedFields)&&d&&Array.isArray(g(r.touchedFields,u))){const w=l(g(r.touchedFields,u),p.argA,p.argB);h&&E(r.touchedFields,u,w)}(y.dirtyFields||k.dirtyFields)&&(r.dirtyFields=we(o,s)),m.state.next({name:u,isDirty:ne(u,c),dirtyFields:r.dirtyFields,errors:r.errors,isValid:r.isValid})}else E(s,u,c)},z=(u,c)=>{E(r.errors,u,c),m.state.next({errors:r.errors})},L=u=>{r.errors=u,m.state.next({errors:r.errors,isValid:!1})},I=(u,c,l,p)=>{const h=g(n,u);if(h){const d=g(s,u,R(l)?g(o,u):l);R(d)||p&&p.defaultChecked||c?E(s,u,c?d:Tt(h._f)):C(u,d),i.mount&&!i.action&&V()}},O=(u,c,l,p,h)=>{let d=!1,w=!1;const $={name:u};if(!t.disabled){if(!l||p){(y.isDirty||k.isDirty)&&(w=r.isDirty,r.isDirty=$.isDirty=ne(),d=w!==$.isDirty);const D=le(g(o,u),c);w=!!g(r.dirtyFields,u),D?U(r.dirtyFields,u):E(r.dirtyFields,u,!0),$.dirtyFields=r.dirtyFields,d=d||(y.dirtyFields||k.dirtyFields)&&w!==!D}if(l){const D=g(r.touchedFields,u);D||(E(r.touchedFields,u,l),$.touchedFields=r.touchedFields,d=d||(y.touchedFields||k.touchedFields)&&D!==l)}d&&h&&m.state.next($)}return d?$:{}},xe=(u,c,l,p)=>{const h=g(r.errors,u),d=(y.isValid||k.isValid)&&se(c)&&r.isValid!==c;if(t.delayError&&l?(_=T(()=>z(u,l)),_(t.delayError)):(clearTimeout(v),_=null,l?E(r.errors,u,l):U(r.errors,u)),(l?!le(h,l):h)||!q(p)||d){const w={...p,...d&&se(c)?{isValid:c}:{},errors:r.errors,name:u};r={...r,...w},m.state.next(w)}},ce=async u=>{Q(u,!0);const c=await t.resolver(s,t.context,rn(u||a.mount,n,t.criteriaMode,t.shouldUseNativeValidation));return Q(u),c},Ye=async u=>{const{errors:c}=await ce(u);if(u)for(const l of u){const p=g(c,l);p?E(r.errors,l,p):U(r.errors,l)}else r.errors=c;return c},ee=async(u,c,l={valid:!0})=>{for(const p in u){const h=u[p];if(h){const{_f:d,...w}=h;if(d){const $=a.array.has(d.name),D=h._f&&nn(h._f);D&&y.validatingFields&&Q([d.name],!0);const X=await Lt(h,a.disabled,s,S,t.shouldUseNativeValidation&&!c,$);if(D&&y.validatingFields&&Q([d.name]),X[d.name]&&(l.valid=!1,c))break;!c&&(g(X,d.name)?$?ln(r.errors,X,d.name):E(r.errors,d.name,X[d.name]):U(r.errors,d.name))}!q(w)&&await ee(w,c,l)}}return l.valid},de=()=>{for(const u of a.unMount){const c=g(n,u);c&&(c._f.refs?c._f.refs.every(l=>!ot(l)):!ot(c._f.ref))&&Qe(u)}a.unMount=new Set},ne=(u,c)=>!t.disabled&&(u&&c&&E(s,u,c),!le(Ve(),o)),Z=(u,c,l)=>Gr(u,a,{...i.mount?s:R(c)?o:G(u)?{[u]:c}:c},l,c),A=u=>ft(g(i.mount?s:o,u,t.shouldUnregister?g(o,u,[]):[])),C=(u,c,l={})=>{const p=g(n,u);let h=c;if(p){const d=p._f;d&&(!d.disabled&&E(s,u,hr(c,d)),h=Ue(d.ref)&&K(c)?"":c,lr(d.ref)?[...d.ref.options].forEach(w=>w.selected=h.includes(w.value)):d.refs?Se(d.ref)?d.refs.forEach(w=>{(!w.defaultChecked||!w.disabled)&&(Array.isArray(h)?w.checked=!!h.find($=>$===w.value):w.checked=h===w.value||!!h)}):d.refs.forEach(w=>w.checked=w.value===h):ht(d.ref)?d.ref.value="":(d.ref.value=h,d.ref.type||m.state.next({name:u,values:M(s)})))}(l.shouldDirty||l.shouldTouch)&&O(u,h,l.shouldTouch,l.shouldDirty,!0),l.shouldValidate&&ve(u)},W=(u,c,l)=>{for(const p in c){if(!c.hasOwnProperty(p))return;const h=c[p],d=u+"."+p,w=g(n,d);(a.array.has(u)||j(h)||w&&!w._f)&&!he(h)?W(d,h,l):C(d,h,l)}},J=(u,c,l={})=>{const p=g(n,u),h=a.array.has(u),d=M(c);E(s,u,d),h?(m.array.next({name:u,values:M(s)}),(y.isDirty||y.dirtyFields||k.isDirty||k.dirtyFields)&&l.shouldDirty&&m.state.next({name:u,dirtyFields:we(o,s),isDirty:ne(u,d)})):p&&!p._f&&!K(d)?W(u,d,l):C(u,d,l),Rt(u,a)&&m.state.next({...r,name:u}),m.state.next({name:i.mount?u:void 0,values:M(s)})},oe=async u=>{i.mount=!0;const c=u.target;let l=c.name,p=!0;const h=g(n,l),d=D=>{p=Number.isNaN(D)||he(D)&&isNaN(D.getTime())||le(D,g(s,l,D))},w=It(t.mode),$=It(t.reValidateMode);if(h){let D,X;const Pe=c.type?Tt(h._f):Mr(u),ae=u.type===Ot.BLUR||u.type===Ot.FOCUS_OUT,jr=!on(h._f)&&!t.resolver&&!g(r.errors,l)&&!h._f.deps||cn(ae,g(r.touchedFields,l),r.isSubmitted,$,w),rt=Rt(l,a,ae);E(s,l,Pe),ae?(!c||!c.readOnly)&&(h._f.onBlur&&h._f.onBlur(u),_&&_(0)):h._f.onChange&&h._f.onChange(u);const nt=O(l,Pe,ae),Lr=!q(nt)||rt;if(!ae&&m.state.next({name:l,type:u.type,values:M(s)}),jr)return(y.isValid||k.isValid)&&(t.mode==="onBlur"?ae&&V():ae||V()),Lr&&m.state.next({name:l,...rt?{}:nt});if(!ae&&rt&&m.state.next({...r}),t.resolver){const{errors:Dt}=await ce([l]);if(d(Pe),p){const Nr=Ut(r.errors,n,l),Ft=Ut(Dt,n,Nr.name||l);D=Ft.error,l=Ft.name,X=q(Dt)}}else Q([l],!0),D=(await Lt(h,a.disabled,s,S,t.shouldUseNativeValidation))[l],Q([l]),d(Pe),p&&(D?X=!1:(y.isValid||k.isValid)&&(X=await ee(n,!0)));p&&(h._f.deps&&(!Array.isArray(h._f.deps)||h._f.deps.length>0)&&ve(h._f.deps),xe(l,X,D,nt))}},$e=(u,c)=>{if(g(r.errors,c)&&u.focus)return u.focus(),1},ve=async(u,c={})=>{let l,p;const h=Ee(u);if(t.resolver){const d=await Ye(R(u)?u:h);l=q(d),p=u?!h.some(w=>g(d,w)):l}else u?(p=(await Promise.all(h.map(async d=>{const w=g(n,d);return await ee(w&&w._f?{[d]:w}:w)}))).every(Boolean),!(!p&&!r.isValid)&&V()):p=l=await ee(n);return m.state.next({...!G(u)||(y.isValid||k.isValid)&&l!==r.isValid?{}:{name:u},...t.resolver||!u?{isValid:l}:{},errors:r.errors}),c.shouldFocus&&!p&&De(n,$e,u?h:a.mount),p},Ve=(u,c)=>{let l={...i.mount?s:o};return c&&(l=ar(c.dirtyFields?r.dirtyFields:r.touchedFields,l)),R(u)?l:G(u)?g(l,u):u.map(p=>g(l,p))},wt=(u,c)=>({invalid:!!g((c||r).errors,u),isDirty:!!g((c||r).dirtyFields,u),error:g((c||r).errors,u),isValidating:!!g(r.validatingFields,u),isTouched:!!g((c||r).touchedFields,u)}),Vr=u=>{u&&Ee(u).forEach(c=>U(r.errors,c)),m.state.next({errors:u?r.errors:{}})},bt=(u,c,l)=>{const p=(g(n,u,{_f:{}})._f||{}).ref,h=g(r.errors,u)||{},{ref:d,message:w,type:$,...D}=h;E(r.errors,u,{...D,...c,ref:p}),m.state.next({name:u,errors:r.errors,isValid:!1}),l&&l.shouldFocus&&p&&p.focus&&p.focus()},Pr=(u,c)=>re(u)?m.state.subscribe({next:l=>"values"in l&&u(Z(void 0,c),l)}):Z(u,c,!0),kt=u=>m.state.subscribe({next:c=>{un(u.name,c.name,u.exact)&&sn(c,u.formState||y,Ur,u.reRenderRoot)&&u.callback({values:{...s},...r,...c,defaultValues:o})}}).unsubscribe,Tr=u=>(i.mount=!0,k={...k,...u.formState},kt({...u,formState:k})),Qe=(u,c={})=>{for(const l of u?Ee(u):a.mount)a.mount.delete(l),a.array.delete(l),c.keepValue||(U(n,l),U(s,l)),!c.keepError&&U(r.errors,l),!c.keepDirty&&U(r.dirtyFields,l),!c.keepTouched&&U(r.touchedFields,l),!c.keepIsValidating&&U(r.validatingFields,l),!t.shouldUnregister&&!c.keepDefaultValue&&U(o,l);m.state.next({values:M(s)}),m.state.next({...r,...c.keepDirty?{isDirty:ne()}:{}}),!c.keepIsValid&&V()},zt=({disabled:u,name:c})=>{(se(u)&&i.mount||u||a.disabled.has(c))&&(u?a.disabled.add(c):a.disabled.delete(c))},et=(u,c={})=>{let l=g(n,u);const p=se(c.disabled)||se(t.disabled);return E(n,u,{...l||{},_f:{...l&&l._f?l._f:{ref:{name:u}},name:u,mount:!0,...c}}),a.mount.add(u),l?zt({disabled:se(c.disabled)?c.disabled:t.disabled,name:u}):I(u,!0,c.value),{...p?{disabled:c.disabled||t.disabled}:{},...t.progressive?{required:!!c.required,min:Ae(c.min),max:Ae(c.max),minLength:Ae(c.minLength),maxLength:Ae(c.maxLength),pattern:Ae(c.pattern)}:{},name:u,onChange:oe,onBlur:oe,ref:h=>{if(h){et(u,c),l=g(n,u);const d=R(h.value)&&h.querySelectorAll&&h.querySelectorAll("input,select,textarea")[0]||h,w=Yr(d),$=l._f.refs||[];if(w?$.find(D=>D===d):d===l._f.ref)return;E(n,u,{_f:{...l._f,...w?{refs:[...$.filter(ot),d,...Array.isArray(g(o,u))?[{}]:[]],ref:{type:d.type,name:u}}:{ref:d}}}),I(u,!1,void 0,d)}else l=g(n,u,{}),l._f&&(l._f.mount=!1),(t.shouldUnregister||c.shouldUnregister)&&!(Wr(a.array,u)&&i.action)&&a.unMount.add(u)}}},tt=()=>t.shouldFocusError&&De(n,$e,a.mount),Ir=u=>{se(u)&&(m.state.next({disabled:u}),De(n,(c,l)=>{const p=g(n,l);p&&(c.disabled=p._f.disabled||u,Array.isArray(p._f.refs)&&p._f.refs.forEach(h=>{h.disabled=p._f.disabled||u}))},0,!1))},Zt=(u,c)=>async l=>{let p;l&&(l.preventDefault&&l.preventDefault(),l.persist&&l.persist());let h=M(s);if(m.state.next({isSubmitting:!0}),t.resolver){const{errors:d,values:w}=await ce();r.errors=d,h=M(w)}else await ee(n);if(a.disabled.size)for(const d of a.disabled)U(h,d);if(U(r.errors,"root"),q(r.errors)){m.state.next({errors:{}});try{await u(h,l)}catch(d){p=d}}else c&&await c({...r.errors},l),tt(),setTimeout(tt);if(m.state.next({isSubmitted:!0,isSubmitting:!1,isSubmitSuccessful:q(r.errors)&&!p,submitCount:r.submitCount+1,errors:r.errors}),p)throw p},Cr=(u,c={})=>{g(n,u)&&(R(c.defaultValue)?J(u,M(g(o,u))):(J(u,c.defaultValue),E(o,u,M(c.defaultValue))),c.keepTouched||U(r.touchedFields,u),c.keepDirty||(U(r.dirtyFields,u),r.isDirty=c.defaultValue?ne(u,M(g(o,u))):ne()),c.keepError||(U(r.errors,u),y.isValid&&V()),m.state.next({...r}))},$t=(u,c={})=>{const l=u?M(u):o,p=M(l),h=q(u),d=h?o:p;if(c.keepDefaultValues||(o=l),!c.keepValues){if(c.keepDirtyValues){const w=new Set([...a.mount,...Object.keys(we(o,s))]);for(const $ of Array.from(w))g(r.dirtyFields,$)?E(d,$,g(s,$)):J($,g(d,$))}else{if(lt&&R(u))for(const w of a.mount){const $=g(n,w);if($&&$._f){const D=Array.isArray($._f.refs)?$._f.refs[0]:$._f.ref;if(Ue(D)){const X=D.closest("form");if(X){X.reset();break}}}}if(c.keepFieldsRef)for(const w of a.mount)J(w,g(d,w));else n={}}s=t.shouldUnregister?c.keepDefaultValues?M(o):{}:M(d),m.array.next({values:{...d}}),m.state.next({values:{...d}})}a={mount:c.keepDirtyValues?a.mount:new Set,unMount:new Set,array:new Set,disabled:new Set,watch:new Set,watchAll:!1,focus:""},i.mount=!y.isValid||!!c.keepIsValid||!!c.keepDirtyValues||!t.shouldUnregister&&!q(d),i.watch=!!t.shouldUnregister,i.action=!1,c.keepErrors||(r.errors={}),m.state.next({submitCount:c.keepSubmitCount?r.submitCount:0,isDirty:h?!1:c.keepDirty?r.isDirty:!!(c.keepDefaultValues&&!le(u,o)),isSubmitted:c.keepIsSubmitted?r.isSubmitted:!1,dirtyFields:h?{}:c.keepDirtyValues?c.keepDefaultValues&&s?we(o,s):r.dirtyFields:c.keepDefaultValues&&u?we(o,u):c.keepDirty?r.dirtyFields:{},touchedFields:c.keepTouched?r.touchedFields:{},errors:c.keepErrors?r.errors:{},isSubmitSuccessful:c.keepIsSubmitSuccessful?r.isSubmitSuccessful:!1,isSubmitting:!1,defaultValues:o})},At=(u,c)=>$t(re(u)?u(s):u,c),Rr=(u,c={})=>{const l=g(n,u),p=l&&l._f;if(p){const h=p.refs?p.refs[0]:p.ref;h.focus&&(h.focus(),c.shouldSelect&&re(h.select)&&h.select())}},Ur=u=>{r={...r,...u}},Et={control:{register:et,unregister:Qe,getFieldState:wt,handleSubmit:Zt,setError:bt,_subscribe:kt,_runSchema:ce,_focusError:tt,_getWatch:Z,_getDirty:ne,_setValid:V,_setFieldArray:Ze,_setDisabledField:zt,_setErrors:L,_getFieldArray:A,_reset:$t,_resetDefaultValues:()=>re(t.defaultValues)&&t.defaultValues().then(u=>{At(u,t.resetOptions),m.state.next({isLoading:!1})}),_removeUnmounted:de,_disableForm:Ir,_subjects:m,_proxyFormState:y,get _fields(){return n},get _formValues(){return s},get _state(){return i},set _state(u){i=u},get _defaultValues(){return o},get _names(){return a},set _names(u){a=u},get _formState(){return r},get _options(){return t},set _options(u){t={...t,...u}}},subscribe:Tr,trigger:ve,register:et,handleSubmit:Zt,watch:Pr,setValue:J,getValues:Ve,reset:At,resetField:Cr,clearErrors:Vr,unregister:Qe,setError:bt,setFocus:Rr,getFieldState:wt};return{...Et,formControl:Et}}function _u(e={}){const t=H.useRef(void 0),r=H.useRef(void 0),[n,o]=H.useState({isDirty:!1,isValidating:!1,isLoading:re(e.defaultValues),isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,submitCount:0,dirtyFields:{},touchedFields:{},validatingFields:{},errors:e.errors||{},disabled:e.disabled||!1,isReady:!1,defaultValues:re(e.defaultValues)?void 0:e.defaultValues});if(!t.current)if(e.formControl)t.current={...e.formControl,formState:n},e.defaultValues&&!re(e.defaultValues)&&e.formControl.reset(e.defaultValues,e.resetOptions);else{const{formControl:i,...a}=dn(e);t.current={...a,formState:n}}const s=t.current.control;return s._options=e,Hr(()=>{const i=s._subscribe({formState:s._proxyFormState,callback:()=>o({...s._formState}),reRenderRoot:!0});return o(a=>({...a,isReady:!0})),s._formState.isReady=!0,i},[s]),H.useEffect(()=>s._disableForm(e.disabled),[s,e.disabled]),H.useEffect(()=>{e.mode&&(s._options.mode=e.mode),e.reValidateMode&&(s._options.reValidateMode=e.reValidateMode)},[s,e.mode,e.reValidateMode]),H.useEffect(()=>{e.errors&&(s._setErrors(e.errors),s._focusError())},[s,e.errors]),H.useEffect(()=>{e.shouldUnregister&&s._subjects.state.next({values:s._getWatch()})},[s,e.shouldUnregister]),H.useEffect(()=>{if(s._proxyFormState.isDirty){const i=s._getDirty();i!==n.isDirty&&s._subjects.state.next({isDirty:i})}},[s,n.isDirty]),H.useEffect(()=>{var i;e.values&&!le(e.values,r.current)?(s._reset(e.values,{keepFieldsRef:!0,...s._options.resetOptions}),!((i=s._options.resetOptions)===null||i===void 0)&&i.keepIsValid||s._setValid(),r.current=e.values,o(a=>({...a}))):s._resetDefaultValues()},[s,e.values]),H.useEffect(()=>{s._state.mount||(s._setValid(),s._state.mount=!0),s._state.watch&&(s._state.watch=!1,s._subjects.state.next({...s._formState})),s._removeUnmounted()}),t.current.formState=Kr(n,s),t.current}const Nt=(e,t,r)=>{if(e&&"reportValidity"in e){const n=g(r,t);e.setCustomValidity(n&&n.message||""),e.reportValidity()}},hn=(e,t)=>{for(const r in t.fields){const n=t.fields[r];n&&n.ref&&"reportValidity"in n.ref?Nt(n.ref,r,e):n&&n.refs&&n.refs.forEach(o=>Nt(o,r,e))}},gu=(e,t)=>{t.shouldUseNativeValidation&&hn(e,t);const r={};for(const n in e){const o=g(t.fields,n),s=Object.assign(e[n]||{},{ref:o&&o.ref});if(pn(t.names||Object.keys(e),n)){const i=Object.assign({},g(r,n));E(i,"root",s),E(r,n,i)}else E(r,n,s)}return r},pn=(e,t)=>{const r=Mt(t);return e.some(n=>Mt(n).match(`^${r}\\.\\d+`))};function Mt(e){return e.replace(/\]|\[/g,"")}function f(e,t,r){function n(a,_){if(a._zod||Object.defineProperty(a,"_zod",{value:{def:_,constr:i,traits:new Set},enumerable:!1}),a._zod.traits.has(e))return;a._zod.traits.add(e),t(a,_);const v=i.prototype,y=Object.keys(v);for(let k=0;k<y.length;k++){const m=y[k];m in a||(a[m]=v[m].bind(a))}}const o=r?.Parent??Object;class s extends o{}Object.defineProperty(s,"name",{value:e});function i(a){var _;const v=r?.Parent?new s:this;n(v,a),(_=v._zod).deferred??(_.deferred=[]);for(const y of v._zod.deferred)y();return v}return Object.defineProperty(i,"init",{value:n}),Object.defineProperty(i,Symbol.hasInstance,{value:a=>r?.Parent&&a instanceof r.Parent?!0:a?._zod?.traits?.has(e)}),Object.defineProperty(i,"name",{value:e}),i}class ke extends Error{constructor(){super("Encountered Promise during synchronous parse. Use .parseAsync() instead.")}}class _r extends Error{constructor(t){super(`Encountered unidirectional transform during encode: ${t}`),this.name="ZodEncodeError"}}const gr={};function pe(e){return gr}function _n(e){const t=Object.values(e).filter(n=>typeof n=="number");return Object.entries(e).filter(([n,o])=>t.indexOf(+n)===-1).map(([n,o])=>o)}function ut(e,t){return typeof t=="bigint"?t.toString():t}function _t(e){return{get value(){{const t=e();return Object.defineProperty(this,"value",{value:t}),t}}}}function gt(e){return e==null}function mt(e){const t=e.startsWith("^")?1:0,r=e.endsWith("$")?e.length-1:e.length;return e.slice(t,r)}const Bt=Symbol("evaluating");function F(e,t,r){let n;Object.defineProperty(e,t,{get(){if(n!==Bt)return n===void 0&&(n=Bt,n=r()),n},set(o){Object.defineProperty(e,t,{value:o})},configurable:!0})}function ge(e,t,r){Object.defineProperty(e,t,{value:r,writable:!0,enumerable:!0,configurable:!0})}function me(...e){const t={};for(const r of e){const n=Object.getOwnPropertyDescriptors(r);Object.assign(t,n)}return Object.defineProperties({},t)}function Wt(e){return JSON.stringify(e)}function gn(e){return e.toLowerCase().trim().replace(/[^\w\s-]/g,"").replace(/[\s_-]+/g,"-").replace(/^-+|-+$/g,"")}const mr="captureStackTrace"in Error?Error.captureStackTrace:(...e)=>{};function Le(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)}const mn=_t(()=>{if(typeof navigator<"u"&&navigator?.userAgent?.includes("Cloudflare"))return!1;try{const e=Function;return new e(""),!0}catch{return!1}});function Fe(e){if(Le(e)===!1)return!1;const t=e.constructor;if(t===void 0||typeof t!="function")return!0;const r=t.prototype;return!(Le(r)===!1||Object.prototype.hasOwnProperty.call(r,"isPrototypeOf")===!1)}function vr(e){return Fe(e)?{...e}:Array.isArray(e)?[...e]:e}const vn=new Set(["string","number","symbol"]);function We(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function fe(e,t,r){const n=new e._zod.constr(t??e._zod.def);return(!t||r?.parent)&&(n._zod.parent=e),n}function b(e){const t=e;if(!t)return{};if(typeof t=="string")return{error:()=>t};if(t?.message!==void 0){if(t?.error!==void 0)throw new Error("Cannot specify both `message` and `error` params");t.error=t.message}return delete t.message,typeof t.error=="string"?{...t,error:()=>t.error}:t}function yn(e){return Object.keys(e).filter(t=>e[t]._zod.optin==="optional"&&e[t]._zod.optout==="optional")}function wn(e,t){const r=e._zod.def,n=me(e._zod.def,{get shape(){const o={};for(const s in t){if(!(s in r.shape))throw new Error(`Unrecognized key: "${s}"`);t[s]&&(o[s]=r.shape[s])}return ge(this,"shape",o),o},checks:[]});return fe(e,n)}function bn(e,t){const r=e._zod.def,n=me(e._zod.def,{get shape(){const o={...e._zod.def.shape};for(const s in t){if(!(s in r.shape))throw new Error(`Unrecognized key: "${s}"`);t[s]&&delete o[s]}return ge(this,"shape",o),o},checks:[]});return fe(e,n)}function kn(e,t){if(!Fe(t))throw new Error("Invalid input to extend: expected a plain object");const r=e._zod.def.checks;if(r&&r.length>0)throw new Error("Object schemas containing refinements cannot be extended. Use `.safeExtend()` instead.");const o=me(e._zod.def,{get shape(){const s={...e._zod.def.shape,...t};return ge(this,"shape",s),s},checks:[]});return fe(e,o)}function zn(e,t){if(!Fe(t))throw new Error("Invalid input to safeExtend: expected a plain object");const r={...e._zod.def,get shape(){const n={...e._zod.def.shape,...t};return ge(this,"shape",n),n},checks:e._zod.def.checks};return fe(e,r)}function Zn(e,t){const r=me(e._zod.def,{get shape(){const n={...e._zod.def.shape,...t._zod.def.shape};return ge(this,"shape",n),n},get catchall(){return t._zod.def.catchall},checks:[]});return fe(e,r)}function $n(e,t,r){const n=me(t._zod.def,{get shape(){const o=t._zod.def.shape,s={...o};if(r)for(const i in r){if(!(i in o))throw new Error(`Unrecognized key: "${i}"`);r[i]&&(s[i]=e?new e({type:"optional",innerType:o[i]}):o[i])}else for(const i in o)s[i]=e?new e({type:"optional",innerType:o[i]}):o[i];return ge(this,"shape",s),s},checks:[]});return fe(t,n)}function An(e,t,r){const n=me(t._zod.def,{get shape(){const o=t._zod.def.shape,s={...o};if(r)for(const i in r){if(!(i in s))throw new Error(`Unrecognized key: "${i}"`);r[i]&&(s[i]=new e({type:"nonoptional",innerType:o[i]}))}else for(const i in o)s[i]=new e({type:"nonoptional",innerType:o[i]});return ge(this,"shape",s),s},checks:[]});return fe(t,n)}function be(e,t=0){if(e.aborted===!0)return!0;for(let r=t;r<e.issues.length;r++)if(e.issues[r]?.continue!==!0)return!0;return!1}function yr(e,t){return t.map(r=>{var n;return(n=r).path??(n.path=[]),r.path.unshift(e),r})}function Te(e){return typeof e=="string"?e:e?.message}function _e(e,t,r){const n={...e,path:e.path??[]};if(!e.message){const o=Te(e.inst?._zod.def?.error?.(e))??Te(t?.error?.(e))??Te(r.customError?.(e))??Te(r.localeError?.(e))??"Invalid input";n.message=o}return delete n.inst,delete n.continue,t?.reportInput||delete n.input,n}function vt(e){return Array.isArray(e)?"array":typeof e=="string"?"string":"unknown"}function Oe(...e){const[t,r,n]=e;return typeof t=="string"?{message:t,code:"custom",input:r,inst:n}:{...t}}const wr=(e,t)=>{e.name="$ZodError",Object.defineProperty(e,"_zod",{value:e._zod,enumerable:!1}),Object.defineProperty(e,"issues",{value:t,enumerable:!1}),e.message=JSON.stringify(t,ut,2),Object.defineProperty(e,"toString",{value:()=>e.message,enumerable:!1})},br=f("$ZodError",wr),qe=f("$ZodError",wr,{Parent:Error});function En(e,t=r=>r.message){const r={},n=[];for(const o of e.issues)o.path.length>0?(r[o.path[0]]=r[o.path[0]]||[],r[o.path[0]].push(t(o))):n.push(t(o));return{formErrors:n,fieldErrors:r}}function Dn(e,t=r=>r.message){const r={_errors:[]},n=o=>{for(const s of o.issues)if(s.code==="invalid_union"&&s.errors.length)s.errors.map(i=>n({issues:i}));else if(s.code==="invalid_key")n({issues:s.issues});else if(s.code==="invalid_element")n({issues:s.issues});else if(s.path.length===0)r._errors.push(t(s));else{let i=r,a=0;for(;a<s.path.length;){const _=s.path[a];a===s.path.length-1?(i[_]=i[_]||{_errors:[]},i[_]._errors.push(t(s))):i[_]=i[_]||{_errors:[]},i=i[_],a++}}};return n(e),r}const Je=e=>(t,r,n,o)=>{const s=n?Object.assign(n,{async:!1}):{async:!1},i=t._zod.run({value:r,issues:[]},s);if(i instanceof Promise)throw new ke;if(i.issues.length){const a=new(o?.Err??e)(i.issues.map(_=>_e(_,s,pe())));throw mr(a,o?.callee),a}return i.value},mu=Je(qe),Ke=e=>async(t,r,n,o)=>{const s=n?Object.assign(n,{async:!0}):{async:!0};let i=t._zod.run({value:r,issues:[]},s);if(i instanceof Promise&&(i=await i),i.issues.length){const a=new(o?.Err??e)(i.issues.map(_=>_e(_,s,pe())));throw mr(a,o?.callee),a}return i.value},vu=Ke(qe),He=e=>(t,r,n)=>{const o=n?{...n,async:!1}:{async:!1},s=t._zod.run({value:r,issues:[]},o);if(s instanceof Promise)throw new ke;return s.issues.length?{success:!1,error:new(e??br)(s.issues.map(i=>_e(i,o,pe())))}:{success:!0,data:s.value}},Fn=He(qe),Ge=e=>async(t,r,n)=>{const o=n?Object.assign(n,{async:!0}):{async:!0};let s=t._zod.run({value:r,issues:[]},o);return s instanceof Promise&&(s=await s),s.issues.length?{success:!1,error:new e(s.issues.map(i=>_e(i,o,pe())))}:{success:!0,data:s.value}},On=Ge(qe),Sn=e=>(t,r,n)=>{const o=n?Object.assign(n,{direction:"backward"}):{direction:"backward"};return Je(e)(t,r,o)},xn=e=>(t,r,n)=>Je(e)(t,r,n),Vn=e=>async(t,r,n)=>{const o=n?Object.assign(n,{direction:"backward"}):{direction:"backward"};return Ke(e)(t,r,o)},Pn=e=>async(t,r,n)=>Ke(e)(t,r,n),Tn=e=>(t,r,n)=>{const o=n?Object.assign(n,{direction:"backward"}):{direction:"backward"};return He(e)(t,r,o)},In=e=>(t,r,n)=>He(e)(t,r,n),Cn=e=>async(t,r,n)=>{const o=n?Object.assign(n,{direction:"backward"}):{direction:"backward"};return Ge(e)(t,r,o)},Rn=e=>async(t,r,n)=>Ge(e)(t,r,n),Un=/^[cC][^\s-]{8,}$/,jn=/^[0-9a-z]+$/,Ln=/^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/,Nn=/^[0-9a-vA-V]{20}$/,Mn=/^[A-Za-z0-9]{27}$/,Bn=/^[a-zA-Z0-9_-]{21}$/,Wn=/^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/,qn=/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$/,qt=e=>e?new RegExp(`^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-${e}[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$`):/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/,Jn=/^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/,Kn="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";function Hn(){return new RegExp(Kn,"u")}const Gn=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,Xn=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:))$/,Yn=/^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/([0-9]|[1-2][0-9]|3[0-2])$/,Qn=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,eo=/^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/,kr=/^[A-Za-z0-9_-]*$/,to=/^\+(?:[0-9]){6,14}[0-9]$/,zr="(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))",ro=new RegExp(`^${zr}$`);function Zr(e){const t="(?:[01]\\d|2[0-3]):[0-5]\\d";return typeof e.precision=="number"?e.precision===-1?`${t}`:e.precision===0?`${t}:[0-5]\\d`:`${t}:[0-5]\\d\\.\\d{${e.precision}}`:`${t}(?::[0-5]\\d(?:\\.\\d+)?)?`}function no(e){return new RegExp(`^${Zr(e)}$`)}function oo(e){const t=Zr({precision:e.precision}),r=["Z"];e.local&&r.push(""),e.offset&&r.push("([+-](?:[01]\\d|2[0-3]):[0-5]\\d)");const n=`${t}(?:${r.join("|")})`;return new RegExp(`^${zr}T(?:${n})$`)}const so=e=>{const t=e?`[\\s\\S]{${e?.minimum??0},${e?.maximum??""}}`:"[\\s\\S]*";return new RegExp(`^${t}$`)},io=/^[^A-Z]*$/,uo=/^[^a-z]*$/,ie=f("$ZodCheck",(e,t)=>{var r;e._zod??(e._zod={}),e._zod.def=t,(r=e._zod).onattach??(r.onattach=[])}),co=f("$ZodCheckMaxLength",(e,t)=>{var r;ie.init(e,t),(r=e._zod.def).when??(r.when=n=>{const o=n.value;return!gt(o)&&o.length!==void 0}),e._zod.onattach.push(n=>{const o=n._zod.bag.maximum??Number.POSITIVE_INFINITY;t.maximum<o&&(n._zod.bag.maximum=t.maximum)}),e._zod.check=n=>{const o=n.value;if(o.length<=t.maximum)return;const i=vt(o);n.issues.push({origin:i,code:"too_big",maximum:t.maximum,inclusive:!0,input:o,inst:e,continue:!t.abort})}}),ao=f("$ZodCheckMinLength",(e,t)=>{var r;ie.init(e,t),(r=e._zod.def).when??(r.when=n=>{const o=n.value;return!gt(o)&&o.length!==void 0}),e._zod.onattach.push(n=>{const o=n._zod.bag.minimum??Number.NEGATIVE_INFINITY;t.minimum>o&&(n._zod.bag.minimum=t.minimum)}),e._zod.check=n=>{const o=n.value;if(o.length>=t.minimum)return;const i=vt(o);n.issues.push({origin:i,code:"too_small",minimum:t.minimum,inclusive:!0,input:o,inst:e,continue:!t.abort})}}),lo=f("$ZodCheckLengthEquals",(e,t)=>{var r;ie.init(e,t),(r=e._zod.def).when??(r.when=n=>{const o=n.value;return!gt(o)&&o.length!==void 0}),e._zod.onattach.push(n=>{const o=n._zod.bag;o.minimum=t.length,o.maximum=t.length,o.length=t.length}),e._zod.check=n=>{const o=n.value,s=o.length;if(s===t.length)return;const i=vt(o),a=s>t.length;n.issues.push({origin:i,...a?{code:"too_big",maximum:t.length}:{code:"too_small",minimum:t.length},inclusive:!0,exact:!0,input:n.value,inst:e,continue:!t.abort})}}),Xe=f("$ZodCheckStringFormat",(e,t)=>{var r,n;ie.init(e,t),e._zod.onattach.push(o=>{const s=o._zod.bag;s.format=t.format,t.pattern&&(s.patterns??(s.patterns=new Set),s.patterns.add(t.pattern))}),t.pattern?(r=e._zod).check??(r.check=o=>{t.pattern.lastIndex=0,!t.pattern.test(o.value)&&o.issues.push({origin:"string",code:"invalid_format",format:t.format,input:o.value,...t.pattern?{pattern:t.pattern.toString()}:{},inst:e,continue:!t.abort})}):(n=e._zod).check??(n.check=()=>{})}),fo=f("$ZodCheckRegex",(e,t)=>{Xe.init(e,t),e._zod.check=r=>{t.pattern.lastIndex=0,!t.pattern.test(r.value)&&r.issues.push({origin:"string",code:"invalid_format",format:"regex",input:r.value,pattern:t.pattern.toString(),inst:e,continue:!t.abort})}}),ho=f("$ZodCheckLowerCase",(e,t)=>{t.pattern??(t.pattern=io),Xe.init(e,t)}),po=f("$ZodCheckUpperCase",(e,t)=>{t.pattern??(t.pattern=uo),Xe.init(e,t)}),_o=f("$ZodCheckIncludes",(e,t)=>{ie.init(e,t);const r=We(t.includes),n=new RegExp(typeof t.position=="number"?`^.{${t.position}}${r}`:r);t.pattern=n,e._zod.onattach.push(o=>{const s=o._zod.bag;s.patterns??(s.patterns=new Set),s.patterns.add(n)}),e._zod.check=o=>{o.value.includes(t.includes,t.position)||o.issues.push({origin:"string",code:"invalid_format",format:"includes",includes:t.includes,input:o.value,inst:e,continue:!t.abort})}}),go=f("$ZodCheckStartsWith",(e,t)=>{ie.init(e,t);const r=new RegExp(`^${We(t.prefix)}.*`);t.pattern??(t.pattern=r),e._zod.onattach.push(n=>{const o=n._zod.bag;o.patterns??(o.patterns=new Set),o.patterns.add(r)}),e._zod.check=n=>{n.value.startsWith(t.prefix)||n.issues.push({origin:"string",code:"invalid_format",format:"starts_with",prefix:t.prefix,input:n.value,inst:e,continue:!t.abort})}}),mo=f("$ZodCheckEndsWith",(e,t)=>{ie.init(e,t);const r=new RegExp(`.*${We(t.suffix)}$`);t.pattern??(t.pattern=r),e._zod.onattach.push(n=>{const o=n._zod.bag;o.patterns??(o.patterns=new Set),o.patterns.add(r)}),e._zod.check=n=>{n.value.endsWith(t.suffix)||n.issues.push({origin:"string",code:"invalid_format",format:"ends_with",suffix:t.suffix,input:n.value,inst:e,continue:!t.abort})}}),vo=f("$ZodCheckOverwrite",(e,t)=>{ie.init(e,t),e._zod.check=r=>{r.value=t.tx(r.value)}});class yo{constructor(t=[]){this.content=[],this.indent=0,this&&(this.args=t)}indented(t){this.indent+=1,t(this),this.indent-=1}write(t){if(typeof t=="function"){t(this,{execution:"sync"}),t(this,{execution:"async"});return}const n=t.split(`
|
|
2
|
-
`).filter(i=>i),o=Math.min(...n.map(i=>i.length-i.trimStart().length)),s=n.map(i=>i.slice(o)).map(i=>" ".repeat(this.indent*2)+i);for(const i of s)this.content.push(i)}compile(){const t=Function,r=this?.args,o=[...(this?.content??[""]).map(s=>` ${s}`)];return new t(...r,o.join(`
|
|
3
|
-
`))}}const wo={major:4,minor:1,patch:13},N=f("$ZodType",(e,t)=>{var r;e??(e={}),e._zod.def=t,e._zod.bag=e._zod.bag||{},e._zod.version=wo;const n=[...e._zod.def.checks??[]];e._zod.traits.has("$ZodCheck")&&n.unshift(e);for(const o of n)for(const s of o._zod.onattach)s(e);if(n.length===0)(r=e._zod).deferred??(r.deferred=[]),e._zod.deferred?.push(()=>{e._zod.run=e._zod.parse});else{const o=(i,a,_)=>{let v=be(i),y;for(const k of a){if(k._zod.def.when){if(!k._zod.def.when(i))continue}else if(v)continue;const m=i.issues.length,S=k._zod.check(i);if(S instanceof Promise&&_?.async===!1)throw new ke;if(y||S instanceof Promise)y=(y??Promise.resolve()).then(async()=>{await S,i.issues.length!==m&&(v||(v=be(i,m)))});else{if(i.issues.length===m)continue;v||(v=be(i,m))}}return y?y.then(()=>i):i},s=(i,a,_)=>{if(be(i))return i.aborted=!0,i;const v=o(a,n,_);if(v instanceof Promise){if(_.async===!1)throw new ke;return v.then(y=>e._zod.parse(y,_))}return e._zod.parse(v,_)};e._zod.run=(i,a)=>{if(a.skipChecks)return e._zod.parse(i,a);if(a.direction==="backward"){const v=e._zod.parse({value:i.value,issues:[]},{...a,skipChecks:!0});return v instanceof Promise?v.then(y=>s(y,i,a)):s(v,i,a)}const _=e._zod.parse(i,a);if(_ instanceof Promise){if(a.async===!1)throw new ke;return _.then(v=>o(v,n,a))}return o(_,n,a)}}e["~standard"]={validate:o=>{try{const s=Fn(e,o);return s.success?{value:s.data}:{issues:s.error?.issues}}catch{return On(e,o).then(i=>i.success?{value:i.data}:{issues:i.error?.issues})}},vendor:"zod",version:1}}),yt=f("$ZodString",(e,t)=>{N.init(e,t),e._zod.pattern=[...e?._zod.bag?.patterns??[]].pop()??so(e._zod.bag),e._zod.parse=(r,n)=>{if(t.coerce)try{r.value=String(r.value)}catch{}return typeof r.value=="string"||r.issues.push({expected:"string",code:"invalid_type",input:r.value,inst:e}),r}}),x=f("$ZodStringFormat",(e,t)=>{Xe.init(e,t),yt.init(e,t)}),bo=f("$ZodGUID",(e,t)=>{t.pattern??(t.pattern=qn),x.init(e,t)}),ko=f("$ZodUUID",(e,t)=>{if(t.version){const n={v1:1,v2:2,v3:3,v4:4,v5:5,v6:6,v7:7,v8:8}[t.version];if(n===void 0)throw new Error(`Invalid UUID version: "${t.version}"`);t.pattern??(t.pattern=qt(n))}else t.pattern??(t.pattern=qt());x.init(e,t)}),zo=f("$ZodEmail",(e,t)=>{t.pattern??(t.pattern=Jn),x.init(e,t)}),Zo=f("$ZodURL",(e,t)=>{x.init(e,t),e._zod.check=r=>{try{const n=r.value.trim(),o=new URL(n);t.hostname&&(t.hostname.lastIndex=0,t.hostname.test(o.hostname)||r.issues.push({code:"invalid_format",format:"url",note:"Invalid hostname",pattern:t.hostname.source,input:r.value,inst:e,continue:!t.abort})),t.protocol&&(t.protocol.lastIndex=0,t.protocol.test(o.protocol.endsWith(":")?o.protocol.slice(0,-1):o.protocol)||r.issues.push({code:"invalid_format",format:"url",note:"Invalid protocol",pattern:t.protocol.source,input:r.value,inst:e,continue:!t.abort})),t.normalize?r.value=o.href:r.value=n;return}catch{r.issues.push({code:"invalid_format",format:"url",input:r.value,inst:e,continue:!t.abort})}}}),$o=f("$ZodEmoji",(e,t)=>{t.pattern??(t.pattern=Hn()),x.init(e,t)}),Ao=f("$ZodNanoID",(e,t)=>{t.pattern??(t.pattern=Bn),x.init(e,t)}),Eo=f("$ZodCUID",(e,t)=>{t.pattern??(t.pattern=Un),x.init(e,t)}),Do=f("$ZodCUID2",(e,t)=>{t.pattern??(t.pattern=jn),x.init(e,t)}),Fo=f("$ZodULID",(e,t)=>{t.pattern??(t.pattern=Ln),x.init(e,t)}),Oo=f("$ZodXID",(e,t)=>{t.pattern??(t.pattern=Nn),x.init(e,t)}),So=f("$ZodKSUID",(e,t)=>{t.pattern??(t.pattern=Mn),x.init(e,t)}),xo=f("$ZodISODateTime",(e,t)=>{t.pattern??(t.pattern=oo(t)),x.init(e,t)}),Vo=f("$ZodISODate",(e,t)=>{t.pattern??(t.pattern=ro),x.init(e,t)}),Po=f("$ZodISOTime",(e,t)=>{t.pattern??(t.pattern=no(t)),x.init(e,t)}),To=f("$ZodISODuration",(e,t)=>{t.pattern??(t.pattern=Wn),x.init(e,t)}),Io=f("$ZodIPv4",(e,t)=>{t.pattern??(t.pattern=Gn),x.init(e,t),e._zod.bag.format="ipv4"}),Co=f("$ZodIPv6",(e,t)=>{t.pattern??(t.pattern=Xn),x.init(e,t),e._zod.bag.format="ipv6",e._zod.check=r=>{try{new URL(`http://[${r.value}]`)}catch{r.issues.push({code:"invalid_format",format:"ipv6",input:r.value,inst:e,continue:!t.abort})}}}),Ro=f("$ZodCIDRv4",(e,t)=>{t.pattern??(t.pattern=Yn),x.init(e,t)}),Uo=f("$ZodCIDRv6",(e,t)=>{t.pattern??(t.pattern=Qn),x.init(e,t),e._zod.check=r=>{const n=r.value.split("/");try{if(n.length!==2)throw new Error;const[o,s]=n;if(!s)throw new Error;const i=Number(s);if(`${i}`!==s)throw new Error;if(i<0||i>128)throw new Error;new URL(`http://[${o}]`)}catch{r.issues.push({code:"invalid_format",format:"cidrv6",input:r.value,inst:e,continue:!t.abort})}}});function $r(e){if(e==="")return!0;if(e.length%4!==0)return!1;try{return atob(e),!0}catch{return!1}}const jo=f("$ZodBase64",(e,t)=>{t.pattern??(t.pattern=eo),x.init(e,t),e._zod.bag.contentEncoding="base64",e._zod.check=r=>{$r(r.value)||r.issues.push({code:"invalid_format",format:"base64",input:r.value,inst:e,continue:!t.abort})}});function Lo(e){if(!kr.test(e))return!1;const t=e.replace(/[-_]/g,n=>n==="-"?"+":"/"),r=t.padEnd(Math.ceil(t.length/4)*4,"=");return $r(r)}const No=f("$ZodBase64URL",(e,t)=>{t.pattern??(t.pattern=kr),x.init(e,t),e._zod.bag.contentEncoding="base64url",e._zod.check=r=>{Lo(r.value)||r.issues.push({code:"invalid_format",format:"base64url",input:r.value,inst:e,continue:!t.abort})}}),Mo=f("$ZodE164",(e,t)=>{t.pattern??(t.pattern=to),x.init(e,t)});function Bo(e,t=null){try{const r=e.split(".");if(r.length!==3)return!1;const[n]=r;if(!n)return!1;const o=JSON.parse(atob(n));return!("typ"in o&&o?.typ!=="JWT"||!o.alg||t&&(!("alg"in o)||o.alg!==t))}catch{return!1}}const Wo=f("$ZodJWT",(e,t)=>{x.init(e,t),e._zod.check=r=>{Bo(r.value,t.alg)||r.issues.push({code:"invalid_format",format:"jwt",input:r.value,inst:e,continue:!t.abort})}}),qo=f("$ZodUnknown",(e,t)=>{N.init(e,t),e._zod.parse=r=>r}),Jo=f("$ZodNever",(e,t)=>{N.init(e,t),e._zod.parse=(r,n)=>(r.issues.push({expected:"never",code:"invalid_type",input:r.value,inst:e}),r)});function Jt(e,t,r){e.issues.length&&t.issues.push(...yr(r,e.issues)),t.value[r]=e.value}const Ko=f("$ZodArray",(e,t)=>{N.init(e,t),e._zod.parse=(r,n)=>{const o=r.value;if(!Array.isArray(o))return r.issues.push({expected:"array",code:"invalid_type",input:o,inst:e}),r;r.value=Array(o.length);const s=[];for(let i=0;i<o.length;i++){const a=o[i],_=t.element._zod.run({value:a,issues:[]},n);_ instanceof Promise?s.push(_.then(v=>Jt(v,r,i))):Jt(_,r,i)}return s.length?Promise.all(s).then(()=>r):r}});function Ne(e,t,r,n){e.issues.length&&t.issues.push(...yr(r,e.issues)),e.value===void 0?r in n&&(t.value[r]=void 0):t.value[r]=e.value}function Ar(e){const t=Object.keys(e.shape);for(const n of t)if(!e.shape?.[n]?._zod?.traits?.has("$ZodType"))throw new Error(`Invalid element at key "${n}": expected a Zod schema`);const r=yn(e.shape);return{...e,keys:t,keySet:new Set(t),numKeys:t.length,optionalKeys:new Set(r)}}function Er(e,t,r,n,o,s){const i=[],a=o.keySet,_=o.catchall._zod,v=_.def.type;for(const y in t){if(a.has(y))continue;if(v==="never"){i.push(y);continue}const k=_.run({value:t[y],issues:[]},n);k instanceof Promise?e.push(k.then(m=>Ne(m,r,y,t))):Ne(k,r,y,t)}return i.length&&r.issues.push({code:"unrecognized_keys",keys:i,input:t,inst:s}),e.length?Promise.all(e).then(()=>r):r}const Ho=f("$ZodObject",(e,t)=>{if(N.init(e,t),!Object.getOwnPropertyDescriptor(t,"shape")?.get){const a=t.shape;Object.defineProperty(t,"shape",{get:()=>{const _={...a};return Object.defineProperty(t,"shape",{value:_}),_}})}const n=_t(()=>Ar(t));F(e._zod,"propValues",()=>{const a=t.shape,_={};for(const v in a){const y=a[v]._zod;if(y.values){_[v]??(_[v]=new Set);for(const k of y.values)_[v].add(k)}}return _});const o=Le,s=t.catchall;let i;e._zod.parse=(a,_)=>{i??(i=n.value);const v=a.value;if(!o(v))return a.issues.push({expected:"object",code:"invalid_type",input:v,inst:e}),a;a.value={};const y=[],k=i.shape;for(const m of i.keys){const T=k[m]._zod.run({value:v[m],issues:[]},_);T instanceof Promise?y.push(T.then(V=>Ne(V,a,m,v))):Ne(T,a,m,v)}return s?Er(y,v,a,_,n.value,e):y.length?Promise.all(y).then(()=>a):a}}),Go=f("$ZodObjectJIT",(e,t)=>{Ho.init(e,t);const r=e._zod.parse,n=_t(()=>Ar(t)),o=m=>{const S=new yo(["shape","payload","ctx"]),T=n.value,V=L=>{const I=Wt(L);return`shape[${I}]._zod.run({ value: input[${I}], issues: [] }, ctx)`};S.write("const input = payload.value;");const Q=Object.create(null);let Ze=0;for(const L of T.keys)Q[L]=`key_${Ze++}`;S.write("const newResult = {};");for(const L of T.keys){const I=Q[L],O=Wt(L);S.write(`const ${I} = ${V(L)};`),S.write(`
|
|
4
|
-
if (${I}.issues.length) {
|
|
5
|
-
payload.issues = payload.issues.concat(${I}.issues.map(iss => ({
|
|
6
|
-
...iss,
|
|
7
|
-
path: iss.path ? [${O}, ...iss.path] : [${O}]
|
|
8
|
-
})));
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
if (${I}.value === undefined) {
|
|
13
|
-
if (${O} in input) {
|
|
14
|
-
newResult[${O}] = undefined;
|
|
15
|
-
}
|
|
16
|
-
} else {
|
|
17
|
-
newResult[${O}] = ${I}.value;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
`)}S.write("payload.value = newResult;"),S.write("return payload;");const z=S.compile();return(L,I)=>z(m,L,I)};let s;const i=Le,a=!gr.jitless,v=a&&mn.value,y=t.catchall;let k;e._zod.parse=(m,S)=>{k??(k=n.value);const T=m.value;return i(T)?a&&v&&S?.async===!1&&S.jitless!==!0?(s||(s=o(t.shape)),m=s(m,S),y?Er([],T,m,S,k,e):m):r(m,S):(m.issues.push({expected:"object",code:"invalid_type",input:T,inst:e}),m)}});function Kt(e,t,r,n){for(const s of e)if(s.issues.length===0)return t.value=s.value,t;const o=e.filter(s=>!be(s));return o.length===1?(t.value=o[0].value,o[0]):(t.issues.push({code:"invalid_union",input:t.value,inst:r,errors:e.map(s=>s.issues.map(i=>_e(i,n,pe())))}),t)}const Xo=f("$ZodUnion",(e,t)=>{N.init(e,t),F(e._zod,"optin",()=>t.options.some(o=>o._zod.optin==="optional")?"optional":void 0),F(e._zod,"optout",()=>t.options.some(o=>o._zod.optout==="optional")?"optional":void 0),F(e._zod,"values",()=>{if(t.options.every(o=>o._zod.values))return new Set(t.options.flatMap(o=>Array.from(o._zod.values)))}),F(e._zod,"pattern",()=>{if(t.options.every(o=>o._zod.pattern)){const o=t.options.map(s=>s._zod.pattern);return new RegExp(`^(${o.map(s=>mt(s.source)).join("|")})$`)}});const r=t.options.length===1,n=t.options[0]._zod.run;e._zod.parse=(o,s)=>{if(r)return n(o,s);let i=!1;const a=[];for(const _ of t.options){const v=_._zod.run({value:o.value,issues:[]},s);if(v instanceof Promise)a.push(v),i=!0;else{if(v.issues.length===0)return v;a.push(v)}}return i?Promise.all(a).then(_=>Kt(_,o,e,s)):Kt(a,o,e,s)}}),Yo=f("$ZodIntersection",(e,t)=>{N.init(e,t),e._zod.parse=(r,n)=>{const o=r.value,s=t.left._zod.run({value:o,issues:[]},n),i=t.right._zod.run({value:o,issues:[]},n);return s instanceof Promise||i instanceof Promise?Promise.all([s,i]).then(([_,v])=>Ht(r,_,v)):Ht(r,s,i)}});function ct(e,t){if(e===t)return{valid:!0,data:e};if(e instanceof Date&&t instanceof Date&&+e==+t)return{valid:!0,data:e};if(Fe(e)&&Fe(t)){const r=Object.keys(t),n=Object.keys(e).filter(s=>r.indexOf(s)!==-1),o={...e,...t};for(const s of n){const i=ct(e[s],t[s]);if(!i.valid)return{valid:!1,mergeErrorPath:[s,...i.mergeErrorPath]};o[s]=i.data}return{valid:!0,data:o}}if(Array.isArray(e)&&Array.isArray(t)){if(e.length!==t.length)return{valid:!1,mergeErrorPath:[]};const r=[];for(let n=0;n<e.length;n++){const o=e[n],s=t[n],i=ct(o,s);if(!i.valid)return{valid:!1,mergeErrorPath:[n,...i.mergeErrorPath]};r.push(i.data)}return{valid:!0,data:r}}return{valid:!1,mergeErrorPath:[]}}function Ht(e,t,r){if(t.issues.length&&e.issues.push(...t.issues),r.issues.length&&e.issues.push(...r.issues),be(e))return e;const n=ct(t.value,r.value);if(!n.valid)throw new Error(`Unmergable intersection. Error path: ${JSON.stringify(n.mergeErrorPath)}`);return e.value=n.data,e}const Qo=f("$ZodEnum",(e,t)=>{N.init(e,t);const r=_n(t.entries),n=new Set(r);e._zod.values=n,e._zod.pattern=new RegExp(`^(${r.filter(o=>vn.has(typeof o)).map(o=>typeof o=="string"?We(o):o.toString()).join("|")})$`),e._zod.parse=(o,s)=>{const i=o.value;return n.has(i)||o.issues.push({code:"invalid_value",values:r,input:i,inst:e}),o}}),es=f("$ZodTransform",(e,t)=>{N.init(e,t),e._zod.parse=(r,n)=>{if(n.direction==="backward")throw new _r(e.constructor.name);const o=t.transform(r.value,r);if(n.async)return(o instanceof Promise?o:Promise.resolve(o)).then(i=>(r.value=i,r));if(o instanceof Promise)throw new ke;return r.value=o,r}});function Gt(e,t){return e.issues.length&&t===void 0?{issues:[],value:void 0}:e}const ts=f("$ZodOptional",(e,t)=>{N.init(e,t),e._zod.optin="optional",e._zod.optout="optional",F(e._zod,"values",()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,void 0]):void 0),F(e._zod,"pattern",()=>{const r=t.innerType._zod.pattern;return r?new RegExp(`^(${mt(r.source)})?$`):void 0}),e._zod.parse=(r,n)=>{if(t.innerType._zod.optin==="optional"){const o=t.innerType._zod.run(r,n);return o instanceof Promise?o.then(s=>Gt(s,r.value)):Gt(o,r.value)}return r.value===void 0?r:t.innerType._zod.run(r,n)}}),rs=f("$ZodNullable",(e,t)=>{N.init(e,t),F(e._zod,"optin",()=>t.innerType._zod.optin),F(e._zod,"optout",()=>t.innerType._zod.optout),F(e._zod,"pattern",()=>{const r=t.innerType._zod.pattern;return r?new RegExp(`^(${mt(r.source)}|null)$`):void 0}),F(e._zod,"values",()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,null]):void 0),e._zod.parse=(r,n)=>r.value===null?r:t.innerType._zod.run(r,n)}),ns=f("$ZodDefault",(e,t)=>{N.init(e,t),e._zod.optin="optional",F(e._zod,"values",()=>t.innerType._zod.values),e._zod.parse=(r,n)=>{if(n.direction==="backward")return t.innerType._zod.run(r,n);if(r.value===void 0)return r.value=t.defaultValue,r;const o=t.innerType._zod.run(r,n);return o instanceof Promise?o.then(s=>Xt(s,t)):Xt(o,t)}});function Xt(e,t){return e.value===void 0&&(e.value=t.defaultValue),e}const os=f("$ZodPrefault",(e,t)=>{N.init(e,t),e._zod.optin="optional",F(e._zod,"values",()=>t.innerType._zod.values),e._zod.parse=(r,n)=>(n.direction==="backward"||r.value===void 0&&(r.value=t.defaultValue),t.innerType._zod.run(r,n))}),ss=f("$ZodNonOptional",(e,t)=>{N.init(e,t),F(e._zod,"values",()=>{const r=t.innerType._zod.values;return r?new Set([...r].filter(n=>n!==void 0)):void 0}),e._zod.parse=(r,n)=>{const o=t.innerType._zod.run(r,n);return o instanceof Promise?o.then(s=>Yt(s,e)):Yt(o,e)}});function Yt(e,t){return!e.issues.length&&e.value===void 0&&e.issues.push({code:"invalid_type",expected:"nonoptional",input:e.value,inst:t}),e}const is=f("$ZodCatch",(e,t)=>{N.init(e,t),F(e._zod,"optin",()=>t.innerType._zod.optin),F(e._zod,"optout",()=>t.innerType._zod.optout),F(e._zod,"values",()=>t.innerType._zod.values),e._zod.parse=(r,n)=>{if(n.direction==="backward")return t.innerType._zod.run(r,n);const o=t.innerType._zod.run(r,n);return o instanceof Promise?o.then(s=>(r.value=s.value,s.issues.length&&(r.value=t.catchValue({...r,error:{issues:s.issues.map(i=>_e(i,n,pe()))},input:r.value}),r.issues=[]),r)):(r.value=o.value,o.issues.length&&(r.value=t.catchValue({...r,error:{issues:o.issues.map(s=>_e(s,n,pe()))},input:r.value}),r.issues=[]),r)}}),us=f("$ZodPipe",(e,t)=>{N.init(e,t),F(e._zod,"values",()=>t.in._zod.values),F(e._zod,"optin",()=>t.in._zod.optin),F(e._zod,"optout",()=>t.out._zod.optout),F(e._zod,"propValues",()=>t.in._zod.propValues),e._zod.parse=(r,n)=>{if(n.direction==="backward"){const s=t.out._zod.run(r,n);return s instanceof Promise?s.then(i=>Ie(i,t.in,n)):Ie(s,t.in,n)}const o=t.in._zod.run(r,n);return o instanceof Promise?o.then(s=>Ie(s,t.out,n)):Ie(o,t.out,n)}});function Ie(e,t,r){return e.issues.length?(e.aborted=!0,e):t._zod.run({value:e.value,issues:e.issues},r)}const cs=f("$ZodReadonly",(e,t)=>{N.init(e,t),F(e._zod,"propValues",()=>t.innerType._zod.propValues),F(e._zod,"values",()=>t.innerType._zod.values),F(e._zod,"optin",()=>t.innerType?._zod?.optin),F(e._zod,"optout",()=>t.innerType?._zod?.optout),e._zod.parse=(r,n)=>{if(n.direction==="backward")return t.innerType._zod.run(r,n);const o=t.innerType._zod.run(r,n);return o instanceof Promise?o.then(Qt):Qt(o)}});function Qt(e){return e.value=Object.freeze(e.value),e}const as=f("$ZodCustom",(e,t)=>{ie.init(e,t),N.init(e,t),e._zod.parse=(r,n)=>r,e._zod.check=r=>{const n=r.value,o=t.fn(n);if(o instanceof Promise)return o.then(s=>er(s,r,n,e));er(o,r,n,e)}});function er(e,t,r,n){if(!e){const o={code:"custom",input:r,inst:n,path:[...n._zod.def.path??[]],continue:!n._zod.def.abort};n._zod.def.params&&(o.params=n._zod.def.params),t.issues.push(Oe(o))}}var tr;class ls{constructor(){this._map=new WeakMap,this._idmap=new Map}add(t,...r){const n=r[0];if(this._map.set(t,n),n&&typeof n=="object"&&"id"in n){if(this._idmap.has(n.id))throw new Error(`ID ${n.id} already exists in the registry`);this._idmap.set(n.id,t)}return this}clear(){return this._map=new WeakMap,this._idmap=new Map,this}remove(t){const r=this._map.get(t);return r&&typeof r=="object"&&"id"in r&&this._idmap.delete(r.id),this._map.delete(t),this}get(t){const r=t._zod.parent;if(r){const n={...this.get(r)??{}};delete n.id;const o={...n,...this._map.get(t)};return Object.keys(o).length?o:void 0}return this._map.get(t)}has(t){return this._map.has(t)}}function fs(){return new ls}(tr=globalThis).__zod_globalRegistry??(tr.__zod_globalRegistry=fs());const Ce=globalThis.__zod_globalRegistry;function ds(e,t){return new e({type:"string",...b(t)})}function hs(e,t){return new e({type:"string",format:"email",check:"string_format",abort:!1,...b(t)})}function rr(e,t){return new e({type:"string",format:"guid",check:"string_format",abort:!1,...b(t)})}function ps(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,...b(t)})}function _s(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v4",...b(t)})}function gs(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v6",...b(t)})}function ms(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v7",...b(t)})}function vs(e,t){return new e({type:"string",format:"url",check:"string_format",abort:!1,...b(t)})}function ys(e,t){return new e({type:"string",format:"emoji",check:"string_format",abort:!1,...b(t)})}function ws(e,t){return new e({type:"string",format:"nanoid",check:"string_format",abort:!1,...b(t)})}function bs(e,t){return new e({type:"string",format:"cuid",check:"string_format",abort:!1,...b(t)})}function ks(e,t){return new e({type:"string",format:"cuid2",check:"string_format",abort:!1,...b(t)})}function zs(e,t){return new e({type:"string",format:"ulid",check:"string_format",abort:!1,...b(t)})}function Zs(e,t){return new e({type:"string",format:"xid",check:"string_format",abort:!1,...b(t)})}function $s(e,t){return new e({type:"string",format:"ksuid",check:"string_format",abort:!1,...b(t)})}function As(e,t){return new e({type:"string",format:"ipv4",check:"string_format",abort:!1,...b(t)})}function Es(e,t){return new e({type:"string",format:"ipv6",check:"string_format",abort:!1,...b(t)})}function Ds(e,t){return new e({type:"string",format:"cidrv4",check:"string_format",abort:!1,...b(t)})}function Fs(e,t){return new e({type:"string",format:"cidrv6",check:"string_format",abort:!1,...b(t)})}function Os(e,t){return new e({type:"string",format:"base64",check:"string_format",abort:!1,...b(t)})}function Ss(e,t){return new e({type:"string",format:"base64url",check:"string_format",abort:!1,...b(t)})}function xs(e,t){return new e({type:"string",format:"e164",check:"string_format",abort:!1,...b(t)})}function Vs(e,t){return new e({type:"string",format:"jwt",check:"string_format",abort:!1,...b(t)})}function Ps(e,t){return new e({type:"string",format:"datetime",check:"string_format",offset:!1,local:!1,precision:null,...b(t)})}function Ts(e,t){return new e({type:"string",format:"date",check:"string_format",...b(t)})}function Is(e,t){return new e({type:"string",format:"time",check:"string_format",precision:null,...b(t)})}function Cs(e,t){return new e({type:"string",format:"duration",check:"string_format",...b(t)})}function Rs(e){return new e({type:"unknown"})}function Us(e,t){return new e({type:"never",...b(t)})}function Dr(e,t){return new co({check:"max_length",...b(t),maximum:e})}function Me(e,t){return new ao({check:"min_length",...b(t),minimum:e})}function Fr(e,t){return new lo({check:"length_equals",...b(t),length:e})}function js(e,t){return new fo({check:"string_format",format:"regex",...b(t),pattern:e})}function Ls(e){return new ho({check:"string_format",format:"lowercase",...b(e)})}function Ns(e){return new po({check:"string_format",format:"uppercase",...b(e)})}function Ms(e,t){return new _o({check:"string_format",format:"includes",...b(t),includes:e})}function Bs(e,t){return new go({check:"string_format",format:"starts_with",...b(t),prefix:e})}function Ws(e,t){return new mo({check:"string_format",format:"ends_with",...b(t),suffix:e})}function ze(e){return new vo({check:"overwrite",tx:e})}function qs(e){return ze(t=>t.normalize(e))}function Js(){return ze(e=>e.trim())}function Ks(){return ze(e=>e.toLowerCase())}function Hs(){return ze(e=>e.toUpperCase())}function Gs(){return ze(e=>gn(e))}function Xs(e,t,r){return new e({type:"array",element:t,...b(r)})}function Ys(e,t,r){return new e({type:"custom",check:"custom",fn:t,...b(r)})}function Qs(e){const t=ei(r=>(r.addIssue=n=>{if(typeof n=="string")r.issues.push(Oe(n,r.value,t._zod.def));else{const o=n;o.fatal&&(o.continue=!1),o.code??(o.code="custom"),o.input??(o.input=r.value),o.inst??(o.inst=t),o.continue??(o.continue=!t._zod.def.abort),r.issues.push(Oe(o))}},e(r.value,r)));return t}function ei(e,t){const r=new ie({check:"custom",...b(t)});return r._zod.check=e,r}const ti=f("ZodISODateTime",(e,t)=>{xo.init(e,t),P.init(e,t)});function ri(e){return Ps(ti,e)}const ni=f("ZodISODate",(e,t)=>{Vo.init(e,t),P.init(e,t)});function oi(e){return Ts(ni,e)}const si=f("ZodISOTime",(e,t)=>{Po.init(e,t),P.init(e,t)});function ii(e){return Is(si,e)}const ui=f("ZodISODuration",(e,t)=>{To.init(e,t),P.init(e,t)});function ci(e){return Cs(ui,e)}const ai=(e,t)=>{br.init(e,t),e.name="ZodError",Object.defineProperties(e,{format:{value:r=>Dn(e,r)},flatten:{value:r=>En(e,r)},addIssue:{value:r=>{e.issues.push(r),e.message=JSON.stringify(e.issues,ut,2)}},addIssues:{value:r=>{e.issues.push(...r),e.message=JSON.stringify(e.issues,ut,2)}},isEmpty:{get(){return e.issues.length===0}}})},Y=f("ZodError",ai,{Parent:Error}),li=Je(Y),fi=Ke(Y),di=He(Y),hi=Ge(Y),pi=Sn(Y),_i=xn(Y),gi=Vn(Y),mi=Pn(Y),vi=Tn(Y),yi=In(Y),wi=Cn(Y),bi=Rn(Y),B=f("ZodType",(e,t)=>(N.init(e,t),e.def=t,e.type=t.type,Object.defineProperty(e,"_def",{value:t}),e.check=(...r)=>e.clone(me(t,{checks:[...t.checks??[],...r.map(n=>typeof n=="function"?{_zod:{check:n,def:{check:"custom"},onattach:[]}}:n)]})),e.clone=(r,n)=>fe(e,r,n),e.brand=()=>e,e.register=((r,n)=>(r.add(e,n),e)),e.parse=(r,n)=>li(e,r,n,{callee:e.parse}),e.safeParse=(r,n)=>di(e,r,n),e.parseAsync=async(r,n)=>fi(e,r,n,{callee:e.parseAsync}),e.safeParseAsync=async(r,n)=>hi(e,r,n),e.spa=e.safeParseAsync,e.encode=(r,n)=>pi(e,r,n),e.decode=(r,n)=>_i(e,r,n),e.encodeAsync=async(r,n)=>gi(e,r,n),e.decodeAsync=async(r,n)=>mi(e,r,n),e.safeEncode=(r,n)=>vi(e,r,n),e.safeDecode=(r,n)=>yi(e,r,n),e.safeEncodeAsync=async(r,n)=>wi(e,r,n),e.safeDecodeAsync=async(r,n)=>bi(e,r,n),e.refine=(r,n)=>e.check(fu(r,n)),e.superRefine=r=>e.check(du(r)),e.overwrite=r=>e.check(ze(r)),e.optional=()=>sr(e),e.nullable=()=>ir(e),e.nullish=()=>sr(ir(e)),e.nonoptional=r=>ou(e,r),e.array=()=>Bi(e),e.or=r=>Ji([e,r]),e.and=r=>Hi(e,r),e.transform=r=>ur(e,Yi(r)),e.default=r=>tu(e,r),e.prefault=r=>nu(e,r),e.catch=r=>iu(e,r),e.pipe=r=>ur(e,r),e.readonly=()=>au(e),e.describe=r=>{const n=e.clone();return Ce.add(n,{description:r}),n},Object.defineProperty(e,"description",{get(){return Ce.get(e)?.description},configurable:!0}),e.meta=(...r)=>{if(r.length===0)return Ce.get(e);const n=e.clone();return Ce.add(n,r[0]),n},e.isOptional=()=>e.safeParse(void 0).success,e.isNullable=()=>e.safeParse(null).success,e)),Or=f("_ZodString",(e,t)=>{yt.init(e,t),B.init(e,t);const r=e._zod.bag;e.format=r.format??null,e.minLength=r.minimum??null,e.maxLength=r.maximum??null,e.regex=(...n)=>e.check(js(...n)),e.includes=(...n)=>e.check(Ms(...n)),e.startsWith=(...n)=>e.check(Bs(...n)),e.endsWith=(...n)=>e.check(Ws(...n)),e.min=(...n)=>e.check(Me(...n)),e.max=(...n)=>e.check(Dr(...n)),e.length=(...n)=>e.check(Fr(...n)),e.nonempty=(...n)=>e.check(Me(1,...n)),e.lowercase=n=>e.check(Ls(n)),e.uppercase=n=>e.check(Ns(n)),e.trim=()=>e.check(Js()),e.normalize=(...n)=>e.check(qs(...n)),e.toLowerCase=()=>e.check(Ks()),e.toUpperCase=()=>e.check(Hs()),e.slugify=()=>e.check(Gs())}),ki=f("ZodString",(e,t)=>{yt.init(e,t),Or.init(e,t),e.email=r=>e.check(hs(zi,r)),e.url=r=>e.check(vs(Zi,r)),e.jwt=r=>e.check(Vs(Ui,r)),e.emoji=r=>e.check(ys($i,r)),e.guid=r=>e.check(rr(nr,r)),e.uuid=r=>e.check(ps(Re,r)),e.uuidv4=r=>e.check(_s(Re,r)),e.uuidv6=r=>e.check(gs(Re,r)),e.uuidv7=r=>e.check(ms(Re,r)),e.nanoid=r=>e.check(ws(Ai,r)),e.guid=r=>e.check(rr(nr,r)),e.cuid=r=>e.check(bs(Ei,r)),e.cuid2=r=>e.check(ks(Di,r)),e.ulid=r=>e.check(zs(Fi,r)),e.base64=r=>e.check(Os(Ii,r)),e.base64url=r=>e.check(Ss(Ci,r)),e.xid=r=>e.check(Zs(Oi,r)),e.ksuid=r=>e.check($s(Si,r)),e.ipv4=r=>e.check(As(xi,r)),e.ipv6=r=>e.check(Es(Vi,r)),e.cidrv4=r=>e.check(Ds(Pi,r)),e.cidrv6=r=>e.check(Fs(Ti,r)),e.e164=r=>e.check(xs(Ri,r)),e.datetime=r=>e.check(ri(r)),e.date=r=>e.check(oi(r)),e.time=r=>e.check(ii(r)),e.duration=r=>e.check(ci(r))});function yu(e){return ds(ki,e)}const P=f("ZodStringFormat",(e,t)=>{x.init(e,t),Or.init(e,t)}),zi=f("ZodEmail",(e,t)=>{zo.init(e,t),P.init(e,t)}),nr=f("ZodGUID",(e,t)=>{bo.init(e,t),P.init(e,t)}),Re=f("ZodUUID",(e,t)=>{ko.init(e,t),P.init(e,t)}),Zi=f("ZodURL",(e,t)=>{Zo.init(e,t),P.init(e,t)}),$i=f("ZodEmoji",(e,t)=>{$o.init(e,t),P.init(e,t)}),Ai=f("ZodNanoID",(e,t)=>{Ao.init(e,t),P.init(e,t)}),Ei=f("ZodCUID",(e,t)=>{Eo.init(e,t),P.init(e,t)}),Di=f("ZodCUID2",(e,t)=>{Do.init(e,t),P.init(e,t)}),Fi=f("ZodULID",(e,t)=>{Fo.init(e,t),P.init(e,t)}),Oi=f("ZodXID",(e,t)=>{Oo.init(e,t),P.init(e,t)}),Si=f("ZodKSUID",(e,t)=>{So.init(e,t),P.init(e,t)}),xi=f("ZodIPv4",(e,t)=>{Io.init(e,t),P.init(e,t)}),Vi=f("ZodIPv6",(e,t)=>{Co.init(e,t),P.init(e,t)}),Pi=f("ZodCIDRv4",(e,t)=>{Ro.init(e,t),P.init(e,t)}),Ti=f("ZodCIDRv6",(e,t)=>{Uo.init(e,t),P.init(e,t)}),Ii=f("ZodBase64",(e,t)=>{jo.init(e,t),P.init(e,t)}),Ci=f("ZodBase64URL",(e,t)=>{No.init(e,t),P.init(e,t)}),Ri=f("ZodE164",(e,t)=>{Mo.init(e,t),P.init(e,t)}),Ui=f("ZodJWT",(e,t)=>{Wo.init(e,t),P.init(e,t)}),ji=f("ZodUnknown",(e,t)=>{qo.init(e,t),B.init(e,t)});function or(){return Rs(ji)}const Li=f("ZodNever",(e,t)=>{Jo.init(e,t),B.init(e,t)});function Ni(e){return Us(Li,e)}const Mi=f("ZodArray",(e,t)=>{Ko.init(e,t),B.init(e,t),e.element=t.element,e.min=(r,n)=>e.check(Me(r,n)),e.nonempty=r=>e.check(Me(1,r)),e.max=(r,n)=>e.check(Dr(r,n)),e.length=(r,n)=>e.check(Fr(r,n)),e.unwrap=()=>e.element});function Bi(e,t){return Xs(Mi,e,t)}const Wi=f("ZodObject",(e,t)=>{Go.init(e,t),B.init(e,t),F(e,"shape",()=>t.shape),e.keyof=()=>Gi(Object.keys(e._zod.def.shape)),e.catchall=r=>e.clone({...e._zod.def,catchall:r}),e.passthrough=()=>e.clone({...e._zod.def,catchall:or()}),e.loose=()=>e.clone({...e._zod.def,catchall:or()}),e.strict=()=>e.clone({...e._zod.def,catchall:Ni()}),e.strip=()=>e.clone({...e._zod.def,catchall:void 0}),e.extend=r=>kn(e,r),e.safeExtend=r=>zn(e,r),e.merge=r=>Zn(e,r),e.pick=r=>wn(e,r),e.omit=r=>bn(e,r),e.partial=(...r)=>$n(Sr,e,r[0]),e.required=(...r)=>An(xr,e,r[0])});function wu(e,t){const r={type:"object",shape:e??{},...b(t)};return new Wi(r)}const qi=f("ZodUnion",(e,t)=>{Xo.init(e,t),B.init(e,t),e.options=t.options});function Ji(e,t){return new qi({type:"union",options:e,...b(t)})}const Ki=f("ZodIntersection",(e,t)=>{Yo.init(e,t),B.init(e,t)});function Hi(e,t){return new Ki({type:"intersection",left:e,right:t})}const at=f("ZodEnum",(e,t)=>{Qo.init(e,t),B.init(e,t),e.enum=t.entries,e.options=Object.values(t.entries);const r=new Set(Object.keys(t.entries));e.extract=(n,o)=>{const s={};for(const i of n)if(r.has(i))s[i]=t.entries[i];else throw new Error(`Key ${i} not found in enum`);return new at({...t,checks:[],...b(o),entries:s})},e.exclude=(n,o)=>{const s={...t.entries};for(const i of n)if(r.has(i))delete s[i];else throw new Error(`Key ${i} not found in enum`);return new at({...t,checks:[],...b(o),entries:s})}});function Gi(e,t){const r=Array.isArray(e)?Object.fromEntries(e.map(n=>[n,n])):e;return new at({type:"enum",entries:r,...b(t)})}const Xi=f("ZodTransform",(e,t)=>{es.init(e,t),B.init(e,t),e._zod.parse=(r,n)=>{if(n.direction==="backward")throw new _r(e.constructor.name);r.addIssue=s=>{if(typeof s=="string")r.issues.push(Oe(s,r.value,t));else{const i=s;i.fatal&&(i.continue=!1),i.code??(i.code="custom"),i.input??(i.input=r.value),i.inst??(i.inst=e),r.issues.push(Oe(i))}};const o=t.transform(r.value,r);return o instanceof Promise?o.then(s=>(r.value=s,r)):(r.value=o,r)}});function Yi(e){return new Xi({type:"transform",transform:e})}const Sr=f("ZodOptional",(e,t)=>{ts.init(e,t),B.init(e,t),e.unwrap=()=>e._zod.def.innerType});function sr(e){return new Sr({type:"optional",innerType:e})}const Qi=f("ZodNullable",(e,t)=>{rs.init(e,t),B.init(e,t),e.unwrap=()=>e._zod.def.innerType});function ir(e){return new Qi({type:"nullable",innerType:e})}const eu=f("ZodDefault",(e,t)=>{ns.init(e,t),B.init(e,t),e.unwrap=()=>e._zod.def.innerType,e.removeDefault=e.unwrap});function tu(e,t){return new eu({type:"default",innerType:e,get defaultValue(){return typeof t=="function"?t():vr(t)}})}const ru=f("ZodPrefault",(e,t)=>{os.init(e,t),B.init(e,t),e.unwrap=()=>e._zod.def.innerType});function nu(e,t){return new ru({type:"prefault",innerType:e,get defaultValue(){return typeof t=="function"?t():vr(t)}})}const xr=f("ZodNonOptional",(e,t)=>{ss.init(e,t),B.init(e,t),e.unwrap=()=>e._zod.def.innerType});function ou(e,t){return new xr({type:"nonoptional",innerType:e,...b(t)})}const su=f("ZodCatch",(e,t)=>{is.init(e,t),B.init(e,t),e.unwrap=()=>e._zod.def.innerType,e.removeCatch=e.unwrap});function iu(e,t){return new su({type:"catch",innerType:e,catchValue:typeof t=="function"?t:()=>t})}const uu=f("ZodPipe",(e,t)=>{us.init(e,t),B.init(e,t),e.in=t.in,e.out=t.out});function ur(e,t){return new uu({type:"pipe",in:e,out:t})}const cu=f("ZodReadonly",(e,t)=>{cs.init(e,t),B.init(e,t),e.unwrap=()=>e._zod.def.innerType});function au(e){return new cu({type:"readonly",innerType:e})}const lu=f("ZodCustom",(e,t)=>{as.init(e,t),B.init(e,t)});function fu(e,t={}){return Ys(lu,e,t)}function du(e){return Qs(e)}export{br as $,vu as a,Xr as b,wu as c,yu as d,hn as o,mu as p,gu as s,_u as u};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{j as e}from"./radix-ui-DFHQr9A5.js";import{c as l,B as p,a9 as w,aa as y,ab as k,e as z,S as h}from"./index-ByU8ZhED.js";import{a as M,u as R,b as W}from"./tanstack-C4gT2P7V.js";import{t as g}from"./notifications-B2Pz7lik.js";import{r as j}from"./react-vendor-FspHSO0w.js";import{aq as v,b as E,t as C,o as S,Z as P,f as O,U as $,S as H,ar as I,y as T,a8 as F,J as A}from"./icons-BOsxPbiD.js";import"./utils-CzKF5WmX.js";import"./form-utils-BuXDJb0w.js";import"./code-highlight-BoHWVYut.js";const B={sm:{dimension:80,strokeWidth:6,fontSize:"text-lg",labelSize:"text-[10px]"},md:{dimension:120,strokeWidth:8,fontSize:"text-3xl",labelSize:"text-xs"},lg:{dimension:160,strokeWidth:10,fontSize:"text-4xl",labelSize:"text-sm"}},q={ok:{stroke:"#22C55E",glow:"rgba(34, 197, 94, 0.4)"},warning:{stroke:"#EAB308",glow:"rgba(234, 179, 8, 0.4)"},error:{stroke:"#EF4444",glow:"rgba(239, 68, 68, 0.4)"}};function D({passed:s,total:t,status:a,size:o="md"}){const n=B[o],d=q[a],i=t>0?Math.round(s/t*100):0,r=(n.dimension-n.strokeWidth)/2,c=2*Math.PI*r,f=c-i/100*c,x=n.dimension/2;return e.jsxs("div",{className:"relative inline-flex items-center justify-center",children:[e.jsxs("svg",{width:n.dimension,height:n.dimension,className:"transform -rotate-90",style:{filter:`drop-shadow(0 0 8px ${d.glow})`},children:[e.jsx("circle",{cx:x,cy:x,r,fill:"none",stroke:"currentColor",strokeWidth:n.strokeWidth,className:"text-muted/30"}),e.jsx("circle",{cx:x,cy:x,r,fill:"none",stroke:d.stroke,strokeWidth:n.strokeWidth,strokeLinecap:"round",strokeDasharray:c,strokeDashoffset:f,className:"transition-all duration-1000 ease-out"}),i>0&&e.jsx("circle",{cx:x+r*Math.cos(i/100*2*Math.PI-Math.PI/2),cy:x+r*Math.sin(i/100*2*Math.PI-Math.PI/2),r:n.strokeWidth/2,fill:d.stroke,className:"animate-pulse",style:{filter:`drop-shadow(0 0 4px ${d.glow})`}})]}),e.jsxs("div",{className:"absolute inset-0 flex flex-col items-center justify-center",children:[e.jsx("span",{className:l("font-mono font-bold tracking-tight",n.fontSize),children:i}),e.jsx("span",{className:l("font-mono uppercase tracking-widest text-muted-foreground",n.labelSize),children:"health"})]})]})}function b({label:s,value:t,color:a,bgColor:o}){return e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx("div",{className:l("w-2 h-2 rounded-full animate-pulse",o)}),e.jsx("span",{className:"text-xs font-medium text-muted-foreground uppercase tracking-wider",children:s}),e.jsx("span",{className:l("font-mono font-bold text-sm",a),children:t})]})}function L({total:s,passed:t,warnings:a,errors:o,info:n}){const d=t/s*100,i=a/s*100,r=o/s*100,c=n/s*100;return e.jsxs("div",{className:"space-y-3",children:[e.jsxs("div",{className:"h-2 rounded-full overflow-hidden bg-muted/50 flex",children:[r>0&&e.jsx("div",{className:"h-full bg-red-500 transition-all duration-500",style:{width:`${r}%`}}),i>0&&e.jsx("div",{className:"h-full bg-yellow-500 transition-all duration-500",style:{width:`${i}%`}}),c>0&&e.jsx("div",{className:"h-full bg-blue-500 transition-all duration-500",style:{width:`${c}%`}}),d>0&&e.jsx("div",{className:"h-full bg-green-500 transition-all duration-500",style:{width:`${d}%`}})]}),e.jsxs("div",{className:"flex items-center justify-between gap-4 flex-wrap",children:[e.jsxs("div",{className:"flex items-center gap-1",children:[e.jsx("span",{className:"text-xs font-medium text-muted-foreground uppercase tracking-wider",children:"Checks"}),e.jsx("span",{className:"font-mono font-bold text-lg",children:s})]}),e.jsxs("div",{className:"flex items-center gap-4 flex-wrap",children:[e.jsx(b,{label:"OK",value:t,color:"text-green-500",bgColor:"bg-green-500"}),e.jsx(b,{label:"WARN",value:a,color:"text-yellow-500",bgColor:"bg-yellow-500"}),e.jsx(b,{label:"ERR",value:o,color:"text-red-500",bgColor:"bg-red-500"}),e.jsx(b,{label:"INFO",value:n,color:"text-blue-500",bgColor:"bg-blue-500"})]})]})]})}function G(){return M({queryKey:["health"],queryFn:async()=>(await fetch("/api/health")).json(),refetchInterval:3e4})}function K(){const s=R();return W({mutationFn:async t=>{const a=await fetch(`/api/health/fix/${t}`,{method:"POST"}),o=await a.json();if(!a.ok)throw new Error(o.message);return o},onSuccess:t=>{s.invalidateQueries({queryKey:["health"]}),g.success(t.message)},onError:t=>{g.error(t.message)}})}const Q={ok:{dot:"bg-green-500",label:"OK",labelColor:"text-green-500"},warning:{dot:"bg-yellow-500",label:"WARN",labelColor:"text-yellow-500"},error:{dot:"bg-red-500",label:"ERR",labelColor:"text-red-500"},info:{dot:"bg-blue-500",label:"INFO",labelColor:"text-blue-500"}};function U({check:s}){const t=K(),a=Q[s.status],[o,n]=j.useState(!1),d=s.details||s.fix,i=r=>{navigator.clipboard.writeText(r),g.success("Copied to clipboard")};return d?e.jsx(w,{open:o,onOpenChange:n,children:e.jsxs("div",{className:l("group rounded-lg border transition-all duration-150",o?"border-border bg-muted/30":"border-transparent hover:border-border/50 hover:bg-muted/50"),children:[e.jsx(y,{asChild:!0,children:e.jsxs("button",{className:"w-full flex items-center gap-3 px-3 py-2 text-left",children:[e.jsxs("div",{className:"relative flex items-center justify-center w-4 h-4",children:[e.jsx("div",{className:l("w-2 h-2 rounded-full",a.dot)}),s.status!=="ok"&&e.jsx("div",{className:l("absolute w-2 h-2 rounded-full animate-ping opacity-75",a.dot)})]}),e.jsx("span",{className:"flex-1 text-sm font-medium truncate",children:s.name}),e.jsxs("span",{className:l("font-mono text-xs font-semibold",a.labelColor),children:["[",a.label,"]"]}),e.jsx(E,{className:l("w-4 h-4 text-muted-foreground transition-transform duration-200",o&&"rotate-90")})]})}),e.jsx(k,{children:e.jsxs("div",{className:"px-3 pb-3 pt-1 space-y-2 ml-7",children:[e.jsx("p",{className:"text-xs text-muted-foreground",children:s.message}),s.details&&e.jsx("pre",{className:"text-xs font-mono text-muted-foreground bg-background/50 rounded p-2 overflow-x-auto border border-border/50",children:s.details}),s.fix&&e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsxs("div",{className:"flex-1 flex items-center gap-2 bg-background/50 rounded px-2 py-1.5 border border-border/50",children:[e.jsx(C,{className:"w-3 h-3 text-muted-foreground shrink-0"}),e.jsx("code",{className:"text-xs font-mono flex-1 truncate",children:s.fix}),e.jsx(p,{variant:"ghost",size:"sm",onClick:()=>s.fix&&i(s.fix),className:"h-5 w-5 p-0",children:e.jsx(S,{className:"w-3 h-3"})})]}),s.fixable&&s.status!=="ok"&&e.jsxs(p,{size:"sm",onClick:()=>t.mutate(s.id),disabled:t.isPending,className:"h-7 px-3 text-xs",children:[e.jsx(v,{className:"w-3 h-3 mr-1"}),"Apply Fix"]})]})]})})]})}):e.jsxs("div",{className:l("group flex items-center gap-3 px-3 py-2 rounded-lg","hover:bg-muted/50 transition-colors duration-150","border border-transparent hover:border-border/50"),children:[e.jsxs("div",{className:"relative flex items-center justify-center w-4 h-4",children:[e.jsx("div",{className:l("w-2 h-2 rounded-full",a.dot)}),s.status!=="ok"&&e.jsx("div",{className:l("absolute w-2 h-2 rounded-full animate-ping opacity-75",a.dot)})]}),e.jsx("span",{className:"flex-1 text-sm font-medium truncate",children:s.name}),e.jsxs("span",{className:l("font-mono text-xs font-semibold",a.labelColor),children:["[",a.label,"]"]}),s.fixable&&s.status!=="ok"&&e.jsxs(p,{size:"sm",variant:"ghost",onClick:()=>t.mutate(s.id),disabled:t.isPending,className:"h-6 px-2 text-xs opacity-0 group-hover:opacity-100 transition-opacity",children:[e.jsx(v,{className:"w-3 h-3 mr-1"}),"Fix"]})]})}const Z={Monitor:I,Settings:H,Users:$,Shield:O,Zap:P};function J({group:s,defaultOpen:t=!0}){const[a,o]=j.useState(t),n=Z[s.icon]||I,d=s.checks.filter(m=>m.status==="ok").length,i=s.checks.length,r=s.checks.some(m=>m.status==="error"),c=s.checks.some(m=>m.status==="warning"),f=Math.round(d/i*100),x=r?"text-red-500":c?"text-yellow-500":"text-green-500",u=r?"bg-red-500":c?"bg-yellow-500":"bg-green-500";return e.jsx(w,{open:a,onOpenChange:o,children:e.jsxs("div",{className:l("rounded-lg border transition-all duration-200",r?"border-red-500/30":c?"border-yellow-500/30":"border-border"),children:[e.jsx(y,{asChild:!0,children:e.jsxs("button",{className:l("w-full flex items-center gap-3 p-3 text-left rounded-lg","hover:bg-muted/50 transition-colors duration-150",a&&"rounded-b-none border-b border-border/50"),children:[e.jsx("div",{className:l("p-1.5 rounded-md",r?"bg-red-500/10 text-red-500":c?"bg-yellow-500/10 text-yellow-500":"bg-muted text-muted-foreground"),children:e.jsx(n,{className:"w-4 h-4"})}),e.jsx("span",{className:"flex-1 text-sm font-semibold",children:s.name}),!a&&e.jsx("div",{className:"flex items-center gap-2",children:e.jsx("div",{className:"w-16 h-1.5 rounded-full bg-muted overflow-hidden",children:e.jsx("div",{className:l("h-full transition-all duration-500",u),style:{width:`${f}%`}})})}),e.jsxs("span",{className:l("font-mono text-xs font-semibold",x),children:[d,"/",i]}),e.jsx(T,{className:l("w-4 h-4 text-muted-foreground transition-transform duration-200",a&&"rotate-180")})]})}),e.jsx(k,{children:e.jsx("div",{className:"p-2 space-y-0.5",children:s.checks.map(m=>e.jsx(U,{check:m},m.id))})})]})})}function V(s){return s.errors>0?"error":s.warnings>0?"warning":"ok"}function X(s){const t=Math.floor((Date.now()-s)/1e3);if(t<5)return"just now";if(t<60)return`${t}s ago`;const a=Math.floor(t/60);return a<60?`${a}m ago`:`${Math.floor(a/60)}h ago`}function Y(s){return[...s].sort((t,a)=>{const o=t.checks.filter(r=>r.status==="error").length,n=a.checks.filter(r=>r.status==="error").length,d=t.checks.filter(r=>r.status==="warning").length,i=a.checks.filter(r=>r.status==="warning").length;return o!==n?n-o:i-d})}function _(){return e.jsxs("div",{className:"font-mono text-sm text-muted-foreground flex items-center gap-2",children:[e.jsx("span",{className:"text-green-500",children:"$"}),e.jsx("span",{children:"ccs doctor"})]})}function ee(){return e.jsxs("div",{className:"p-6 max-w-6xl mx-auto space-y-6",children:[e.jsx("div",{className:"rounded-xl border bg-gradient-to-br from-background to-muted/20 p-6",children:e.jsxs("div",{className:"flex items-center gap-6",children:[e.jsx(h,{className:"w-[120px] h-[120px] rounded-full"}),e.jsxs("div",{className:"flex-1 space-y-3",children:[e.jsx(h,{className:"h-5 w-48"}),e.jsx(h,{className:"h-8 w-64"}),e.jsx(h,{className:"h-4 w-32"})]})]})}),e.jsx(h,{className:"h-16 w-full rounded-lg"}),e.jsx("div",{className:"space-y-3",children:[1,2,3,4].map(s=>e.jsx(h,{className:"h-20 rounded-lg"},s))})]})}function ce(){const{data:s,isLoading:t,refetch:a,dataUpdatedAt:o}=G(),n=o,[d,i]=j.useState(0);j.useEffect(()=>{const u=setInterval(()=>i(m=>m+1),1e3);return()=>clearInterval(u)},[]);const r=()=>{navigator.clipboard.writeText("ccs doctor"),g.success("Copied to clipboard")},c=()=>{a(),g.info("Refreshing health checks...")};if(t&&!s)return e.jsx(ee,{});const f=s?V(s.summary):"ok",x=s?.groups?Y(s.groups):[];return e.jsxs("div",{className:"p-6 max-w-6xl mx-auto space-y-6",children:[e.jsxs("div",{className:l("relative overflow-hidden rounded-xl border p-6","bg-gradient-to-br from-background via-background to-muted/30"),children:[e.jsx("div",{className:"absolute inset-0 opacity-[0.02] pointer-events-none",style:{backgroundImage:"repeating-linear-gradient(0deg, transparent, transparent 2px, currentColor 2px, currentColor 3px)"}}),e.jsx("div",{className:"absolute inset-0 opacity-[0.03] pointer-events-none",children:e.jsx("div",{className:"absolute inset-0",style:{backgroundImage:"radial-gradient(circle at 1px 1px, currentColor 1px, transparent 0)",backgroundSize:"24px 24px"}})}),e.jsxs("div",{className:"relative flex flex-col md:flex-row items-start md:items-center gap-6",children:[s&&e.jsx("div",{className:"shrink-0",children:e.jsx(D,{passed:s.summary.passed,total:s.summary.total-s.summary.info,status:f,size:"md"})}),e.jsxs("div",{className:"flex-1 space-y-3",children:[e.jsx(_,{}),e.jsxs("div",{className:"flex items-center gap-3 flex-wrap",children:[e.jsx("h1",{className:"text-2xl font-bold font-mono tracking-tight",children:"System Health"}),s?.version&&e.jsxs(z,{variant:"outline",className:"font-mono text-xs bg-muted/50",children:["build ",s.version]})]}),e.jsxs("div",{className:"flex items-center gap-2 text-sm",children:[e.jsx(F,{className:"w-4 h-4 text-muted-foreground"}),e.jsx("span",{className:"text-muted-foreground",children:"Last scan:"}),e.jsx("span",{className:"font-mono",children:n?X(n):"--"}),e.jsx("span",{className:"text-muted-foreground",children:"|"}),e.jsx("span",{className:"text-muted-foreground",children:"Auto-refresh:"}),e.jsx("span",{className:"font-mono text-green-500",children:"30s"})]})]}),e.jsxs("div",{className:"flex items-center gap-2 shrink-0",children:[e.jsxs(p,{variant:"outline",size:"sm",onClick:r,className:"gap-2 font-mono text-xs",children:[e.jsx(C,{className:"w-3 h-3"}),"ccs doctor",e.jsx(S,{className:"w-3 h-3 opacity-50"})]}),e.jsxs(p,{variant:"outline",size:"sm",onClick:c,disabled:t,className:"gap-2",children:[e.jsx(A,{className:l("w-4 h-4",t&&"animate-spin")}),e.jsx("span",{className:"hidden sm:inline",children:"Refresh"}),e.jsx("kbd",{className:"hidden md:inline-flex h-5 items-center gap-1 rounded border bg-muted px-1.5 font-mono text-[10px] font-medium text-muted-foreground",children:"R"})]})]})]})]}),s&&e.jsx("div",{className:"rounded-lg border bg-card p-4",children:e.jsx(L,{total:s.summary.total,passed:s.summary.passed,warnings:s.summary.warnings,errors:s.summary.errors,info:s.summary.info})}),x.length>0&&e.jsx("div",{className:"space-y-3",children:x.map((u,m)=>e.jsx(J,{group:u,defaultOpen:m<2||u.checks.some(N=>N.status==="error"||N.status==="warning")},u.id))}),e.jsxs("div",{className:"flex items-center justify-between text-xs text-muted-foreground border-t pt-4",children:[e.jsxs("div",{className:"flex items-center gap-4",children:[e.jsxs("span",{children:["Version ",e.jsx("span",{className:"font-mono",children:s?.version??"--"})]}),e.jsxs("span",{children:["Platform"," ",e.jsx("span",{className:"font-mono",children:typeof navigator<"u"?navigator.platform:"linux"})]})]}),e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx("div",{className:"w-2 h-2 rounded-full bg-green-500 animate-pulse"}),e.jsx("span",{children:"Live monitoring active"})]})]})]})}export{ce as HealthPage};
|