mirror of
https://github.com/kyantech/Palmr.git
synced 2025-11-03 05:23:19 +00:00
This commit introduces the initial project setup including configuration files, API models, and necessary assets. The changes include: - Added Prettier and PostCSS configuration files - Included favicon and public assets like SVGs - Set up Next.js and theme provider configurations - Added TypeScript models for API endpoints and responses
21 lines
439 B
TypeScript
21 lines
439 B
TypeScript
/**
|
|
* Generated by orval v7.5.0 🍺
|
|
* Do not edit manually.
|
|
* 🌴 Palmr. API
|
|
* API documentation for Palmr file sharing system
|
|
* OpenAPI spec version: 1.0.0
|
|
*/
|
|
|
|
export type BulkUpdateConfigs200ConfigsItem = {
|
|
/** The config key */
|
|
key: string;
|
|
/** The config value */
|
|
value: string;
|
|
/** The config type */
|
|
type: string;
|
|
/** The config group */
|
|
group: string;
|
|
/** The config update date */
|
|
updatedAt: string;
|
|
};
|