-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DE-726] Set date and date-time formats, fix webhooks and endpoints m…
…odels [DE-728] Remove deprecated authentication code (#57) * Automated commit message * Fix latest publish branch --------- Co-authored-by: maxio-sdk <[email protected]> Co-authored-by: Alberto Blacutt <[email protected]>
- Loading branch information
1 parent
8e3b976
commit d429009
Showing
139 changed files
with
767 additions
and
401 deletions.
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
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,34 @@ | ||
|
||
# Basic Authentication | ||
|
||
|
||
|
||
Documentation for accessing and setting credentials for BasicAuth. | ||
|
||
## Auth Credentials | ||
|
||
| Name | Type | Description | Setter | | ||
| --- | --- | --- | --- | | ||
| BasicAuthUserName | `string` | The username to use with basic authentication | `username` | | ||
| BasicAuthPassword | `string` | The password to use with basic authentication | `password` | | ||
|
||
|
||
|
||
**Note:** Auth credentials can be set using `basicAuthCredentials` object in the client. | ||
|
||
## Usage Example | ||
|
||
### Client Initialization | ||
|
||
You must provide credentials in the client as shown in the following code snippet. | ||
|
||
```ts | ||
const client = new Client({ | ||
basicAuthCredentials: { | ||
username: 'BasicAuthUserName', | ||
password: 'BasicAuthPassword' | ||
}, | ||
}); | ||
``` | ||
|
||
|
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
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
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
|
||
```json | ||
{ | ||
"expires_at": "expires_at0" | ||
"expires_at": "2016-03-13T12:52:32.123Z" | ||
} | ||
``` | ||
|
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
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
13 changes: 13 additions & 0 deletions
13
doc/models/containers/record-payment-response-prepayment.md
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,13 @@ | ||
|
||
# Record Payment Response Prepayment | ||
|
||
## Class Name | ||
|
||
`RecordPaymentResponsePrepayment` | ||
|
||
## Cases | ||
|
||
| Type | | ||
| --- | | ||
| [`InvoicePrePayment`](../../../doc/models/invoice-pre-payment.md) | | ||
|
Oops, something went wrong.