Skip to content

Commit

Permalink
Remove empty price rules options
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalrymple committed May 31, 2018
1 parent c0c0e1a commit a614f06
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion options/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ export * from "./gift_cards";
export * from "./inventory_items";
export * from "./inventory_levels";
export * from "./orders";
export * from "./price_rules";
export * from "./product_collection";
export * from "./products";
export * from "./redirects";
Expand Down
3 changes: 0 additions & 3 deletions options/price_rules.ts

This file was deleted.

2 changes: 1 addition & 1 deletion services/price_rules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class PriceRules extends BaseService {
* Gets a list of up to 250 of the shop's Price Rules.
* @param options Options for filtering the results.
*/
public list(options?: Options.PriceRuleOptions & Options.ListOptions & Options.FieldOptions) {
public list(options?: Options.ListOptions & Options.FieldOptions) {
return this.createRequest<PriceRule[]>("GET", ".json", "price_rules", options);
}

Expand Down

0 comments on commit a614f06

Please sign in to comment.