-
Notifications
You must be signed in to change notification settings - Fork 4
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
feat: wise.com connector #23
Merged
Merged
Changes from all commits
Commits
Show all changes
55 commits
Select commit
Hold shift + click to select a range
a946420
add structure for wise connector
altitude 1ac6272
fix: first
a5589b1
fix: lint
1e630d6
Merge pull request #24 from numary/fix/update-workflows-taskfile-mods
flemzord eec30ba
fix: GET using id
gfyrag caf40f2
chore: first
ba0c92c
chore: bump go-libs
f522070
chore: bump go-libs
ecbb8d6
chore: add dependabot
b23fb28
chore: move message models
9782f03
chore: new method to create kafka message
2945ea5
chore: move kafka messages to core pkg
4aa232c
chore: update messages
9b83e68
Merge pull request #26 from numary/feature/fix-get-by-id
altitude bfc6f83
chore: revert moving files
0c131f0
chore: update messages
7c1234a
Merge pull request #27 from numary/refactor/move-models-to-sharedpubl…
e1f0940
chore(deps): bump github/codeql-action from 1 to 2
dependabot[bot] 276452c
Merge pull request #28 from numary/dependabot/github_actions/github/c…
flemzord 4729bb2
fix: bad dependencies
gfyrag 475e1f3
fix: payments publish
gfyrag 11a633f
Merge pull request #30 from numary/fix/missing-id
flemzord 27ac2be
chore(deps): bump github.com/numary/go-libs from 1.0.0 to 1.0.1
dependabot[bot] de4db8a
Merge pull request #31 from numary/dependabot/go_modules/github.com/n…
afd89a8
fix: Ingestion message payload marshaling (#32)
da4d147
chore(deps): bump docker/build-push-action from 2 to 3
dependabot[bot] 19e99bc
chore(deps): bump docker/setup-qemu-action from 1 to 2
dependabot[bot] bedb497
chore(deps): bump docker/login-action from 1 to 2
dependabot[bot] a8a684a
chore(deps): bump actions/checkout from 2 to 3
dependabot[bot] b22e237
chore(deps): bump docker/setup-buildx-action from 1 to 2
dependabot[bot] 0ce043e
Merge pull request #38 from formancehq/dependabot/github_actions/dock…
flemzord 06c7912
Merge pull request #39 from formancehq/dependabot/github_actions/dock…
flemzord f805af2
Merge pull request #40 from formancehq/dependabot/github_actions/dock…
flemzord 3540916
Merge pull request #41 from formancehq/dependabot/github_actions/acti…
flemzord c3a0296
Merge pull request #42 from formancehq/dependabot/github_actions/dock…
flemzord c3e060c
feat: dummypay connector
darkmatterpool 516543a
feat: dummypay connector
darkmatterpool e12e126
Merge branch 'feat/connector-dummypay' of formance:formancehq/payment…
darkmatterpool 8b71be7
feat: uncommented dummypay load
darkmatterpool 6a0f52f
feat: dummypay payments generation
darkmatterpool c862071
feat: dummypay connector tests
darkmatterpool ea398ae
fix: linter fixes
darkmatterpool 1963c75
ci: Switch to FormanceHQ Organization
flemzord c412023
Merge branch 'main' into feat/connector-dummypay
flemzord 5ad16b8
fix: drop syscall as it's not supported on windows arm
darkmatterpool a56969b
feat: add scheme generation
darkmatterpool 93e2105
fix: typo in error message
darkmatterpool 39e9ade
feat: add swagger examples for dummypay
darkmatterpool 63be834
Merge pull request #43 from formancehq/feat/connector-dummypay
darkmatterpool d6e11a6
add structure for wise connector
altitude 2c8d0fd
Merge remote-tracking branch 'origin/feat/connector-wise' into feat/c…
darkmatterpool b7edb34
fix: general refactoring
darkmatterpool d0075d8
feat: complete wise integration
darkmatterpool 79c5cef
feat: add payment status mapping
darkmatterpool 89baaf9
feat: add additional error checks
darkmatterpool File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: 2 | ||
updates: | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Pull Request - Open | ||
on: | ||
pull_request: | ||
types: [assigned, opened, synchronize, reopened] | ||
jobs: | ||
pr-style: | ||
uses: formancehq/gh-workflows/.github/workflows/pr-style.yml@main | ||
|
||
lint: | ||
uses: formancehq/gh-workflows/.github/workflows/golang-lint.yml@main | ||
|
||
test: | ||
uses: formancehq/gh-workflows/.github/workflows/golang-test.yml@main | ||
|
||
build: | ||
uses: formancehq/gh-workflows/.github/workflows/goreleaser-build.yml@main | ||
needs: | ||
- pr-style | ||
- lint | ||
- test |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,8 @@ | ||
linters-settings: | ||
goimports: | ||
local-prefixes: github.com/golangci/golangci-lint | ||
govet: | ||
check-shadowing: false | ||
|
||
nolintlint: | ||
allow-leading-space: true # don't require machine-readable nolint directives (i.e. with no leading space) | ||
allow-unused: false # report any unused nolint directives | ||
require-explanation: false # don't require an explanation for nolint directives | ||
require-specific: false # don't require nolint directives to be specific about which linter is being skipped | ||
|
||
linters: | ||
disable-all: true | ||
enable: | ||
- deadcode #Default linter | ||
- errcheck #Default linter | ||
- gosimple #Default linter | ||
- govet #Default linter | ||
- ineffassign #Default linter | ||
- staticcheck #Default linter | ||
- structcheck #Default linter | ||
- typecheck #Default linter | ||
- unused #Default linter | ||
- varcheck #Default linter | ||
- gofmt | ||
- gci | ||
- goimports | ||
|
||
run: | ||
timeout: 5m | ||
go: '1.18' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@darkmatterpool I don't like this way of register connectors. It would be ideal if the connectors registers themselves to the core. If you have an idea for this....