Files
Palmr/apps/app/src/http/models/bulkUpdateConfigs200ConfigsItem.ts
Daniel Luiz Alves 9e35d27497 feat: add initial project setup with config, models, and assets
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
2025-04-07 16:14:18 -03:00

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;
};