@getyetty-sdk/sellsy 2026.5.26 → 2026.5.27

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
@@ -50294,7 +50294,28 @@ type SearchOpportunitiesResponses = {
50294
50294
  };
50295
50295
  type SearchOpportunitiesResponse = SearchOpportunitiesResponses[keyof SearchOpportunitiesResponses];
50296
50296
  type ExportOpportunitiesData = {
50297
- body?: OpportunityFilters;
50297
+ body?: {
50298
+ /**
50299
+ * Export output format
50300
+ */
50301
+ output_format: 'csv' | 'parquet' | 'ndjson';
50302
+ /**
50303
+ * Character encoding for the export csv
50304
+ */
50305
+ charset: 'UTF-8' | 'ISO-8859-1';
50306
+ /**
50307
+ * Custom name for the export
50308
+ */
50309
+ custom_name?: string | null;
50310
+ /**
50311
+ * Whether to send an email notification when the export is complete
50312
+ */
50313
+ send_email?: boolean;
50314
+ /**
50315
+ * Specifies the format and content of the exported rows. This field determines which columns are included in the export, independent of the final file format (csv, pdf). For standard API output, just fill "api".
50316
+ */
50317
+ columns: 'api';
50318
+ } & OpportunityFilters;
50298
50319
  path?: never;
50299
50320
  query?: {
50300
50321
  /**