@databolsa/sdk 1.0.7 → 1.0.9

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.
Files changed (2) hide show
  1. package/dist/schema.d.ts +3 -1
  2. package/package.json +1 -1
package/dist/schema.d.ts CHANGED
@@ -305,7 +305,7 @@ export interface paths {
305
305
  };
306
306
  /**
307
307
  * Universo de FIIs filtrável por segmento e tijolo/papel
308
- * @description Lista o universo real de FIIs (mart_fii__profile), filtrável por segmento e por tijolo/papel; ordena por `sort`. Paginação por cursor (meta.next_cursor). Retorna ticker, nome, segmento e indicadores (dy, pvp, vacância…).
308
+ * @description Lista o universo de FIIs ATIVOS (com informe mensal nos últimos 6 meses; include_stale=true inclui encerrados/incorporados), filtrável por segmento, tijolo/papel e PL mínimo (min_pl); ordena por `sort`. Paginação por cursor (meta.next_cursor). Retorna ticker, nome, segmento e indicadores (dy, pvp, vacância…).
309
309
  */
310
310
  get: operations["screenFiis"];
311
311
  put?: never;
@@ -2295,6 +2295,8 @@ export interface operations {
2295
2295
  limit?: number;
2296
2296
  segment?: string;
2297
2297
  paper?: "true" | "false";
2298
+ min_pl?: number;
2299
+ include_stale?: "true" | "false";
2298
2300
  sort?: string;
2299
2301
  };
2300
2302
  header?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databolsa/sdk",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "description": "SDK TypeScript tipado para a Serving API pública do DataBolsa, gerado a partir do contrato OpenAPI.",