Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(core): Refactor customer payment method list for v2 #4856

Merged
merged 44 commits into from
Aug 6, 2024
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
b88e259
refactor(core): Refactor customer pml for v2
Sarthak1799 Jun 3, 2024
f2d7e05
Merge branch 'main' of github.com:juspay/hyperswitch into refactor-cu…
Sarthak1799 Jun 5, 2024
cd89296
docs(openapi): re-generate OpenAPI specification
hyperswitch-bot[bot] Jun 5, 2024
a580b35
fix(payment_methods): Fixed clippy errors
Sarthak1799 Jun 5, 2024
4eae216
fix(payment_methods): Fixed clippy errors
Sarthak1799 Jun 5, 2024
51c7d12
fix(payment_methods): Resolved comments
Sarthak1799 Jun 10, 2024
c71e21a
Merge branch 'main' of github.com:juspay/hyperswitch into refactor-cu…
Sarthak1799 Jun 20, 2024
bc62440
fix(payment_methods): Fixed errors
Sarthak1799 Jun 20, 2024
ddd9fd6
fix(payment_methods): Resolved comments
Sarthak1799 Jun 26, 2024
b2c0274
refactor(payment_methods): refactored for v2 flag
Sarthak1799 Jul 1, 2024
2ac2fa9
chore: run formatter
hyperswitch-bot[bot] Jul 1, 2024
d0e505a
docs(openapi): re-generate OpenAPI specification
hyperswitch-bot[bot] Jul 1, 2024
d19ca37
fix(payment_methods): Fixed errors
Sarthak1799 Jul 2, 2024
d98b862
Merge branch 'main' of github.com:juspay/hyperswitch into refactor-cu…
Sarthak1799 Jul 2, 2024
47874b3
fix(payment_methods): Fixed errors
Sarthak1799 Jul 2, 2024
7a918cd
fix(payment_methods): Fixed errors
Sarthak1799 Jul 2, 2024
a921a06
fix(payment_methods): Fixed errors
Sarthak1799 Jul 2, 2024
dbafd56
fix(payment_methods): Fixed errors
Sarthak1799 Jul 2, 2024
ff414c7
refactor(payment_methods): Refactored a bit
Sarthak1799 Jul 3, 2024
f892342
Merge branch 'main' into refactor-customer-pm-list
Sarthak1799 Jul 3, 2024
f991fca
fix(payment_methods): Fixed errors
Sarthak1799 Jul 3, 2024
c4ffddd
fix(payment_methods): Fixed errors
Sarthak1799 Jul 3, 2024
658a1a2
Merge branch 'main' of github.com:juspay/hyperswitch into refactor-cu…
Sarthak1799 Jul 19, 2024
cf8db57
Merge branch 'main' of github.com:juspay/hyperswitch into refactor-cu…
Sarthak1799 Jul 22, 2024
761dca6
refactor(payment_methods): Refactored
Sarthak1799 Jul 22, 2024
62c91b9
chore: run formatter
hyperswitch-bot[bot] Jul 22, 2024
a681bed
Merge branch 'main' of github.com:juspay/hyperswitch into refactor-cu…
Sarthak1799 Jul 23, 2024
64fc9a4
fix(payment_methods): Fixed errors
Sarthak1799 Jul 23, 2024
8595c68
chore: run formatter
hyperswitch-bot[bot] Jul 23, 2024
4a971ea
fix(payment_methods): Fixed errors
Sarthak1799 Jul 23, 2024
75486a1
chore: run formatter
hyperswitch-bot[bot] Jul 23, 2024
1efda3c
fix(payment_methods): Fixed errors
Sarthak1799 Jul 23, 2024
2049014
fix(payment_methods): Fixed errors
Sarthak1799 Jul 23, 2024
137091b
fix(payment_methods): Resolved comments
Sarthak1799 Jul 25, 2024
9160090
Merge branch 'main' of github.com:juspay/hyperswitch into refactor-cu…
Sarthak1799 Jul 25, 2024
185bc62
chore: run formatter
hyperswitch-bot[bot] Jul 25, 2024
69a2b80
fix(payment_methods): Fixed errors
Sarthak1799 Jul 25, 2024
730b094
Merge branch 'main' into refactor-customer-pm-list
Sarthak1799 Jul 26, 2024
967492e
Merge branch 'main' into refactor-customer-pm-list
Sarthak1799 Jul 26, 2024
298e69a
Merge branch 'main' into refactor-customer-pm-list
Sarthak1799 Jul 27, 2024
5328c9f
fix(payment_methods): Fixed errors
Sarthak1799 Jul 27, 2024
300b09a
Merge branch 'main' of github.com:juspay/hyperswitch into refactor-cu…
Sarthak1799 Jul 30, 2024
e838c6e
Merge branch 'main' of github.com:juspay/hyperswitch into refactor-cu…
Sarthak1799 Aug 1, 2024
29945bf
Merge branch 'main' of github.com:juspay/hyperswitch into refactor-cu…
Sarthak1799 Aug 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
docs(openapi): re-generate OpenAPI specification
  • Loading branch information
hyperswitch-bot[bot] committed Jun 5, 2024
commit cd892963789dcffb65c1211476404b302ca798ca
4 changes: 2 additions & 2 deletions openapi/openapi_spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -8328,7 +8328,6 @@
"CustomerPaymentMethod": {
"type": "object",
"required": [
"payment_token",
"payment_method_id",
"customer_id",
"payment_method",
Expand All @@ -8341,7 +8340,8 @@
"payment_token": {
"type": "string",
"description": "Token for payment method in temporary card locker which gets refreshed often",
"example": "7ebf443f-a050-4067-84e5-e6f6d4800aef"
"example": "7ebf443f-a050-4067-84e5-e6f6d4800aef",
"nullable": true
},
"payment_method_id": {
"type": "string",
Expand Down
Loading