-
Notifications
You must be signed in to change notification settings - Fork 79
Chenderrick/etsyapi improvements #244
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
chenderrick
wants to merge
11
commits into
jasonhedman:main
from
chenderrick:chenderrick/etsyapi-improvements
Closed
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
26e9161
add optional params to getListing and change back to getListingForSho…
chenderrick a127b2f
switch to getListing by shop, everything working
chenderrick ba322a8
adding rest of getListingByShop params and includes
chenderrick 9ebc580
defining createDraftListing possible params
chenderrick 4fdad11
create draft listing success
chenderrick 8a040e9
prettier
chenderrick ef5639b
patch etsy-ts made to order
chenderrick 07c304b
add patchDependency and sync lockfile
chenderrick 1c29c46
update lock
chenderrick f63d888
pin [email protected] to match patchedDependencies
chenderrick f892873
update ci workflow
chenderrick 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 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -82,7 +82,7 @@ | |
| "cmdk": "^1.1.1", | ||
| "cookies-next": "^6.0.0", | ||
| "date-fns": "^4.1.0", | ||
| "etsy-ts": "^4.2.0", | ||
| "etsy-ts": "4.2.0", | ||
| "discord-api-types": "^0.38.17", | ||
| "exa-js": "^1.8.8", | ||
| "fast-deep-equal": "^3.1.3", | ||
|
|
@@ -140,6 +140,9 @@ | |
| "typescript": "^5.8.2", | ||
| "typescript-eslint": "^8.27.0" | ||
| }, | ||
| "patchedDependencies": { | ||
| "[email protected]": "patches/[email protected]" | ||
| }, | ||
| "ct3aMetadata": { | ||
| "initVersion": "7.39.3" | ||
| }, | ||
|
|
||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| diff --git a/dist/api/data-contracts.d.ts b/dist/api/data-contracts.d.ts | ||
| index 5e8b06b081a84e93153e2e325ed76d53669fb033..675b39b3240104358379d1ef7ddc1d46bc1a3384 100644 | ||
| --- a/dist/api/data-contracts.d.ts | ||
| +++ b/dist/api/data-contracts.d.ts | ||
| @@ -2082,7 +2082,7 @@ export interface ICreateDraftListingPayload { | ||
| /** An enumerated string indicating who made the product. Helps buyers locate the listing under the Handmade heading. Requires 'is_supply' and 'when_made'. */ | ||
| who_made: "i_did" | "someone_else" | "collective"; | ||
| /** An enumerated string for the era in which the maker made the product in this listing. Helps buyers locate the listing under the Vintage heading. Requires 'is_supply' and 'who_made'. */ | ||
| - when_made: "made_to_order" | "2020_2023" | "2010_2019" | "2004_2009" | "before_2004" | "2000_2003" | "1990s" | "1980s" | "1970s" | "1960s" | "1950s" | "1940s" | "1930s" | "1920s" | "1910s" | "1900s" | "1800s" | "1700s" | "before_1700"; | ||
| + when_made: "made_to_order" | "2020_2025" | "2010_2019" | "2006_2009" | "before_2006" | "2000_2005" | "1990s" | "1980s" | "1970s" | "1960s" | "1950s" | "1940s" | "1930s" | "1920s" | "1910s" | "1900s" | "1800s" | "1700s" | "before_1700"; | ||
| /** | ||
| * The numerical taxonomy ID of the listing. See [SellerTaxonomy](/documentation/reference#tag/SellerTaxonomy) and [BuyerTaxonomy](/documentation/reference#tag/BuyerTaxonomy) for more information. | ||
| * @min 1 |
Oops, something went wrong.
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.
update CI to rely on updated lockfile after patching updated version of etsy-ts sdk