@mivis/petmart-api 1.2.264 → 1.2.267

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/type.d.ts +13 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.264",
3
+ "version": "1.2.267",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
package/type.d.ts CHANGED
@@ -2384,6 +2384,7 @@ declare namespace Components {
2384
2384
  productId: string;
2385
2385
  type?: string;
2386
2386
  additionalPrompt?: string;
2387
+ removedBackgroundLink?: string;
2387
2388
  }
2388
2389
 
2389
2390
  /**
@@ -2447,6 +2448,7 @@ declare namespace Components {
2447
2448
  new_desc: string;
2448
2449
  status: string;
2449
2450
  additionalPrompt?: string;
2451
+ enhancementId: string;
2450
2452
  createdAt: Date;
2451
2453
  updatedAt: Date;
2452
2454
  }
@@ -2456,6 +2458,7 @@ declare namespace Components {
2456
2458
  productId: string;
2457
2459
  characteristics: ICharacteristic[];
2458
2460
  status: string;
2461
+ enhancementId: string;
2459
2462
  createdAt: Date;
2460
2463
  updatedAt: Date;
2461
2464
  }
@@ -2466,6 +2469,7 @@ declare namespace Components {
2466
2469
  image: string;
2467
2470
  type: EEnhancementImageType;
2468
2471
  status: string;
2472
+ enhancementId: string;
2469
2473
  createdAt: Date;
2470
2474
  updatedAt: Date;
2471
2475
  }
@@ -2485,5 +2489,14 @@ declare namespace Components {
2485
2489
  sortBy?: string;
2486
2490
  sortOrder?: SortOrder;
2487
2491
  }
2492
+
2493
+ export interface MergeAiVariantsResponse {
2494
+ success: boolean;
2495
+ mergedCount: number;
2496
+ errors: Array<{
2497
+ productId: string;
2498
+ error: string;
2499
+ }>;
2500
+ }
2488
2501
  }
2489
2502
  }