Files
InvoiceShelf/resources/scripts-v2/api/services/update.service.ts
Darko Gjorgjijoski e64529468c Replace deleted_files with manifest-based updater cleanup, add release workflow
- Add manifest.json generation script (scripts/generate-manifest.php)
- Add Updater::cleanStaleFiles() that removes files not in manifest
- Add /api/v1/update/clean endpoint with backward compatibility
- Add configurable update_protected_paths in config/invoiceshelf.php
- Update frontend to use clean step instead of delete step
- Add GitHub Actions release workflow triggered on version tags
- Add .github/release.yml for auto-generated changelog categories
- Update Makefile to include manifest generation and scripts directory
2026-04-06 19:27:33 +02:00

80 lines
2.2 KiB
TypeScript

import { client } from '../client'
import { API } from '../endpoints'
export interface UpdateRelease {
version: string
description?: string | null
changelog?: string | null
extensions?: Record<string, boolean>
min_php_version?: string | null
deleted_files?: string | string[] | null
}
export interface CheckUpdateResponse {
success?: boolean
release: UpdateRelease | null
is_minor?: boolean
}
export interface UpdateDownloadResponse {
success: boolean
path?: string | boolean | Record<string, unknown> | null
}
export interface UpdateStepResponse {
success: boolean
path?: string | boolean | Record<string, unknown> | null
error?: string | boolean
data?: Record<string, unknown>
}
export interface FinishUpdatePayload {
installed: string
version: string
}
export const updateService = {
async check(channel: 'stable' | 'insider' = 'stable'): Promise<CheckUpdateResponse> {
const { data } = await client.get(API.CHECK_UPDATE, {
params: { channel },
})
return data
},
async download(payload: { version: string }): Promise<UpdateDownloadResponse> {
const { data } = await client.post(API.UPDATE_DOWNLOAD, payload)
return data
},
async unzip(payload: { path: string }): Promise<UpdateStepResponse> {
const { data } = await client.post(API.UPDATE_UNZIP, payload)
return data
},
async copy(payload: { path: string }): Promise<UpdateStepResponse> {
const { data } = await client.post(API.UPDATE_COPY, payload)
return data
},
async delete(payload: { deleted_files?: string | string[] | null }): Promise<UpdateStepResponse> {
const { data } = await client.post(API.UPDATE_DELETE, payload)
return data
},
async clean(payload?: { deleted_files?: string | string[] | null }): Promise<UpdateStepResponse> {
const { data } = await client.post(API.UPDATE_CLEAN, payload ?? {})
return data
},
async migrate(): Promise<UpdateStepResponse> {
const { data } = await client.post(API.UPDATE_MIGRATE)
return data
},
async finish(payload: FinishUpdatePayload): Promise<UpdateStepResponse> {
const { data } = await client.post(API.UPDATE_FINISH, payload)
return data
},
}