feat: complete release preparation, 10+ ad mediation, CI/CD, and docker deployment
Some checks failed
CI Pipeline / Code Quality & Typecheck (push) Waiting to run
CI Pipeline / Test Suite (macos-latest) (push) Blocked by required conditions
CI Pipeline / Test Suite (ubuntu-latest) (push) Blocked by required conditions
CI Pipeline / Test Suite (windows-latest) (push) Blocked by required conditions
CI Pipeline / Build Validation (admin) (push) Blocked by required conditions
CI Pipeline / Build Validation (desktop) (push) Blocked by required conditions
Deploy Landing Page / deploy (push) Blocked by required conditions
Deploy Landing Page / build (push) Waiting to run
Release & Packaging Pipeline / Build & Publish Admin Docker Image (push) Failing after 8s
Release & Code Signing CA Pipeline / build-and-sign-windows (push) Failing after 1m51s
Build macOS / Build & Package (macOS) (push) Failing after 4s
Build macOS / Build & Package (macOS)-1 (push) Failing after 5s
Release & Code Signing CA Pipeline / build-and-sign-macos (push) Failing after 3s
Release & Packaging Pipeline / Package macOS Desktop App (push) Failing after 4s
Release & Packaging Pipeline / Package Windows Desktop App (push) Failing after 2m28s
Release & Packaging Pipeline / Publish Official GitHub Release (push) Has been skipped
Some checks failed
CI Pipeline / Code Quality & Typecheck (push) Waiting to run
CI Pipeline / Test Suite (macos-latest) (push) Blocked by required conditions
CI Pipeline / Test Suite (ubuntu-latest) (push) Blocked by required conditions
CI Pipeline / Test Suite (windows-latest) (push) Blocked by required conditions
CI Pipeline / Build Validation (admin) (push) Blocked by required conditions
CI Pipeline / Build Validation (desktop) (push) Blocked by required conditions
Deploy Landing Page / deploy (push) Blocked by required conditions
Deploy Landing Page / build (push) Waiting to run
Release & Packaging Pipeline / Build & Publish Admin Docker Image (push) Failing after 8s
Release & Code Signing CA Pipeline / build-and-sign-windows (push) Failing after 1m51s
Build macOS / Build & Package (macOS) (push) Failing after 4s
Build macOS / Build & Package (macOS)-1 (push) Failing after 5s
Release & Code Signing CA Pipeline / build-and-sign-macos (push) Failing after 3s
Release & Packaging Pipeline / Package macOS Desktop App (push) Failing after 4s
Release & Packaging Pipeline / Package Windows Desktop App (push) Failing after 2m28s
Release & Packaging Pipeline / Publish Official GitHub Release (push) Has been skipped
This commit is contained in:
parent
5cd1de6859
commit
708e20f747
406 changed files with 42464 additions and 6199 deletions
|
|
@ -38,6 +38,12 @@ export const IPC_CHANNELS = {
|
|||
CANCEL_DOWNLOAD: 'stt:cancelDownload',
|
||||
GET_LANGUAGE: 'stt:getLanguage',
|
||||
SET_LANGUAGE: 'stt:setLanguage',
|
||||
GET_PROVIDERS: 'stt:getProviders',
|
||||
GET_ACTIVE_PROVIDER: 'stt:getActiveProvider',
|
||||
SET_PROVIDER: 'stt:setProvider',
|
||||
GET_PROVIDER_CONFIG: 'stt:getProviderConfig',
|
||||
SET_PROVIDER_CONFIG: 'stt:setProviderConfig',
|
||||
TEST_CONNECTION: 'stt:testConnection',
|
||||
// Main → Renderer events
|
||||
STATUS_CHANGED: 'stt:statusChanged',
|
||||
DOWNLOAD_PROGRESS: 'stt:downloadProgress'
|
||||
|
|
@ -66,6 +72,8 @@ export const IPC_CHANNELS = {
|
|||
GET_SERVER_URL: 'llm:getServerUrl',
|
||||
SET_SERVER_URL: 'llm:setServerUrl',
|
||||
PULL_MODEL: 'llm:pullModel',
|
||||
START_SERVER: 'llm:startServer',
|
||||
CHECK_CONNECTION: 'llm:checkConnection',
|
||||
// Phase 3.2: Premium LLM (Supabase llm-proxy → Claude)
|
||||
PREMIUM_GET_STATUS: 'llm:premium:getStatus',
|
||||
PREMIUM_GET_QUOTA: 'llm:premium:getQuota',
|
||||
|
|
@ -464,6 +472,45 @@ export const IPC_CHANNELS = {
|
|||
APP: {
|
||||
DATA_CHANGED: 'app:dataChanged',
|
||||
},
|
||||
|
||||
ONLINE_AUTH: {
|
||||
REGISTER: 'onlineAuth:register',
|
||||
LOGIN: 'onlineAuth:login',
|
||||
LOGOUT: 'onlineAuth:logout',
|
||||
GET_USER: 'onlineAuth:getUser',
|
||||
},
|
||||
|
||||
// ── Ad Monetization & Mediation ──
|
||||
ADS: {
|
||||
GET_CONFIG: 'ads:getConfig',
|
||||
SET_CONFIG: 'ads:setConfig',
|
||||
REQUEST_AUCTION: 'ads:requestAuction',
|
||||
RECORD_IMPRESSION: 'ads:recordImpression',
|
||||
RECORD_CLICK: 'ads:recordClick',
|
||||
CLAIM_REWARD: 'ads:claimReward',
|
||||
GET_REVENUE_STATS: 'ads:getRevenueStats',
|
||||
GET_SETTLEMENTS: 'ads:getSettlements',
|
||||
REQUEST_PAYOUT: 'ads:requestPayout',
|
||||
GET_PUBLISHER_ACCOUNT: 'ads:getPublisherAccount',
|
||||
SET_PUBLISHER_ACCOUNT: 'ads:setPublisherAccount',
|
||||
},
|
||||
|
||||
// ── Customer Assistance (CA/CS) & Diagnostics ──
|
||||
SUPPORT: {
|
||||
GET_DIAGNOSTICS: 'support:getDiagnostics',
|
||||
QUERY_AI: 'support:queryAI',
|
||||
CREATE_TICKET: 'support:createTicket',
|
||||
GET_TICKETS: 'support:getTickets',
|
||||
CHECK_REFUND: 'support:checkRefund',
|
||||
},
|
||||
|
||||
// ── Multi-PG Payment & Billing ──
|
||||
PAYMENT: {
|
||||
CREATE_CHECKOUT_SESSION: 'payment:createCheckoutSession',
|
||||
VERIFY_PAYMENT: 'payment:verifyPayment',
|
||||
GET_SUBSCRIPTION_STATUS: 'payment:getSubscriptionStatus',
|
||||
CANCEL_SUBSCRIPTION: 'payment:cancelSubscription',
|
||||
},
|
||||
} as const
|
||||
|
||||
// 타입 유틸리티: 채널명 유니온 추출
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue