Open
Conversation
|
| Name | Link |
|---|---|
| 🔨 Latest commit | 3d8ec1f |
danh91
reviewed
Jan 9, 2024
| # Perform the authentication request | ||
| response = lib.request( | ||
| url=f"{url}/api/auth/Token", | ||
| data={"UserName": self.username, "Password": self.password}, |
Member
There was a problem hiding this comment.
This needs to be wrapped in a lib.to_json
danh91
reviewed
Jan 9, 2024
| # Perform the authentication request | ||
| response = lib.request( | ||
| url=f"{url}/api/auth/Token", | ||
| data={"Username": self.username, "Password": self.password}, |
Member
There was a problem hiding this comment.
Suggested change
| data={"Username": self.username, "Password": self.password}, | |
| data=lib.to_json({"Username": self.username, "Password": self.password}), |
danh91
reviewed
Jan 9, 2024
| # Perform the authentication request | ||
| response = lib.request( | ||
| url=f"{url}/api/auth/Token", | ||
| data={"UserName": self.username, "Password": self.password}, |
Member
There was a problem hiding this comment.
Suggested change
| data={"UserName": self.username, "Password": self.password}, | |
| data=lib.to_json({"UserName": self.username, "Password": self.password}), |
[release] Karrio 2024.2
[hot-fixes] Hot fix 2024.2rc
Automated build
Bumps [jwcrypto](https://github.com/latchset/jwcrypto) from 1.5.4 to 1.5.6. - [Release notes](https://github.com/latchset/jwcrypto/releases) - [Commits](latchset/jwcrypto@v1.5.4...v1.5.6) --- updated-dependencies: - dependency-name: jwcrypto dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
…to-1.5.6 chore(deps): bump jwcrypto from 1.5.4 to 1.5.6
[patch] Karrio patch 2024.6-rc3
[feat] Add support for `return_address`
…-for-return-address
[feat] Standardize saturday delivery option
add the new api v2 of freightcom
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.