@dracoonghost/trndup-sdk 1.5.1 → 1.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -3059,7 +3059,7 @@ declare class TrendsModule {
3059
3059
  * console.log(trend.topExamples);
3060
3060
  * ```
3061
3061
  */
3062
- getById(trendId: string): Promise<Trends.TrendDetail>;
3062
+ get(trendId: string): Promise<Trends.TrendDetail>;
3063
3063
  /**
3064
3064
  * Get all categories with trend counts
3065
3065
  *
package/dist/index.d.ts CHANGED
@@ -3059,7 +3059,7 @@ declare class TrendsModule {
3059
3059
  * console.log(trend.topExamples);
3060
3060
  * ```
3061
3061
  */
3062
- getById(trendId: string): Promise<Trends.TrendDetail>;
3062
+ get(trendId: string): Promise<Trends.TrendDetail>;
3063
3063
  /**
3064
3064
  * Get all categories with trend counts
3065
3065
  *
package/dist/index.js CHANGED
@@ -1551,7 +1551,7 @@ var TrendsModule = class {
1551
1551
  * console.log(trend.topExamples);
1552
1552
  * ```
1553
1553
  */
1554
- async getById(trendId) {
1554
+ async get(trendId) {
1555
1555
  return this.client.get(`/v1/trends/${trendId}`);
1556
1556
  }
1557
1557
  /**