-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a8b3e1a
commit 1502a2e
Showing
17 changed files
with
1,220 additions
and
31 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
export = Catalog; | ||
declare class Catalog { | ||
constructor(_conf: any); | ||
_conf: any; | ||
_relativeUrls: { | ||
getTaxonomyByLevel: string; | ||
}; | ||
_urls: {}; | ||
updateUrls(urls: any): void; | ||
/** | ||
* @param {CatalogPublicValidator.GetTaxonomyByLevelParam} arg - Arg object. | ||
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}` | ||
* @param {import("../PublicAPIClient").Options} - Options | ||
* @returns {Promise<CatalogPublicModel.TaxonomyResponseSchema>} - Success response | ||
* @name getTaxonomyByLevel | ||
* @summary: Get Taxonomy Information by Level | ||
* @description: Get Taxonomy Details for a given level - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/catalog/getTaxonomyByLevel/). | ||
*/ | ||
getTaxonomyByLevel({ level, l0Slug, l1Slug, l2Slug, l3Slug, limit, requestHeaders }?: CatalogPublicValidator.GetTaxonomyByLevelParam, { responseHeaders }?: object): Promise<CatalogPublicModel.TaxonomyResponseSchema>; | ||
} | ||
import CatalogPublicValidator = require("./CatalogPublicValidator"); | ||
import CatalogPublicModel = require("./CatalogPublicModel"); |
Oops, something went wrong.