Skip to content

Commit

Permalink
chore: update sequalize to the latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 committed Feb 9, 2022
1 parent 7aae32e commit 84a4d92
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 23 deletions.
40 changes: 19 additions & 21 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -111,7 +111,7 @@
"prepend-http": "3.0.1",
"redis": "3.1.2",
"sanitize-html": "2.7.0",
"sequelize": "6.13.0",
"sequelize": "6.16.1",
"sequelize-cli": "6.4.1",
"sequelize-temporal": "1.0.8",
"showdown": "1.9.1",
Expand Down
2 changes: 1 addition & 1 deletion server/models/PaypalPlan.ts
Expand Up @@ -29,7 +29,7 @@ interface PaypalPlanCreateWithProductAttributes extends PaypalPlanCommonCreateAt
product?: PaypalProductCreateAttributes;
}

type PaypalPlanCreateAttributes = PaypalPlanCreateWithProductIdAttributes | PaypalPlanCreateWithProductAttributes;
type PaypalPlanCreateAttributes = PaypalPlanCreateWithProductIdAttributes & PaypalPlanCreateWithProductAttributes;

class PaypalPlan extends Model<PaypalPlanAttributes, PaypalPlanCreateAttributes> implements PaypalPlanAttributes {
id: string;
Expand Down

0 comments on commit 84a4d92

Please sign in to comment.