@superbright/indexeddb-orm 1.0.47 → 1.0.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -450,6 +450,71 @@ export interface paths {
450
450
  patch?: never;
451
451
  trace?: never;
452
452
  };
453
+ "/app/{floorplanId}/{styleId}/furnitures": {
454
+ parameters: {
455
+ query?: never;
456
+ header?: never;
457
+ path?: never;
458
+ cookie?: never;
459
+ };
460
+ /**
461
+ * Get product highlight furniture for a floorplan and style
462
+ * @description Retrieves all furniture items that are marked as product highlights for a specific floorplan and style combination. Returns furniture with processed media URLs.
463
+ */
464
+ get: {
465
+ parameters: {
466
+ query?: never;
467
+ header?: never;
468
+ path: {
469
+ /** @description Floor plan ID */
470
+ floorplanId: number;
471
+ /** @description Style ID */
472
+ styleId: number;
473
+ };
474
+ cookie?: never;
475
+ };
476
+ requestBody?: never;
477
+ responses: {
478
+ /** @description Successfully retrieved furniture list */
479
+ 200: {
480
+ headers: {
481
+ [name: string]: unknown;
482
+ };
483
+ content: {
484
+ "application/json": {
485
+ /** @description List of furniture items with processed media */
486
+ data?: {
487
+ /** @description Furniture ID */
488
+ id?: number;
489
+ /** @description Furniture name */
490
+ name?: string;
491
+ /** @description Furniture description */
492
+ description?: string;
493
+ /** @description Processed media with signed URLs */
494
+ media?: Record<string, never>;
495
+ }[];
496
+ /** @description Total number of furniture items returned */
497
+ total?: number;
498
+ };
499
+ };
500
+ };
501
+ /** @description Internal Server Error */
502
+ 500: {
503
+ headers: {
504
+ [name: string]: unknown;
505
+ };
506
+ content?: never;
507
+ };
508
+ };
509
+ };
510
+ put?: never;
511
+ post?: never;
512
+ delete?: never;
513
+ options?: never;
514
+ head?: never;
515
+ patch?: never;
516
+ trace?: never;
517
+ };
453
518
  "/auth/signup": {
454
519
  parameters: {
455
520
  query?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superbright/indexeddb-orm",
3
- "version": "1.0.47",
3
+ "version": "1.0.48",
4
4
  "description": "Vite + TypeScript IndexedDB ORM.",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",