@databolsa/sdk 1.0.4 → 1.0.5

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 +9 -0
  2. package/package.json +1 -1
package/dist/schema.d.ts CHANGED
@@ -1245,6 +1245,15 @@ export interface components {
1245
1245
  sell_rate: number | null;
1246
1246
  buy_price: number | null;
1247
1247
  sell_price: number | null;
1248
+ is_negotiable: boolean | null;
1249
+ /** @enum {string|null} */
1250
+ coupon: "unique" | "semiannual" | "monthly" | null;
1251
+ min_investment: number | null;
1252
+ live_buy_rate: number | null;
1253
+ live_sell_rate: number | null;
1254
+ live_buy_price: number | null;
1255
+ live_sell_price: number | null;
1256
+ priced_at: string | null;
1248
1257
  };
1249
1258
  IndexMeta: {
1250
1259
  code: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databolsa/sdk",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
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.",