reportify-sdk 0.3.16 → 0.3.17

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
@@ -1534,15 +1534,15 @@ declare class UserModule {
1534
1534
  * Remove follows from a group
1535
1535
  *
1536
1536
  * @param groupId - Group ID
1537
- * @param followIds - List of follow IDs to remove
1537
+ * @param followValues - List of follow values to remove (e.g., stock symbols, channel IDs)
1538
1538
  * @returns Status message
1539
1539
  *
1540
1540
  * @example
1541
1541
  * ```typescript
1542
- * await client.user.removeFollowsFromGroup('group_123', ['follow_1', 'follow_2']);
1542
+ * await client.user.removeFollowsFromGroup('group_123', ['AAPL', 'MSFT']);
1543
1543
  * ```
1544
1544
  */
1545
- removeFollowsFromGroup(groupId: string, followIds: string[]): Promise<void>;
1545
+ removeFollowsFromGroup(groupId: string, followValues: string[]): Promise<void>;
1546
1546
  /**
1547
1547
  * Set follows for a group (replace all existing follows)
1548
1548
  *
package/dist/index.d.ts CHANGED
@@ -1534,15 +1534,15 @@ declare class UserModule {
1534
1534
  * Remove follows from a group
1535
1535
  *
1536
1536
  * @param groupId - Group ID
1537
- * @param followIds - List of follow IDs to remove
1537
+ * @param followValues - List of follow values to remove (e.g., stock symbols, channel IDs)
1538
1538
  * @returns Status message
1539
1539
  *
1540
1540
  * @example
1541
1541
  * ```typescript
1542
- * await client.user.removeFollowsFromGroup('group_123', ['follow_1', 'follow_2']);
1542
+ * await client.user.removeFollowsFromGroup('group_123', ['AAPL', 'MSFT']);
1543
1543
  * ```
1544
1544
  */
1545
- removeFollowsFromGroup(groupId: string, followIds: string[]): Promise<void>;
1545
+ removeFollowsFromGroup(groupId: string, followValues: string[]): Promise<void>;
1546
1546
  /**
1547
1547
  * Set follows for a group (replace all existing follows)
1548
1548
  *
package/dist/index.js CHANGED
@@ -1582,18 +1582,18 @@ var UserModule = class {
1582
1582
  * Remove follows from a group
1583
1583
  *
1584
1584
  * @param groupId - Group ID
1585
- * @param followIds - List of follow IDs to remove
1585
+ * @param followValues - List of follow values to remove (e.g., stock symbols, channel IDs)
1586
1586
  * @returns Status message
1587
1587
  *
1588
1588
  * @example
1589
1589
  * ```typescript
1590
- * await client.user.removeFollowsFromGroup('group_123', ['follow_1', 'follow_2']);
1590
+ * await client.user.removeFollowsFromGroup('group_123', ['AAPL', 'MSFT']);
1591
1591
  * ```
1592
1592
  */
1593
- async removeFollowsFromGroup(groupId, followIds) {
1593
+ async removeFollowsFromGroup(groupId, followValues) {
1594
1594
  return this.client.delete(
1595
1595
  `/v1/tools/user/follow-groups/${groupId}/follows`,
1596
- { follow_ids: followIds }
1596
+ { follow_values: followValues }
1597
1597
  );
1598
1598
  }
1599
1599
  /**
package/dist/index.mjs CHANGED
@@ -1540,18 +1540,18 @@ var UserModule = class {
1540
1540
  * Remove follows from a group
1541
1541
  *
1542
1542
  * @param groupId - Group ID
1543
- * @param followIds - List of follow IDs to remove
1543
+ * @param followValues - List of follow values to remove (e.g., stock symbols, channel IDs)
1544
1544
  * @returns Status message
1545
1545
  *
1546
1546
  * @example
1547
1547
  * ```typescript
1548
- * await client.user.removeFollowsFromGroup('group_123', ['follow_1', 'follow_2']);
1548
+ * await client.user.removeFollowsFromGroup('group_123', ['AAPL', 'MSFT']);
1549
1549
  * ```
1550
1550
  */
1551
- async removeFollowsFromGroup(groupId, followIds) {
1551
+ async removeFollowsFromGroup(groupId, followValues) {
1552
1552
  return this.client.delete(
1553
1553
  `/v1/tools/user/follow-groups/${groupId}/follows`,
1554
- { follow_ids: followIds }
1554
+ { follow_values: followValues }
1555
1555
  );
1556
1556
  }
1557
1557
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reportify-sdk",
3
- "version": "0.3.16",
3
+ "version": "0.3.17",
4
4
  "description": "TypeScript SDK for Reportify API - Financial data and document search",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",