@mivis/petmart-api 1.2.263 → 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.
- package/package.json +1 -1
- package/type.d.ts +14 -1
package/package.json
CHANGED
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
|
/**
|
|
@@ -2419,7 +2420,7 @@ declare namespace Components {
|
|
|
2419
2420
|
product: PopulatedProduct;
|
|
2420
2421
|
old_desc: string;
|
|
2421
2422
|
ai_characteristics_variants: EnhancementCharacteristicsResponse[];
|
|
2422
|
-
|
|
2423
|
+
ai_descriptions_variants: EnhancementDescriptionResponse[];
|
|
2423
2424
|
ai_image_variants: EnhancementImageResponse[];
|
|
2424
2425
|
createdAt: Date;
|
|
2425
2426
|
updatedAt: Date;
|
|
@@ -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
|
}
|