@mivis/petmart-api 1.2.312 → 1.2.314
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 +3 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -1703,6 +1703,7 @@ declare namespace Components {
|
|
|
1703
1703
|
navigation_path: string | null; // example: "ProductScreen"
|
|
1704
1704
|
navigation_params: Record<string, any> | null; // example: {product_id: "ObjectId"}
|
|
1705
1705
|
type: EBannerType;
|
|
1706
|
+
webUrl: string | null;
|
|
1706
1707
|
createdAt: Date;
|
|
1707
1708
|
updatedAt: Date;
|
|
1708
1709
|
}
|
|
@@ -2398,6 +2399,7 @@ declare namespace Components {
|
|
|
2398
2399
|
start_date: Date;
|
|
2399
2400
|
end_date: Date;
|
|
2400
2401
|
usage_limit_user?: number; // 0 for unlimited
|
|
2402
|
+
usage_limit_total?: number; // 0 for unlimited
|
|
2401
2403
|
target_type: EPromoTargetType;
|
|
2402
2404
|
target_sellers?: string[];
|
|
2403
2405
|
target_categories?: string[];
|
|
@@ -2413,6 +2415,7 @@ declare namespace Components {
|
|
|
2413
2415
|
start_date?: string;
|
|
2414
2416
|
end_date?: string;
|
|
2415
2417
|
usage_limit_user?: number;
|
|
2418
|
+
usage_limit_total?: number;
|
|
2416
2419
|
target_type?: EPromoTargetType;
|
|
2417
2420
|
target_sellers?: string[];
|
|
2418
2421
|
target_categories?: string[];
|