feat(release): prepare 1.1.0 candidate

This commit is contained in:
Yun Chan 2026-08-29 18:33:45 +09:00
parent 5a34f66981
commit 5205dcdfa9
736 changed files with 115667 additions and 12203 deletions

View file

@ -84,7 +84,6 @@ import type {
SetVoiceCommandKeywordsParams,
SetVoiceCommandEnabledParams,
CaptureContextResult,
ScreenContext,
LLMChain,
CreateChainParams,
UpdateChainParams,
@ -95,7 +94,6 @@ import type {
CaptionState,
CaptionSegment,
CaptionConfig,
CaptionSessionSummary,
// Phase 11
LicenseInfo,
ActivateLicenseParams,
@ -162,7 +160,6 @@ import type {
MeetingDocument,
MeetingDocTemplate,
MeetingGenerateDocParams,
MeetingGenerateDocResult,
MeetingUpdateDocParams,
MeetingDeleteDocParams,
MeetingGetDocsParams,
@ -845,10 +842,10 @@ const electronAPI = {
payment: {
createCheckoutSession: (params: import('@d3ro/core/types').CheckoutSessionParams) =>
invoke<import('@d3ro/core/types').CheckoutSessionResult>(IPC_CHANNELS.PAYMENT.CREATE_CHECKOUT_SESSION, params),
verifyPayment: (params: { tier: string }) =>
invoke<{ success: boolean; activeTier: string }>(IPC_CHANNELS.PAYMENT.VERIFY_PAYMENT, params),
verifyPayment: () =>
invoke<import('@d3ro/core/types').VerifyPaymentResult>(IPC_CHANNELS.PAYMENT.VERIFY_PAYMENT),
getSubscriptionStatus: () =>
invoke<{ tier: string; valid: boolean; expiresAt: number | null }>(IPC_CHANNELS.PAYMENT.GET_SUBSCRIPTION_STATUS),
invoke<import('@d3ro/core/types').SubscriptionStatusResult>(IPC_CHANNELS.PAYMENT.GET_SUBSCRIPTION_STATUS),
},
} as const