@mivis/petmart-api 1.2.267 → 1.2.269

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 +10 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.267",
3
+ "version": "1.2.269",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
package/type.d.ts CHANGED
@@ -270,6 +270,7 @@ declare namespace Components {
270
270
  dimension: IDimension;
271
271
  photo: string[];
272
272
  desc: string;
273
+ old_desc: string;
273
274
  characteristic: ICharacteristic[];
274
275
  external_item_id: string | null;
275
276
  variations?: IProduct[];
@@ -361,6 +362,7 @@ declare namespace Components {
361
362
  dimension: IDimension;
362
363
  photo: string[];
363
364
  desc: string;
365
+ old_desc: string;
364
366
  characteristic: ICharacteristic[];
365
367
  variations?: IProduct[];
366
368
  purchases_count: number;
@@ -2418,7 +2420,6 @@ declare namespace Components {
2418
2420
  export interface EnhancementResponse {
2419
2421
  _id: string;
2420
2422
  product: PopulatedProduct;
2421
- old_desc: string;
2422
2423
  ai_characteristics_variants: EnhancementCharacteristicsResponse[];
2423
2424
  ai_descriptions_variants: EnhancementDescriptionResponse[];
2424
2425
  ai_image_variants: EnhancementImageResponse[];
@@ -2498,5 +2499,13 @@ declare namespace Components {
2498
2499
  error: string;
2499
2500
  }>;
2500
2501
  }
2502
+
2503
+ export interface IBitrixLeadRequest {
2504
+ name: string;
2505
+ tel: string;
2506
+ email?: string;
2507
+ comments?: string;
2508
+ source?: string;
2509
+ }
2501
2510
  }
2502
2511
  }