Skip to content

Commit

Permalink
image_link changed to image_data
Browse files Browse the repository at this point in the history
  • Loading branch information
keshav2010 committed Oct 17, 2023
1 parent 6637300 commit e86edea
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ export interface ProductVariantSchema {
sale_price: number;
sale_price_effective_date: string;
link: string;
image_link: string;
image_data: {
url: string;
key: string;
}[];
brand: string;
item_group_id: string;
item_category: string;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion lib/cjs/interfaces/services/InventoryServiceInterfaces.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ export interface ProductVariantUpdateRequest {
sale_price?: number;
sale_price_effective_date?: string;
link?: string;
image_link?: string;
image_data: {
url: string;
key: string;
}[];
brand?: string;
item_group_id?: string;
item_category?: string;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ export interface ProductVariantSchema {
sale_price: number;
sale_price_effective_date: string;
link: string;
image_link: string;
image_data: {
url: string;
key: string;
}[];
brand: string;
item_group_id: string;
item_category: string;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion lib/esm/interfaces/services/InventoryServiceInterfaces.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ export interface ProductVariantUpdateRequest {
sale_price?: number;
sale_price_effective_date?: string;
link?: string;
image_link?: string;
image_data: {
url: string;
key: string;
}[];
brand?: string;
item_group_id?: string;
item_category?: string;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ export interface ProductVariantSchema {
sale_price: number; // required by facebook catalog
sale_price_effective_date: string; // required by facebook catalog
link: string; // required by facebook catalog
image_link: string; // required by facebook catalog

image_data: { url: string; key: string }[];

brand: string; // required by facebook catalog
item_group_id: string; // required by facebook catalog

Expand Down
4 changes: 3 additions & 1 deletion src/interfaces/services/InventoryServiceInterfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ export interface ProductVariantUpdateRequest {
sale_price?: number;
sale_price_effective_date?: string;
link?: string;
image_link?: string;

image_data: { url: string; key: string }[];

brand?: string;
item_group_id?: string;
item_category?: string;
Expand Down

0 comments on commit e86edea

Please sign in to comment.