You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @description Represents a published taxonomy with methods to fetch taxonomy data and manage terms. Requires taxonomy_publish feature flag to be enabled.
8
+
*/
5
9
exportclassTaxonomy{
6
10
private_client: AxiosInstance;
7
11
private_taxonomyUid: string;
8
12
private_urlPath: string;
9
13
10
14
_queryParams: {[key: string]: string|number}={};
11
15
16
+
/**
17
+
* @constructor
18
+
* @param {AxiosInstance} client - The HTTP client instance
* @description Represents a published taxonomy term with methods to fetch term data, locales, ancestors, and descendants. Requires taxonomy_publish feature flag to be enabled.
6
+
*/
3
7
exportclassTerm{
4
8
protected_client: AxiosInstance;
5
9
private_taxonomyUid: string;
6
10
private_termUid: string;
7
11
private_urlPath: string;
8
12
13
+
/**
14
+
* @constructor
15
+
* @param {AxiosInstance} client - The HTTP client instance
0 commit comments