@getyetty-sdk/sellsy 2026.5.5 → 2026.5.8

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
@@ -35576,6 +35576,15 @@ type SearchCompaniesData = {
35576
35576
  * Filter the company list by reference (exact search, case insensitive)
35577
35577
  */
35578
35578
  reference?: Array<string>;
35579
+ /**
35580
+ * Number of employees
35581
+ *
35582
+ * Filter the company list by employee count range
35583
+ */
35584
+ number_of_employees?: {
35585
+ min?: number;
35586
+ max?: number;
35587
+ };
35579
35588
  };
35580
35589
  };
35581
35590
  path?: never;
@@ -35784,6 +35793,15 @@ type ExportCompaniesData = {
35784
35793
  * Filter the company list by reference (exact search, case insensitive)
35785
35794
  */
35786
35795
  reference?: Array<string>;
35796
+ /**
35797
+ * Number of employees
35798
+ *
35799
+ * Filter the company list by employee count range
35800
+ */
35801
+ number_of_employees?: {
35802
+ min?: number;
35803
+ max?: number;
35804
+ };
35787
35805
  };
35788
35806
  };
35789
35807
  path?: never;