-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎉 Source Amazon Seller Partner: add FBA Reimbursement Report stream (#…
…23605) * add reimbursements stream * bump up version to 0.2.33 and update changelog * add reimbursements stream * bump up version to 0.2.33 and update changelog * bump up version and update changelog * correcting version - incrementing minor version as it adds a new stream to the connector * set additionalProperties to true in the schema * updated expected_records.txt * auto-bump connector version --------- Co-authored-by: Sajarin <sajarindider@gmail.com> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
- Loading branch information
1 parent
e7424b4
commit 3b3ca60
Showing
12 changed files
with
289 additions
and
28 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
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
130 changes: 130 additions & 0 deletions
130
...azon-seller-partner/integration_tests/configured_catalog_get_fba_reimbursements_data.json
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,130 @@ | ||
{ | ||
"streams": [ | ||
{ | ||
"stream": { | ||
"name": "GET_FBA_REIMBURSEMENTS_DATA", | ||
"json_schema": { | ||
"title": "FBA Reimbursements Data", | ||
"description": "FBA Reimbursements Data Reports", | ||
"type": "object", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"properties": { | ||
"approval-date": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"reimbursement-id": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"case-id": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"amazon-order-id": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"reason": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"sku": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"fnsku": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"asin": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"product-name": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"condition": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"currency-unit": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"amount-per-unit": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"quantity-reimbursed-cash": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"amount-total": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"quantity-reimbursed-inventory": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"quantity-reimbursed-total": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"original-reimbursement-id": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"original-reimbursement-type": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
} | ||
} | ||
}, | ||
"supported_sync_modes": [ | ||
"full_refresh" | ||
] | ||
}, | ||
"sync_mode": "full_refresh", | ||
"destination_sync_mode": "overwrite" | ||
} | ||
] | ||
} |
Oops, something went wrong.