mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-06 17:46:23 +00:00
- migrate the classic frontend from Vite to Rsbuild with JSX, Semi UI, proxy, and production build config. - update make dev-web to run both default and classic frontends for local theme switching. - fix classic public page height, footer, CORS proxy, error handling, and constant export warnings. - update Dockerfile and release workflow to install from the web workspace root with the shared lockfile.
63 lines
1.9 KiB
JavaScript
Vendored
63 lines
1.9 KiB
JavaScript
Vendored
/*
|
|
Copyright (C) 2025 QuantumNous
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
*/
|
|
|
|
export {
|
|
CHANNEL_OPTIONS,
|
|
MODEL_FETCHABLE_CHANNEL_TYPES,
|
|
MODEL_TABLE_PAGE_SIZE,
|
|
} from './channel.constants';
|
|
export { userConstants } from './user.constants';
|
|
export { toastConstants } from './toast.constants';
|
|
export {
|
|
ITEMS_PER_PAGE,
|
|
DEFAULT_ENDPOINT,
|
|
TABLE_COMPACT_MODES_KEY,
|
|
API_ENDPOINTS,
|
|
TASK_ACTION_GENERATE,
|
|
TASK_ACTION_TEXT_GENERATE,
|
|
TASK_ACTION_FIRST_TAIL_GENERATE,
|
|
TASK_ACTION_REFERENCE_GENERATE,
|
|
TASK_ACTION_REMIX_GENERATE,
|
|
} from './common.constant';
|
|
export {
|
|
REDEMPTION_STATUS,
|
|
REDEMPTION_STATUS_MAP,
|
|
REDEMPTION_ACTIONS,
|
|
} from './redemption.constants';
|
|
export {
|
|
CODEX_CLI_HEADER_PASSTHROUGH_HEADERS,
|
|
CLAUDE_CLI_HEADER_PASSTHROUGH_HEADERS,
|
|
CODEX_CLI_HEADER_PASSTHROUGH_TEMPLATE,
|
|
CLAUDE_CLI_HEADER_PASSTHROUGH_TEMPLATE,
|
|
CHANNEL_AFFINITY_RULE_TEMPLATES,
|
|
cloneChannelAffinityTemplate,
|
|
} from './channel-affinity-template.constants';
|
|
export {
|
|
BILLING_VARS,
|
|
BILLING_VAR_KEYS,
|
|
BILLING_PRICING_VARS,
|
|
BILLING_EXTRA_VARS,
|
|
BILLING_VAR_KEY_TO_FIELD,
|
|
BILLING_VAR_FIELD_TO_LABEL,
|
|
BILLING_VAR_FIELD_TO_SHORT_LABEL,
|
|
BILLING_CACHE_VAR_MAP,
|
|
BILLING_VAR_REGEX,
|
|
BILLING_CONDITION_VARS,
|
|
} from './billing.constants';
|