Skip to content

25.6.0 #10

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

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 10 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,15 @@ jobs:
-H "Content-Type: application/x-www-form-urlencoded" \
-d "grant_type=client_credentials&client_id=${{secrets.OKTA_CLIENT_ID}}&client_secret=${{secrets.OKTA_CLIENT_SECRET}}")
token=$(echo $response | jq -r '.access_token')
echo "BEARER_TOKEN=${token}" >> $GITHUB_ENV
echo "BEARER_TOKEN_EINVOICING=${token}" >> $GITHUB_ENV

- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify
- name: Clean and Compile with Maven
run: mvn clean compile

- name: Compile the tests
run: mvn test-compile

- name: Test With Maven
run mvn -Dtest=EInvoicingTest test
env:
BEARER_TOKEN: ${{ env.BEARER_TOKEN }}
BEARER_TOKEN_EINVOICING: ${{ env.BEARER_TOKEN_EINVOICING }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ build
.idea/

.env

/out
249 changes: 190 additions & 59 deletions README.md

Large diffs are not rendered by default.

38 changes: 38 additions & 0 deletions docs/A1099/V2/Attribute.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@


# Attribute


## Properties

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**dryRun** | **Boolean** | | [optional] |
|**upsert** | **Boolean** | | [optional] |
|**status** | [**StatusEnum**](#StatusEnum) | | [optional] |
|**errorMessage** | **String** | | [optional] |
|**totalProcessed** | **Integer** | | [optional] |
|**totalRows** | **Integer** | | [optional] |
|**updatedValid** | **Integer** | | [optional] |
|**updatedNoEmail** | **Integer** | | [optional] |
|**updatedInvalid** | **Integer** | | [optional] |
|**skippedDuplicate** | **Integer** | | [optional] |
|**skippedInvalid** | **Integer** | | [optional] |
|**skippedMultipleMatches** | **Integer** | | [optional] |
|**notFound** | **Integer** | | [optional] |
|**createdInvalid** | **Integer** | | [optional] |
|**createdNoEmail** | **Integer** | | [optional] |
|**createdValid** | **Integer** | | [optional] |



## Enum: StatusEnum

| Name | Value |
|---- | -----|
| IN_PROGRESS | "InProgress" |
| SUCCESS | "Success" |
| FAILED | "Failed" |



14 changes: 14 additions & 0 deletions docs/A1099/V2/AuthorizedApiRequestModel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@


# AuthorizedApiRequestModel


## Properties

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**path** | **String** | The path and query of the API request you want to pre-authorize, omitting the leading /api/ | [optional] |
|**ttl** | **Integer** | Seconds until this AuthorizedApiRequest should expire, 3600 if omitted; values greater than 86400 will not be honored | [optional] |



16 changes: 16 additions & 0 deletions docs/A1099/V2/AuthorizedApiRequestV2DataModel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@


# AuthorizedApiRequestV2DataModel



## Properties

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**id** | **String** | | [optional] |
|**path** | **String** | | [optional] |
|**expiresAt** | **String** | | [optional] |



29 changes: 29 additions & 0 deletions docs/A1099/V2/BaseCompanyModel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@


# BaseCompanyModel


## Properties

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**name** | **String** | | [optional] |
|**email** | **String** | | [optional] |
|**address** | **String** | | [optional] |
|**city** | **String** | | [optional] |
|**state** | **String** | | [optional] |
|**zip** | **String** | | [optional] |
|**telephone** | **String** | | [optional] |
|**tin** | **String** | | [optional] |
|**dbaName** | **String** | | [optional] |
|**referenceId** | **String** | | [optional] |
|**doTinMatch** | **Boolean** | | [optional] |
|**groupName** | **String** | | [optional] |
|**foreignProvince** | **String** | | [optional] |
|**countryCode** | **String** | | [optional] |
|**resendRequests** | **Boolean** | | [optional] |
|**resendIntervalDays** | **Integer** | | [optional] |
|**maxReminderAttempts** | **Integer** | | [optional] |



13 changes: 13 additions & 0 deletions docs/A1099/V2/BaseFormListRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@


# BaseFormListRequest


## Properties

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**formType** | **String** | | [optional] |



14 changes: 14 additions & 0 deletions docs/A1099/V2/BulkUpsert1099FormsRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@


# BulkUpsert1099FormsRequest


## Properties

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**forms** | [**List<Form1099RListItem>**](Form1099RListItem.md) | | [optional] |
|**formType** | **String** | | [optional] |



Loading