@clear-street/clearstreet 0.0.0 → 0.73.0
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/CHANGELOG.md +994 -0
- package/LICENSE +201 -0
- package/README.md +358 -0
- package/api-promise.d.mts +3 -0
- package/api-promise.d.mts.map +1 -0
- package/api-promise.d.ts +3 -0
- package/api-promise.d.ts.map +1 -0
- package/api-promise.js +6 -0
- package/api-promise.js.map +1 -0
- package/api-promise.mjs +3 -0
- package/api-promise.mjs.map +1 -0
- package/client.d.mts +195 -0
- package/client.d.mts.map +1 -0
- package/client.d.ts +195 -0
- package/client.d.ts.map +1 -0
- package/client.js +489 -0
- package/client.js.map +1 -0
- package/client.mjs +485 -0
- package/client.mjs.map +1 -0
- package/core/api-promise.d.mts +46 -0
- package/core/api-promise.d.mts.map +1 -0
- package/core/api-promise.d.ts +46 -0
- package/core/api-promise.d.ts.map +1 -0
- package/core/api-promise.js +74 -0
- package/core/api-promise.js.map +1 -0
- package/core/api-promise.mjs +70 -0
- package/core/api-promise.mjs.map +1 -0
- package/core/error.d.mts +46 -0
- package/core/error.d.mts.map +1 -0
- package/core/error.d.ts +46 -0
- package/core/error.d.ts.map +1 -0
- package/core/error.js +113 -0
- package/core/error.js.map +1 -0
- package/core/error.mjs +97 -0
- package/core/error.mjs.map +1 -0
- package/core/resource.d.mts +6 -0
- package/core/resource.d.mts.map +1 -0
- package/core/resource.d.ts +6 -0
- package/core/resource.d.ts.map +1 -0
- package/core/resource.js +11 -0
- package/core/resource.js.map +1 -0
- package/core/resource.mjs +7 -0
- package/core/resource.mjs.map +1 -0
- package/core/uploads.d.mts +3 -0
- package/core/uploads.d.mts.map +1 -0
- package/core/uploads.d.ts +3 -0
- package/core/uploads.d.ts.map +1 -0
- package/core/uploads.js +6 -0
- package/core/uploads.js.map +1 -0
- package/core/uploads.mjs +2 -0
- package/core/uploads.mjs.map +1 -0
- package/error.d.mts +3 -0
- package/error.d.mts.map +1 -0
- package/error.d.ts +3 -0
- package/error.d.ts.map +1 -0
- package/error.js +6 -0
- package/error.js.map +1 -0
- package/error.mjs +3 -0
- package/error.mjs.map +1 -0
- package/index.d.mts +6 -0
- package/index.d.mts.map +1 -0
- package/index.d.ts +6 -0
- package/index.d.ts.map +1 -0
- package/index.js +30 -0
- package/index.js.map +1 -0
- package/index.mjs +7 -0
- package/index.mjs.map +1 -0
- package/internal/builtin-types.d.mts +73 -0
- package/internal/builtin-types.d.mts.map +1 -0
- package/internal/builtin-types.d.ts +73 -0
- package/internal/builtin-types.d.ts.map +1 -0
- package/internal/builtin-types.js +4 -0
- package/internal/builtin-types.js.map +1 -0
- package/internal/builtin-types.mjs +3 -0
- package/internal/builtin-types.mjs.map +1 -0
- package/internal/detect-platform.d.mts +15 -0
- package/internal/detect-platform.d.mts.map +1 -0
- package/internal/detect-platform.d.ts +15 -0
- package/internal/detect-platform.d.ts.map +1 -0
- package/internal/detect-platform.js +162 -0
- package/internal/detect-platform.js.map +1 -0
- package/internal/detect-platform.mjs +157 -0
- package/internal/detect-platform.mjs.map +1 -0
- package/internal/errors.d.mts +3 -0
- package/internal/errors.d.mts.map +1 -0
- package/internal/errors.d.ts +3 -0
- package/internal/errors.d.ts.map +1 -0
- package/internal/errors.js +41 -0
- package/internal/errors.js.map +1 -0
- package/internal/errors.mjs +36 -0
- package/internal/errors.mjs.map +1 -0
- package/internal/headers.d.mts +20 -0
- package/internal/headers.d.mts.map +1 -0
- package/internal/headers.d.ts +20 -0
- package/internal/headers.d.ts.map +1 -0
- package/internal/headers.js +79 -0
- package/internal/headers.js.map +1 -0
- package/internal/headers.mjs +74 -0
- package/internal/headers.mjs.map +1 -0
- package/internal/parse.d.mts +12 -0
- package/internal/parse.d.mts.map +1 -0
- package/internal/parse.d.ts +12 -0
- package/internal/parse.d.ts.map +1 -0
- package/internal/parse.js +40 -0
- package/internal/parse.js.map +1 -0
- package/internal/parse.mjs +37 -0
- package/internal/parse.mjs.map +1 -0
- package/internal/qs/formats.d.mts +7 -0
- package/internal/qs/formats.d.mts.map +1 -0
- package/internal/qs/formats.d.ts +7 -0
- package/internal/qs/formats.d.ts.map +1 -0
- package/internal/qs/formats.js +13 -0
- package/internal/qs/formats.js.map +1 -0
- package/internal/qs/formats.mjs +9 -0
- package/internal/qs/formats.mjs.map +1 -0
- package/internal/qs/index.d.mts +10 -0
- package/internal/qs/index.d.mts.map +1 -0
- package/internal/qs/index.d.ts +10 -0
- package/internal/qs/index.d.ts.map +1 -0
- package/internal/qs/index.js +14 -0
- package/internal/qs/index.js.map +1 -0
- package/internal/qs/index.mjs +10 -0
- package/internal/qs/index.mjs.map +1 -0
- package/internal/qs/stringify.d.mts +3 -0
- package/internal/qs/stringify.d.mts.map +1 -0
- package/internal/qs/stringify.d.ts +3 -0
- package/internal/qs/stringify.d.ts.map +1 -0
- package/internal/qs/stringify.js +277 -0
- package/internal/qs/stringify.js.map +1 -0
- package/internal/qs/stringify.mjs +274 -0
- package/internal/qs/stringify.mjs.map +1 -0
- package/internal/qs/types.d.mts +57 -0
- package/internal/qs/types.d.mts.map +1 -0
- package/internal/qs/types.d.ts +57 -0
- package/internal/qs/types.d.ts.map +1 -0
- package/internal/qs/types.js +3 -0
- package/internal/qs/types.js.map +1 -0
- package/internal/qs/types.mjs +2 -0
- package/internal/qs/types.mjs.map +1 -0
- package/internal/qs/utils.d.mts +15 -0
- package/internal/qs/utils.d.mts.map +1 -0
- package/internal/qs/utils.d.ts +15 -0
- package/internal/qs/utils.d.ts.map +1 -0
- package/internal/qs/utils.js +230 -0
- package/internal/qs/utils.js.map +1 -0
- package/internal/qs/utils.mjs +217 -0
- package/internal/qs/utils.mjs.map +1 -0
- package/internal/request-options.d.mts +75 -0
- package/internal/request-options.d.mts.map +1 -0
- package/internal/request-options.d.ts +75 -0
- package/internal/request-options.d.ts.map +1 -0
- package/internal/request-options.js +14 -0
- package/internal/request-options.js.map +1 -0
- package/internal/request-options.mjs +10 -0
- package/internal/request-options.mjs.map +1 -0
- package/internal/shim-types.d.mts +17 -0
- package/internal/shim-types.d.mts.map +1 -0
- package/internal/shim-types.d.ts +17 -0
- package/internal/shim-types.d.ts.map +1 -0
- package/internal/shim-types.js +4 -0
- package/internal/shim-types.js.map +1 -0
- package/internal/shim-types.mjs +3 -0
- package/internal/shim-types.mjs.map +1 -0
- package/internal/shims.d.mts +26 -0
- package/internal/shims.d.mts.map +1 -0
- package/internal/shims.d.ts +26 -0
- package/internal/shims.d.ts.map +1 -0
- package/internal/shims.js +92 -0
- package/internal/shims.js.map +1 -0
- package/internal/shims.mjs +85 -0
- package/internal/shims.mjs.map +1 -0
- package/internal/to-file.d.mts +45 -0
- package/internal/to-file.d.mts.map +1 -0
- package/internal/to-file.d.ts +45 -0
- package/internal/to-file.d.ts.map +1 -0
- package/internal/to-file.js +91 -0
- package/internal/to-file.js.map +1 -0
- package/internal/to-file.mjs +88 -0
- package/internal/to-file.mjs.map +1 -0
- package/internal/tslib.js +81 -0
- package/internal/tslib.mjs +17 -0
- package/internal/types.d.mts +69 -0
- package/internal/types.d.mts.map +1 -0
- package/internal/types.d.ts +69 -0
- package/internal/types.d.ts.map +1 -0
- package/internal/types.js +4 -0
- package/internal/types.js.map +1 -0
- package/internal/types.mjs +3 -0
- package/internal/types.mjs.map +1 -0
- package/internal/uploads.d.mts +42 -0
- package/internal/uploads.d.mts.map +1 -0
- package/internal/uploads.d.ts +42 -0
- package/internal/uploads.d.ts.map +1 -0
- package/internal/uploads.js +141 -0
- package/internal/uploads.js.map +1 -0
- package/internal/uploads.mjs +131 -0
- package/internal/uploads.mjs.map +1 -0
- package/internal/utils/base64.d.mts +3 -0
- package/internal/utils/base64.d.mts.map +1 -0
- package/internal/utils/base64.d.ts +3 -0
- package/internal/utils/base64.d.ts.map +1 -0
- package/internal/utils/base64.js +38 -0
- package/internal/utils/base64.js.map +1 -0
- package/internal/utils/base64.mjs +33 -0
- package/internal/utils/base64.mjs.map +1 -0
- package/internal/utils/bytes.d.mts +4 -0
- package/internal/utils/bytes.d.mts.map +1 -0
- package/internal/utils/bytes.d.ts +4 -0
- package/internal/utils/bytes.d.ts.map +1 -0
- package/internal/utils/bytes.js +31 -0
- package/internal/utils/bytes.js.map +1 -0
- package/internal/utils/bytes.mjs +26 -0
- package/internal/utils/bytes.mjs.map +1 -0
- package/internal/utils/env.d.mts +9 -0
- package/internal/utils/env.d.mts.map +1 -0
- package/internal/utils/env.d.ts +9 -0
- package/internal/utils/env.d.ts.map +1 -0
- package/internal/utils/env.js +22 -0
- package/internal/utils/env.js.map +1 -0
- package/internal/utils/env.mjs +18 -0
- package/internal/utils/env.mjs.map +1 -0
- package/internal/utils/log.d.mts +37 -0
- package/internal/utils/log.d.mts.map +1 -0
- package/internal/utils/log.d.ts +37 -0
- package/internal/utils/log.d.ts.map +1 -0
- package/internal/utils/log.js +87 -0
- package/internal/utils/log.js.map +1 -0
- package/internal/utils/log.mjs +81 -0
- package/internal/utils/log.mjs.map +1 -0
- package/internal/utils/path.d.mts +15 -0
- package/internal/utils/path.d.mts.map +1 -0
- package/internal/utils/path.d.ts +15 -0
- package/internal/utils/path.d.ts.map +1 -0
- package/internal/utils/path.js +79 -0
- package/internal/utils/path.js.map +1 -0
- package/internal/utils/path.mjs +74 -0
- package/internal/utils/path.mjs.map +1 -0
- package/internal/utils/query.d.mts +2 -0
- package/internal/utils/query.d.mts.map +1 -0
- package/internal/utils/query.d.ts +2 -0
- package/internal/utils/query.d.ts.map +1 -0
- package/internal/utils/query.js +10 -0
- package/internal/utils/query.js.map +1 -0
- package/internal/utils/query.mjs +6 -0
- package/internal/utils/query.mjs.map +1 -0
- package/internal/utils/sleep.d.mts +2 -0
- package/internal/utils/sleep.d.mts.map +1 -0
- package/internal/utils/sleep.d.ts +2 -0
- package/internal/utils/sleep.d.ts.map +1 -0
- package/internal/utils/sleep.js +7 -0
- package/internal/utils/sleep.js.map +1 -0
- package/internal/utils/sleep.mjs +3 -0
- package/internal/utils/sleep.mjs.map +1 -0
- package/internal/utils/uuid.d.mts +5 -0
- package/internal/utils/uuid.d.mts.map +1 -0
- package/internal/utils/uuid.d.ts +5 -0
- package/internal/utils/uuid.d.ts.map +1 -0
- package/internal/utils/uuid.js +19 -0
- package/internal/utils/uuid.js.map +1 -0
- package/internal/utils/uuid.mjs +15 -0
- package/internal/utils/uuid.mjs.map +1 -0
- package/internal/utils/values.d.mts +18 -0
- package/internal/utils/values.d.mts.map +1 -0
- package/internal/utils/values.d.ts +18 -0
- package/internal/utils/values.d.ts.map +1 -0
- package/internal/utils/values.js +112 -0
- package/internal/utils/values.js.map +1 -0
- package/internal/utils/values.mjs +94 -0
- package/internal/utils/values.mjs.map +1 -0
- package/internal/utils.d.mts +8 -0
- package/internal/utils.d.mts.map +1 -0
- package/internal/utils.d.ts +8 -0
- package/internal/utils.d.ts.map +1 -0
- package/internal/utils.js +12 -0
- package/internal/utils.js.map +1 -0
- package/internal/utils.mjs +9 -0
- package/internal/utils.mjs.map +1 -0
- package/package.json +147 -3
- package/resource.d.mts +3 -0
- package/resource.d.mts.map +1 -0
- package/resource.d.ts +3 -0
- package/resource.d.ts.map +1 -0
- package/resource.js +6 -0
- package/resource.js.map +1 -0
- package/resource.mjs +3 -0
- package/resource.mjs.map +1 -0
- package/resources/index.d.mts +3 -0
- package/resources/index.d.mts.map +1 -0
- package/resources/index.d.ts +3 -0
- package/resources/index.d.ts.map +1 -0
- package/resources/index.js +9 -0
- package/resources/index.js.map +1 -0
- package/resources/index.mjs +4 -0
- package/resources/index.mjs.map +1 -0
- package/resources/shared.d.mts +63 -0
- package/resources/shared.d.mts.map +1 -0
- package/resources/shared.d.ts +63 -0
- package/resources/shared.d.ts.map +1 -0
- package/resources/shared.js +4 -0
- package/resources/shared.js.map +1 -0
- package/resources/shared.mjs +3 -0
- package/resources/shared.mjs.map +1 -0
- package/resources/v1/accounts.d.mts +436 -0
- package/resources/v1/accounts.d.mts.map +1 -0
- package/resources/v1/accounts.d.ts +436 -0
- package/resources/v1/accounts.d.ts.map +1 -0
- package/resources/v1/accounts.js +74 -0
- package/resources/v1/accounts.js.map +1 -0
- package/resources/v1/accounts.mjs +70 -0
- package/resources/v1/accounts.mjs.map +1 -0
- package/resources/v1/api-version.d.mts +37 -0
- package/resources/v1/api-version.d.mts.map +1 -0
- package/resources/v1/api-version.d.ts +37 -0
- package/resources/v1/api-version.d.ts.map +1 -0
- package/resources/v1/api-version.js +23 -0
- package/resources/v1/api-version.js.map +1 -0
- package/resources/v1/api-version.mjs +19 -0
- package/resources/v1/api-version.mjs.map +1 -0
- package/resources/v1/calendar.d.mts +170 -0
- package/resources/v1/calendar.d.mts.map +1 -0
- package/resources/v1/calendar.d.ts +170 -0
- package/resources/v1/calendar.d.ts.map +1 -0
- package/resources/v1/calendar.js +39 -0
- package/resources/v1/calendar.js.map +1 -0
- package/resources/v1/calendar.mjs +35 -0
- package/resources/v1/calendar.mjs.map +1 -0
- package/resources/v1/index.d.mts +12 -0
- package/resources/v1/index.d.mts.map +1 -0
- package/resources/v1/index.d.ts +12 -0
- package/resources/v1/index.d.ts.map +1 -0
- package/resources/v1/index.js +27 -0
- package/resources/v1/index.js.map +1 -0
- package/resources/v1/index.mjs +13 -0
- package/resources/v1/index.mjs.map +1 -0
- package/resources/v1/instrument-data/index.d.mts +4 -0
- package/resources/v1/instrument-data/index.d.mts.map +1 -0
- package/resources/v1/instrument-data/index.d.ts +4 -0
- package/resources/v1/instrument-data/index.d.ts.map +1 -0
- package/resources/v1/instrument-data/index.js +11 -0
- package/resources/v1/instrument-data/index.js.map +1 -0
- package/resources/v1/instrument-data/index.mjs +5 -0
- package/resources/v1/instrument-data/index.mjs.map +1 -0
- package/resources/v1/instrument-data/instrument-data.d.mts +1202 -0
- package/resources/v1/instrument-data/instrument-data.d.mts.map +1 -0
- package/resources/v1/instrument-data/instrument-data.d.ts +1202 -0
- package/resources/v1/instrument-data/instrument-data.d.ts.map +1 -0
- package/resources/v1/instrument-data/instrument-data.js +150 -0
- package/resources/v1/instrument-data/instrument-data.js.map +1 -0
- package/resources/v1/instrument-data/instrument-data.mjs +145 -0
- package/resources/v1/instrument-data/instrument-data.mjs.map +1 -0
- package/resources/v1/instrument-data/market-data.d.mts +240 -0
- package/resources/v1/instrument-data/market-data.d.mts.map +1 -0
- package/resources/v1/instrument-data/market-data.d.ts +240 -0
- package/resources/v1/instrument-data/market-data.d.ts.map +1 -0
- package/resources/v1/instrument-data/market-data.js +49 -0
- package/resources/v1/instrument-data/market-data.js.map +1 -0
- package/resources/v1/instrument-data/market-data.mjs +45 -0
- package/resources/v1/instrument-data/market-data.mjs.map +1 -0
- package/resources/v1/instrument-data/news.d.mts +136 -0
- package/resources/v1/instrument-data/news.d.mts.map +1 -0
- package/resources/v1/instrument-data/news.d.ts +136 -0
- package/resources/v1/instrument-data/news.d.ts.map +1 -0
- package/resources/v1/instrument-data/news.js +25 -0
- package/resources/v1/instrument-data/news.js.map +1 -0
- package/resources/v1/instrument-data/news.mjs +21 -0
- package/resources/v1/instrument-data/news.mjs.map +1 -0
- package/resources/v1/instrument-data.d.mts +2 -0
- package/resources/v1/instrument-data.d.mts.map +1 -0
- package/resources/v1/instrument-data.d.ts +2 -0
- package/resources/v1/instrument-data.d.ts.map +1 -0
- package/resources/v1/instrument-data.js +6 -0
- package/resources/v1/instrument-data.js.map +1 -0
- package/resources/v1/instrument-data.mjs +3 -0
- package/resources/v1/instrument-data.mjs.map +1 -0
- package/resources/v1/instruments.d.mts +473 -0
- package/resources/v1/instruments.d.mts.map +1 -0
- package/resources/v1/instruments.d.ts +473 -0
- package/resources/v1/instruments.d.ts.map +1 -0
- package/resources/v1/instruments.js +77 -0
- package/resources/v1/instruments.js.map +1 -0
- package/resources/v1/instruments.mjs +73 -0
- package/resources/v1/instruments.mjs.map +1 -0
- package/resources/v1/omni-ai/entitlements.d.mts +108 -0
- package/resources/v1/omni-ai/entitlements.d.mts.map +1 -0
- package/resources/v1/omni-ai/entitlements.d.ts +108 -0
- package/resources/v1/omni-ai/entitlements.d.ts.map +1 -0
- package/resources/v1/omni-ai/entitlements.js +67 -0
- package/resources/v1/omni-ai/entitlements.js.map +1 -0
- package/resources/v1/omni-ai/entitlements.mjs +63 -0
- package/resources/v1/omni-ai/entitlements.mjs.map +1 -0
- package/resources/v1/omni-ai/index.d.mts +6 -0
- package/resources/v1/omni-ai/index.d.mts.map +1 -0
- package/resources/v1/omni-ai/index.d.ts +6 -0
- package/resources/v1/omni-ai/index.d.ts.map +1 -0
- package/resources/v1/omni-ai/index.js +15 -0
- package/resources/v1/omni-ai/index.js.map +1 -0
- package/resources/v1/omni-ai/index.mjs +7 -0
- package/resources/v1/omni-ai/index.mjs.map +1 -0
- package/resources/v1/omni-ai/messages.d.mts +85 -0
- package/resources/v1/omni-ai/messages.d.mts.map +1 -0
- package/resources/v1/omni-ai/messages.d.ts +85 -0
- package/resources/v1/omni-ai/messages.d.ts.map +1 -0
- package/resources/v1/omni-ai/messages.js +51 -0
- package/resources/v1/omni-ai/messages.js.map +1 -0
- package/resources/v1/omni-ai/messages.mjs +47 -0
- package/resources/v1/omni-ai/messages.mjs.map +1 -0
- package/resources/v1/omni-ai/omni-ai.d.mts +323 -0
- package/resources/v1/omni-ai/omni-ai.d.mts.map +1 -0
- package/resources/v1/omni-ai/omni-ai.d.ts +323 -0
- package/resources/v1/omni-ai/omni-ai.d.ts.map +1 -0
- package/resources/v1/omni-ai/omni-ai.js +29 -0
- package/resources/v1/omni-ai/omni-ai.js.map +1 -0
- package/resources/v1/omni-ai/omni-ai.mjs +24 -0
- package/resources/v1/omni-ai/omni-ai.mjs.map +1 -0
- package/resources/v1/omni-ai/responses.d.mts +158 -0
- package/resources/v1/omni-ai/responses.d.mts.map +1 -0
- package/resources/v1/omni-ai/responses.d.ts +158 -0
- package/resources/v1/omni-ai/responses.d.ts.map +1 -0
- package/resources/v1/omni-ai/responses.js +60 -0
- package/resources/v1/omni-ai/responses.js.map +1 -0
- package/resources/v1/omni-ai/responses.mjs +56 -0
- package/resources/v1/omni-ai/responses.mjs.map +1 -0
- package/resources/v1/omni-ai/threads.d.mts +338 -0
- package/resources/v1/omni-ai/threads.d.mts.map +1 -0
- package/resources/v1/omni-ai/threads.d.ts +338 -0
- package/resources/v1/omni-ai/threads.d.ts.map +1 -0
- package/resources/v1/omni-ai/threads.js +141 -0
- package/resources/v1/omni-ai/threads.js.map +1 -0
- package/resources/v1/omni-ai/threads.mjs +137 -0
- package/resources/v1/omni-ai/threads.mjs.map +1 -0
- package/resources/v1/omni-ai.d.mts +2 -0
- package/resources/v1/omni-ai.d.mts.map +1 -0
- package/resources/v1/omni-ai.d.ts +2 -0
- package/resources/v1/omni-ai.d.ts.map +1 -0
- package/resources/v1/omni-ai.js +6 -0
- package/resources/v1/omni-ai.js.map +1 -0
- package/resources/v1/omni-ai.mjs +3 -0
- package/resources/v1/omni-ai.mjs.map +1 -0
- package/resources/v1/orders.d.mts +643 -0
- package/resources/v1/orders.d.mts.map +1 -0
- package/resources/v1/orders.d.ts +643 -0
- package/resources/v1/orders.d.ts.map +1 -0
- package/resources/v1/orders.js +134 -0
- package/resources/v1/orders.js.map +1 -0
- package/resources/v1/orders.mjs +130 -0
- package/resources/v1/orders.mjs.map +1 -0
- package/resources/v1/positions.d.mts +385 -0
- package/resources/v1/positions.d.mts.map +1 -0
- package/resources/v1/positions.d.ts +385 -0
- package/resources/v1/positions.d.ts.map +1 -0
- package/resources/v1/positions.js +130 -0
- package/resources/v1/positions.js.map +1 -0
- package/resources/v1/positions.mjs +126 -0
- package/resources/v1/positions.mjs.map +1 -0
- package/resources/v1/v1.d.mts +51 -0
- package/resources/v1/v1.d.mts.map +1 -0
- package/resources/v1/v1.d.ts +51 -0
- package/resources/v1/v1.d.ts.map +1 -0
- package/resources/v1/v1.js +53 -0
- package/resources/v1/v1.js.map +1 -0
- package/resources/v1/v1.mjs +48 -0
- package/resources/v1/v1.mjs.map +1 -0
- package/resources/v1/watchlist.d.mts +210 -0
- package/resources/v1/watchlist.d.mts.map +1 -0
- package/resources/v1/watchlist.d.ts +210 -0
- package/resources/v1/watchlist.d.ts.map +1 -0
- package/resources/v1/watchlist.js +95 -0
- package/resources/v1/watchlist.js.map +1 -0
- package/resources/v1/watchlist.mjs +91 -0
- package/resources/v1/watchlist.mjs.map +1 -0
- package/resources/v1/websocket.d.mts +18 -0
- package/resources/v1/websocket.d.mts.map +1 -0
- package/resources/v1/websocket.d.ts +18 -0
- package/resources/v1/websocket.d.ts.map +1 -0
- package/resources/v1/websocket.js +27 -0
- package/resources/v1/websocket.js.map +1 -0
- package/resources/v1/websocket.mjs +23 -0
- package/resources/v1/websocket.mjs.map +1 -0
- package/resources/v1.d.mts +2 -0
- package/resources/v1.d.mts.map +1 -0
- package/resources/v1.d.ts +2 -0
- package/resources/v1.d.ts.map +1 -0
- package/resources/v1.js +6 -0
- package/resources/v1.js.map +1 -0
- package/resources/v1.mjs +3 -0
- package/resources/v1.mjs.map +1 -0
- package/resources.d.mts +2 -0
- package/resources.d.mts.map +1 -0
- package/resources.d.ts +2 -0
- package/resources.d.ts.map +1 -0
- package/resources.js +5 -0
- package/resources.js.map +1 -0
- package/resources.mjs +2 -0
- package/resources.mjs.map +1 -0
- package/src/api-promise.ts +2 -0
- package/src/client.ts +769 -0
- package/src/core/README.md +3 -0
- package/src/core/api-promise.ts +92 -0
- package/src/core/error.ts +130 -0
- package/src/core/resource.ts +11 -0
- package/src/core/uploads.ts +2 -0
- package/src/error.ts +2 -0
- package/src/index.ts +22 -0
- package/src/internal/README.md +3 -0
- package/src/internal/builtin-types.ts +93 -0
- package/src/internal/detect-platform.ts +196 -0
- package/src/internal/errors.ts +33 -0
- package/src/internal/headers.ts +97 -0
- package/src/internal/parse.ts +56 -0
- package/src/internal/qs/LICENSE.md +13 -0
- package/src/internal/qs/README.md +3 -0
- package/src/internal/qs/formats.ts +10 -0
- package/src/internal/qs/index.ts +13 -0
- package/src/internal/qs/stringify.ts +385 -0
- package/src/internal/qs/types.ts +71 -0
- package/src/internal/qs/utils.ts +265 -0
- package/src/internal/request-options.ts +91 -0
- package/src/internal/shim-types.ts +26 -0
- package/src/internal/shims.ts +107 -0
- package/src/internal/to-file.ts +154 -0
- package/src/internal/types.ts +93 -0
- package/src/internal/uploads.ts +187 -0
- package/src/internal/utils/base64.ts +40 -0
- package/src/internal/utils/bytes.ts +32 -0
- package/src/internal/utils/env.ts +18 -0
- package/src/internal/utils/log.ts +128 -0
- package/src/internal/utils/path.ts +88 -0
- package/src/internal/utils/query.ts +7 -0
- package/src/internal/utils/sleep.ts +3 -0
- package/src/internal/utils/uuid.ts +17 -0
- package/src/internal/utils/values.ts +105 -0
- package/src/internal/utils.ts +9 -0
- package/src/lib/.keep +4 -0
- package/src/resource.ts +2 -0
- package/src/resources/index.ts +4 -0
- package/src/resources/shared.ts +72 -0
- package/src/resources/v1/accounts.ts +586 -0
- package/src/resources/v1/api-version.ts +44 -0
- package/src/resources/v1/calendar.ts +221 -0
- package/src/resources/v1/index.ts +203 -0
- package/src/resources/v1/instrument-data/index.ts +63 -0
- package/src/resources/v1/instrument-data/instrument-data.ts +1584 -0
- package/src/resources/v1/instrument-data/market-data.ts +306 -0
- package/src/resources/v1/instrument-data/news.ts +188 -0
- package/src/resources/v1/instrument-data.ts +3 -0
- package/src/resources/v1/instruments.ts +611 -0
- package/src/resources/v1/omni-ai/entitlements.ts +170 -0
- package/src/resources/v1/omni-ai/index.ts +89 -0
- package/src/resources/v1/omni-ai/messages.ts +117 -0
- package/src/resources/v1/omni-ai/omni-ai.ts +527 -0
- package/src/resources/v1/omni-ai/responses.ts +220 -0
- package/src/resources/v1/omni-ai/threads.ts +460 -0
- package/src/resources/v1/omni-ai.ts +3 -0
- package/src/resources/v1/orders.ts +912 -0
- package/src/resources/v1/positions.ts +533 -0
- package/src/resources/v1/v1.ts +460 -0
- package/src/resources/v1/watchlist.ts +292 -0
- package/src/resources/v1/websocket.ts +26 -0
- package/src/resources/v1.ts +3 -0
- package/src/resources.ts +1 -0
- package/src/tsconfig.json +11 -0
- package/src/uploads.ts +2 -0
- package/src/version.ts +1 -0
- package/uploads.d.mts +3 -0
- package/uploads.d.mts.map +1 -0
- package/uploads.d.ts +3 -0
- package/uploads.d.ts.map +1 -0
- package/uploads.js +6 -0
- package/uploads.js.map +1 -0
- package/uploads.mjs +3 -0
- package/uploads.mjs.map +1 -0
- package/version.d.mts +2 -0
- package/version.d.mts.map +1 -0
- package/version.d.ts +2 -0
- package/version.d.ts.map +1 -0
- package/version.js +5 -0
- package/version.js.map +1 -0
- package/version.mjs +2 -0
- package/version.mjs.map +1 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,994 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.73.0 (2026-06-04)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.72.0...v0.73.0](https://github.com/clear-street/clear-street-typescript/compare/v0.72.0...v0.73.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([1cfee5b](https://github.com/clear-street/clear-street-typescript/commit/1cfee5b2e532965808cb550f220abd960ce8f885))
|
|
10
|
+
|
|
11
|
+
## 0.72.0 (2026-06-03)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v0.71.0...v0.72.0](https://github.com/clear-street/clear-street-typescript/compare/v0.71.0...v0.72.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* Publish SDK to npm ([ef1a576](https://github.com/clear-street/clear-street-typescript/commit/ef1a576c5792e94b68395a48f1c01633058c73ed))
|
|
18
|
+
|
|
19
|
+
## 0.71.0 (2026-06-03)
|
|
20
|
+
|
|
21
|
+
Full Changelog: [v0.70.0...v0.71.0](https://github.com/clear-street/clear-street-typescript/compare/v0.70.0...v0.71.0)
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
* **api:** api update ([75e4c70](https://github.com/clear-street/clear-street-typescript/commit/75e4c70437ca53cd13a3d3c42e59625493f296c8))
|
|
26
|
+
|
|
27
|
+
## 0.70.0 (2026-06-03)
|
|
28
|
+
|
|
29
|
+
Full Changelog: [v0.69.0...v0.70.0](https://github.com/clear-street/clear-street-typescript/compare/v0.69.0...v0.70.0)
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* **api:** api update ([d8bcf9a](https://github.com/clear-street/clear-street-typescript/commit/d8bcf9abfbba515756866fe9ecdc8a5a4d146ded))
|
|
34
|
+
|
|
35
|
+
## 0.69.0 (2026-05-29)
|
|
36
|
+
|
|
37
|
+
Full Changelog: [v0.68.0...v0.69.0](https://github.com/clear-street/clear-street-typescript/compare/v0.68.0...v0.69.0)
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
* **api:** api update ([88c9ebd](https://github.com/clear-street/clear-street-typescript/commit/88c9ebdf3d1bf22db557d9f50aae7e990bdec9d8))
|
|
42
|
+
|
|
43
|
+
## 0.68.0 (2026-05-28)
|
|
44
|
+
|
|
45
|
+
Full Changelog: [v0.67.0...v0.68.0](https://github.com/clear-street/clear-street-typescript/compare/v0.67.0...v0.68.0)
|
|
46
|
+
|
|
47
|
+
### Features
|
|
48
|
+
|
|
49
|
+
* **api:** api update ([5b22d4a](https://github.com/clear-street/clear-street-typescript/commit/5b22d4a3aadfda3eaf3ea5806b1d71fb9da62c02))
|
|
50
|
+
|
|
51
|
+
## 0.67.0 (2026-05-28)
|
|
52
|
+
|
|
53
|
+
Full Changelog: [v0.66.0...v0.67.0](https://github.com/clear-street/clear-street-typescript/compare/v0.66.0...v0.67.0)
|
|
54
|
+
|
|
55
|
+
### Features
|
|
56
|
+
|
|
57
|
+
* **api:** api update ([44e3b54](https://github.com/clear-street/clear-street-typescript/commit/44e3b549737cfaec3e616e8585914a957cb9e746))
|
|
58
|
+
* **api:** api update ([b2342cf](https://github.com/clear-street/clear-street-typescript/commit/b2342cf17c37bd40de5c1d0cdf02584bb7a614ca))
|
|
59
|
+
* **api:** api update ([07fe398](https://github.com/clear-street/clear-street-typescript/commit/07fe39892163af7f5a18a8baca710251d93e0aab))
|
|
60
|
+
|
|
61
|
+
## 0.66.0 (2026-05-27)
|
|
62
|
+
|
|
63
|
+
Full Changelog: [v0.65.0...v0.66.0](https://github.com/clear-street/clear-street-typescript/compare/v0.65.0...v0.66.0)
|
|
64
|
+
|
|
65
|
+
### Features
|
|
66
|
+
|
|
67
|
+
* **api:** api update ([47054b3](https://github.com/clear-street/clear-street-typescript/commit/47054b33ffd95ac6ba9e9c26affc384c4eb605ae))
|
|
68
|
+
* **api:** api update ([42abf61](https://github.com/clear-street/clear-street-typescript/commit/42abf619d46abc0988d9267a077d01016846a3f3))
|
|
69
|
+
* **api:** api update ([ea38890](https://github.com/clear-street/clear-street-typescript/commit/ea388901c10ff86dcd8c4b54c6f702327de6335e))
|
|
70
|
+
* **api:** api update ([70a2a12](https://github.com/clear-street/clear-street-typescript/commit/70a2a126176f10bf2a1ab46d15f1834c012ceae8))
|
|
71
|
+
* **api:** api update ([1797ad3](https://github.com/clear-street/clear-street-typescript/commit/1797ad3e51af9cbbdc36ac33ecb35d44ce528974))
|
|
72
|
+
|
|
73
|
+
## 0.65.0 (2026-05-21)
|
|
74
|
+
|
|
75
|
+
Full Changelog: [v0.64.0...v0.65.0](https://github.com/clear-street/clear-street-typescript/compare/v0.64.0...v0.65.0)
|
|
76
|
+
|
|
77
|
+
### Features
|
|
78
|
+
|
|
79
|
+
* **api:** api update ([3245b38](https://github.com/clear-street/clear-street-typescript/commit/3245b38097a951961a4aabb9a1dc276106c610a0))
|
|
80
|
+
* **api:** manual updates ([4280750](https://github.com/clear-street/clear-street-typescript/commit/42807506c476f57dff012bea2d095131c1ad2111))
|
|
81
|
+
|
|
82
|
+
## 0.64.0 (2026-05-20)
|
|
83
|
+
|
|
84
|
+
Full Changelog: [v0.63.0...v0.64.0](https://github.com/clear-street/clear-street-typescript/compare/v0.63.0...v0.64.0)
|
|
85
|
+
|
|
86
|
+
### Features
|
|
87
|
+
|
|
88
|
+
* **api:** api update ([b35515e](https://github.com/clear-street/clear-street-typescript/commit/b35515ece0645dc0c4d5d6396b6110a7c7834b92))
|
|
89
|
+
|
|
90
|
+
## 0.63.0 (2026-05-19)
|
|
91
|
+
|
|
92
|
+
Full Changelog: [v0.62.0...v0.63.0](https://github.com/clear-street/clear-street-typescript/compare/v0.62.0...v0.63.0)
|
|
93
|
+
|
|
94
|
+
### Features
|
|
95
|
+
|
|
96
|
+
* **api:** api update ([4b7a087](https://github.com/clear-street/clear-street-typescript/commit/4b7a0873df3afbc47311a4ec45b3387b4f79883a))
|
|
97
|
+
* **api:** api update ([0323def](https://github.com/clear-street/clear-street-typescript/commit/0323def5ba990b4bbc2f0522ebb6895c610d388f))
|
|
98
|
+
* **api:** api update ([20b9ef3](https://github.com/clear-street/clear-street-typescript/commit/20b9ef3c8aa9a1cc737d6f6de32803b0b69cd645))
|
|
99
|
+
* **api:** api update ([288c1de](https://github.com/clear-street/clear-street-typescript/commit/288c1decbbf1dcdbdf0b9e73408c3536245e95e5))
|
|
100
|
+
* **api:** api update ([3ee5baf](https://github.com/clear-street/clear-street-typescript/commit/3ee5bafb07a2ce36bdc4fbf3a2839d5ef2ce8f55))
|
|
101
|
+
* **api:** api update ([c6125fb](https://github.com/clear-street/clear-street-typescript/commit/c6125fb06e964e094903a7dbc07b9b834406e542))
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Bug Fixes
|
|
105
|
+
|
|
106
|
+
* **typescript:** upgrade tsc-multi so that it works with Node 26 ([1b75e3b](https://github.com/clear-street/clear-street-typescript/commit/1b75e3bb7dd887042fa046fdbe027b54f35b31fa))
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
### Chores
|
|
110
|
+
|
|
111
|
+
* **tests:** remove redundant File import ([09c0457](https://github.com/clear-street/clear-street-typescript/commit/09c0457a574bee3f3e06bfb025174b480c85bdc2))
|
|
112
|
+
|
|
113
|
+
## 0.62.0 (2026-05-08)
|
|
114
|
+
|
|
115
|
+
Full Changelog: [v0.61.0...v0.62.0](https://github.com/clear-street/clear-street-typescript/compare/v0.61.0...v0.62.0)
|
|
116
|
+
|
|
117
|
+
### Features
|
|
118
|
+
|
|
119
|
+
* **api:** api update ([0deddd8](https://github.com/clear-street/clear-street-typescript/commit/0deddd85d70b4414838cf64218674c920926beab))
|
|
120
|
+
|
|
121
|
+
## 0.61.0 (2026-05-08)
|
|
122
|
+
|
|
123
|
+
Full Changelog: [v0.60.0...v0.61.0](https://github.com/clear-street/clear-street-typescript/compare/v0.60.0...v0.61.0)
|
|
124
|
+
|
|
125
|
+
### Features
|
|
126
|
+
|
|
127
|
+
* **api:** api update ([90c1ada](https://github.com/clear-street/clear-street-typescript/commit/90c1ada041537d63cb397dc1070a8ad338e09df9))
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
### Chores
|
|
131
|
+
|
|
132
|
+
* redact api-key headers in debug logs ([e7dbb8f](https://github.com/clear-street/clear-street-typescript/commit/e7dbb8ff768d5d2c626cfdec663bf238a84f0a52))
|
|
133
|
+
|
|
134
|
+
## 0.60.0 (2026-05-07)
|
|
135
|
+
|
|
136
|
+
Full Changelog: [v0.59.0...v0.60.0](https://github.com/clear-street/clear-street-typescript/compare/v0.59.0...v0.60.0)
|
|
137
|
+
|
|
138
|
+
### Features
|
|
139
|
+
|
|
140
|
+
* **api:** api update ([7d02d68](https://github.com/clear-street/clear-street-typescript/commit/7d02d6844d7996a2b72b8fc14e3a0ae958b83492))
|
|
141
|
+
* **api:** api update ([3369f35](https://github.com/clear-street/clear-street-typescript/commit/3369f3572ce7d7aa058980c918f72a586fc2a3d8))
|
|
142
|
+
* **api:** api update ([6431ed2](https://github.com/clear-street/clear-street-typescript/commit/6431ed22c653fd99c779c36f4baabd45ad2c94d2))
|
|
143
|
+
* **api:** api update ([fc6d1cf](https://github.com/clear-street/clear-street-typescript/commit/fc6d1cf71aae41e082a31a41c507370119c92e68))
|
|
144
|
+
* **api:** api update ([eddba85](https://github.com/clear-street/clear-street-typescript/commit/eddba852a8c1994ee14d214cd291e0d55fc1f7a2))
|
|
145
|
+
|
|
146
|
+
## 0.59.0 (2026-05-06)
|
|
147
|
+
|
|
148
|
+
Full Changelog: [v0.58.0...v0.59.0](https://github.com/clear-street/clear-street-typescript/compare/v0.58.0...v0.59.0)
|
|
149
|
+
|
|
150
|
+
### Features
|
|
151
|
+
|
|
152
|
+
* **api:** api update ([a0c2230](https://github.com/clear-street/clear-street-typescript/commit/a0c2230556e587c7f7b8552327b42d0a9ae083e6))
|
|
153
|
+
* **api:** api update ([e6a1edb](https://github.com/clear-street/clear-street-typescript/commit/e6a1edba72546d50f2f29e87a46788b0561b27b0))
|
|
154
|
+
* **api:** api update ([fbdbd51](https://github.com/clear-street/clear-street-typescript/commit/fbdbd5116252d7ceac1945f6bb46b09b88b4c9c3))
|
|
155
|
+
* **api:** api update ([6195736](https://github.com/clear-street/clear-street-typescript/commit/619573664881df89125759048246b87fb09174f9))
|
|
156
|
+
* **api:** manual updates ([477dc4e](https://github.com/clear-street/clear-street-typescript/commit/477dc4e21fdbb980fdb401a541461148769f245a))
|
|
157
|
+
* **api:** manual updates ([1c459ec](https://github.com/clear-street/clear-street-typescript/commit/1c459ec0beba81ad3ef2f139393a1ac68d06d957))
|
|
158
|
+
|
|
159
|
+
## 0.58.0 (2026-05-06)
|
|
160
|
+
|
|
161
|
+
Full Changelog: [v0.57.0...v0.58.0](https://github.com/clear-street/clear-street-typescript/compare/v0.57.0...v0.58.0)
|
|
162
|
+
|
|
163
|
+
### Features
|
|
164
|
+
|
|
165
|
+
* **api:** api update ([c4a7846](https://github.com/clear-street/clear-street-typescript/commit/c4a7846bb1c2e9f97e2cd89ad606700f503636c5))
|
|
166
|
+
* **api:** api update ([8f2fabf](https://github.com/clear-street/clear-street-typescript/commit/8f2fabf32c75cc57ad2d76627d6dcb86961a5e0d))
|
|
167
|
+
* **api:** manual updates ([93dd283](https://github.com/clear-street/clear-street-typescript/commit/93dd283ca9781008c4bcde5918c6997c737bbee6))
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
### Performance Improvements
|
|
171
|
+
|
|
172
|
+
* **ACTIVE-4584:** reduce option index memory ([aef367d](https://github.com/clear-street/clear-street-typescript/commit/aef367dd8629690ff4ba2eeeea91e1749c24fc8d))
|
|
173
|
+
|
|
174
|
+
## 0.57.0 (2026-05-05)
|
|
175
|
+
|
|
176
|
+
Full Changelog: [v0.56.0...v0.57.0](https://github.com/clear-street/clear-street-typescript/compare/v0.56.0...v0.57.0)
|
|
177
|
+
|
|
178
|
+
### Features
|
|
179
|
+
|
|
180
|
+
* **api:** api update ([d4a6df0](https://github.com/clear-street/clear-street-typescript/commit/d4a6df019fc1ac5a8e1d8aa3f8566bee44493c1a))
|
|
181
|
+
* **api:** api update ([c4534b8](https://github.com/clear-street/clear-street-typescript/commit/c4534b85829981318e4c3999a3bfdfc9e19ae163))
|
|
182
|
+
* **api:** api update ([f6a9a6d](https://github.com/clear-street/clear-street-typescript/commit/f6a9a6d92dfd150f26d4e2dd713e845025a396c8))
|
|
183
|
+
* **api:** api update ([ada833e](https://github.com/clear-street/clear-street-typescript/commit/ada833ea3c11bb5f07c9d7de8987eb7a8a1a6787))
|
|
184
|
+
* **api:** api update ([a48890b](https://github.com/clear-street/clear-street-typescript/commit/a48890b72ee8269452620f090be462397cd8b82f))
|
|
185
|
+
|
|
186
|
+
## 0.56.0 (2026-05-04)
|
|
187
|
+
|
|
188
|
+
Full Changelog: [v0.55.0...v0.56.0](https://github.com/clear-street/clear-street-typescript/compare/v0.55.0...v0.56.0)
|
|
189
|
+
|
|
190
|
+
### Features
|
|
191
|
+
|
|
192
|
+
* **api:** api update ([778119b](https://github.com/clear-street/clear-street-typescript/commit/778119b78702f91da9e71000efdc01e83d401e3b))
|
|
193
|
+
|
|
194
|
+
## 0.55.0 (2026-05-03)
|
|
195
|
+
|
|
196
|
+
Full Changelog: [v0.54.0...v0.55.0](https://github.com/clear-street/clear-street-typescript/compare/v0.54.0...v0.55.0)
|
|
197
|
+
|
|
198
|
+
### Features
|
|
199
|
+
|
|
200
|
+
* **api:** api update ([1a20f7d](https://github.com/clear-street/clear-street-typescript/commit/1a20f7da9da4b27aedc7a041c1aef0681e3eef57))
|
|
201
|
+
* **api:** api update ([4bb5030](https://github.com/clear-street/clear-street-typescript/commit/4bb50306ea000accd97ccade17c19f02cd3c9721))
|
|
202
|
+
* **api:** api update ([a09f015](https://github.com/clear-street/clear-street-typescript/commit/a09f0150722cb16dea5db30708d35965a32a7645))
|
|
203
|
+
* **api:** api update ([78fb155](https://github.com/clear-street/clear-street-typescript/commit/78fb15518a88e756f43f3095ae5a439e2a0fc52d))
|
|
204
|
+
* **api:** api update ([ff2306e](https://github.com/clear-street/clear-street-typescript/commit/ff2306e8c2381da9f08edb670b5039bf56a3a12d))
|
|
205
|
+
* **api:** api update ([56fcc35](https://github.com/clear-street/clear-street-typescript/commit/56fcc35835683b1681f43a4c57ee17bfefbf9c1f))
|
|
206
|
+
* **api:** api update ([b572a3a](https://github.com/clear-street/clear-street-typescript/commit/b572a3a386d67c9fcadede2047a3f6638d230e63))
|
|
207
|
+
* **api:** api update ([2283898](https://github.com/clear-street/clear-street-typescript/commit/2283898b6938a700a4fbf5864fd29c1070e7e663))
|
|
208
|
+
* **api:** api update ([42bcb13](https://github.com/clear-street/clear-street-typescript/commit/42bcb135f7cee8eee972c6e84dc0edca0b29d192))
|
|
209
|
+
|
|
210
|
+
## 0.54.0 (2026-04-30)
|
|
211
|
+
|
|
212
|
+
Full Changelog: [v0.53.1...v0.54.0](https://github.com/clear-street/clear-street-typescript/compare/v0.53.1...v0.54.0)
|
|
213
|
+
|
|
214
|
+
### Features
|
|
215
|
+
|
|
216
|
+
* **api:** api update ([2b0c2f1](https://github.com/clear-street/clear-street-typescript/commit/2b0c2f1011b065007776f772637eb81657986019))
|
|
217
|
+
* **api:** api update ([10c1129](https://github.com/clear-street/clear-street-typescript/commit/10c112975a7d36e51e12a069051643d4b20bd401))
|
|
218
|
+
|
|
219
|
+
## 0.53.1 (2026-04-29)
|
|
220
|
+
|
|
221
|
+
Full Changelog: [v0.53.0...v0.53.1](https://github.com/clear-street/clear-street-typescript/compare/v0.53.0...v0.53.1)
|
|
222
|
+
|
|
223
|
+
## 0.53.0 (2026-04-29)
|
|
224
|
+
|
|
225
|
+
Full Changelog: [v0.52.0...v0.53.0](https://github.com/clear-street/clear-street-typescript/compare/v0.52.0...v0.53.0)
|
|
226
|
+
|
|
227
|
+
### Features
|
|
228
|
+
|
|
229
|
+
* **api:** api update ([d189dac](https://github.com/clear-street/clear-street-typescript/commit/d189dac5f89b7d3731f8f79e90f8555eb46024ec))
|
|
230
|
+
* **api:** api update ([c243d54](https://github.com/clear-street/clear-street-typescript/commit/c243d54e53fd8385a5eca7aa8c2aeccf29b968c0))
|
|
231
|
+
* **api:** api update ([a15f924](https://github.com/clear-street/clear-street-typescript/commit/a15f9241bd6137c832c60961f4a178a9c4266635))
|
|
232
|
+
* **api:** api update ([6245e71](https://github.com/clear-street/clear-street-typescript/commit/6245e71fc843200f4bf010fad44c48fc2b0425bb))
|
|
233
|
+
* **api:** api update ([7c92fc3](https://github.com/clear-street/clear-street-typescript/commit/7c92fc3e1dbaa26080af24baa0b4aecf66a3341c))
|
|
234
|
+
* **api:** api update ([8c162c7](https://github.com/clear-street/clear-street-typescript/commit/8c162c74d5bdf642dfd419c2192631c37aaa33fa))
|
|
235
|
+
* **api:** api update ([a727f5c](https://github.com/clear-street/clear-street-typescript/commit/a727f5c411d71cf518b528036e10aca2bdad1d0a))
|
|
236
|
+
* **api:** manual updates ([7f8481d](https://github.com/clear-street/clear-street-typescript/commit/7f8481da7b091df78abc76b1ecc68caf2ab709d2))
|
|
237
|
+
* support setting headers via env ([6eaa314](https://github.com/clear-street/clear-street-typescript/commit/6eaa3143a68385bea6e7303dd722c324e117c5b3))
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
### Chores
|
|
241
|
+
|
|
242
|
+
* **format:** run eslint and prettier separately ([972aa6d](https://github.com/clear-street/clear-street-typescript/commit/972aa6d4c293241b7fc4044450aa25664202bff3))
|
|
243
|
+
|
|
244
|
+
## 0.52.0 (2026-04-27)
|
|
245
|
+
|
|
246
|
+
Full Changelog: [v0.51.0...v0.52.0](https://github.com/clear-street/clear-street-typescript/compare/v0.51.0...v0.52.0)
|
|
247
|
+
|
|
248
|
+
### Features
|
|
249
|
+
|
|
250
|
+
* **api:** api update ([b8bb79b](https://github.com/clear-street/clear-street-typescript/commit/b8bb79b9e25908cbb4438997a3d4d69a1eb27a05))
|
|
251
|
+
* **api:** api update ([fa52e67](https://github.com/clear-street/clear-street-typescript/commit/fa52e671797b56ceae72e37eb9e990a200b76b1c))
|
|
252
|
+
* **api:** api update ([b974f3d](https://github.com/clear-street/clear-street-typescript/commit/b974f3dd84f70e034334d4463937f5a84f2aaf9d))
|
|
253
|
+
|
|
254
|
+
## 0.51.0 (2026-04-26)
|
|
255
|
+
|
|
256
|
+
Full Changelog: [v0.50.0...v0.51.0](https://github.com/clear-street/clear-street-typescript/compare/v0.50.0...v0.51.0)
|
|
257
|
+
|
|
258
|
+
### Features
|
|
259
|
+
|
|
260
|
+
* **api:** api update ([5282649](https://github.com/clear-street/clear-street-typescript/commit/5282649af392783ceb65727f8f11f0cdbddc88be))
|
|
261
|
+
* **api:** api update ([183c53c](https://github.com/clear-street/clear-street-typescript/commit/183c53ce76f4de4600405c08103a4075c3c3de38))
|
|
262
|
+
* **api:** api update ([d6051d3](https://github.com/clear-street/clear-street-typescript/commit/d6051d34fae2d120d73bb88090d45d01edad7121))
|
|
263
|
+
* **api:** api update ([b8d5590](https://github.com/clear-street/clear-street-typescript/commit/b8d55908b828367c182f23978ebf1d2c2afdcff0))
|
|
264
|
+
* **api:** api update ([dd164e2](https://github.com/clear-street/clear-street-typescript/commit/dd164e2aec44f638caa204fdee91a9b0fa21da13))
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
### Chores
|
|
268
|
+
|
|
269
|
+
* **formatter:** run prettier and eslint separately ([b1492c2](https://github.com/clear-street/clear-street-typescript/commit/b1492c2dcbeb962d4f8652dbd593f5b9890486c3))
|
|
270
|
+
|
|
271
|
+
## 0.50.0 (2026-04-23)
|
|
272
|
+
|
|
273
|
+
Full Changelog: [v0.49.0...v0.50.0](https://github.com/clear-street/clear-street-typescript/compare/v0.49.0...v0.50.0)
|
|
274
|
+
|
|
275
|
+
### Features
|
|
276
|
+
|
|
277
|
+
* **api:** api update ([2eb91de](https://github.com/clear-street/clear-street-typescript/commit/2eb91de38d9325589cc923cc739030fbbd6f0cd2))
|
|
278
|
+
* **api:** api update ([f86bfa9](https://github.com/clear-street/clear-street-typescript/commit/f86bfa942f5d5504ede538783f5fe3223b004b9e))
|
|
279
|
+
* **api:** api update ([fb86114](https://github.com/clear-street/clear-street-typescript/commit/fb8611417c34ab23b540c5186bc698cdb477764c))
|
|
280
|
+
* **api:** api update ([8e49208](https://github.com/clear-street/clear-street-typescript/commit/8e49208f0dd72a534a4eed290a1f040ee48115ec))
|
|
281
|
+
* **api:** api update ([5b760ac](https://github.com/clear-street/clear-street-typescript/commit/5b760ac89be41c8f1fa11ee7918c8fb9a4b51278))
|
|
282
|
+
* **api:** api update ([a236df3](https://github.com/clear-street/clear-street-typescript/commit/a236df34816cd7e1e295f32f05b57235023abcb1))
|
|
283
|
+
* **api:** api update ([507c908](https://github.com/clear-street/clear-street-typescript/commit/507c908010fc6748093e301f6600b4eabc82a76f))
|
|
284
|
+
* **api:** api update ([ed590ed](https://github.com/clear-street/clear-street-typescript/commit/ed590ed3253d85ddf2078828ec15aac617920a9b))
|
|
285
|
+
* **api:** manual updates ([64c46da](https://github.com/clear-street/clear-street-typescript/commit/64c46da71d15f4cb045c5cffa2029bc04faa3eca))
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
### Chores
|
|
289
|
+
|
|
290
|
+
* **internal:** more robust bootstrap script ([b7b8ae0](https://github.com/clear-street/clear-street-typescript/commit/b7b8ae0b71952dd930eb959f5c8e44c19069dc70))
|
|
291
|
+
|
|
292
|
+
## 0.49.0 (2026-04-17)
|
|
293
|
+
|
|
294
|
+
Full Changelog: [v0.48.0...v0.49.0](https://github.com/clear-street/clear-street-typescript/compare/v0.48.0...v0.49.0)
|
|
295
|
+
|
|
296
|
+
### Features
|
|
297
|
+
|
|
298
|
+
* **api:** api update ([1d8016b](https://github.com/clear-street/clear-street-typescript/commit/1d8016b014f09ae2da90538603872f03ffe4c313))
|
|
299
|
+
* **api:** api update ([3a4e9e5](https://github.com/clear-street/clear-street-typescript/commit/3a4e9e5dd8f9bc5f6469a66f5fffbb6fea143e30))
|
|
300
|
+
* **api:** api update ([6d2fcab](https://github.com/clear-street/clear-street-typescript/commit/6d2fcab38c9ee261befff45fd5dbfd0aeb9b4b8b))
|
|
301
|
+
* **api:** api update ([778fea8](https://github.com/clear-street/clear-street-typescript/commit/778fea8187b1d346905947eae43f3c6fcf55dfc2))
|
|
302
|
+
* **api:** api update ([3cd0804](https://github.com/clear-street/clear-street-typescript/commit/3cd08044b081bd8daf0ba214ca1f001621452e3a))
|
|
303
|
+
* **api:** api update ([e9258ff](https://github.com/clear-street/clear-street-typescript/commit/e9258ff5e82a5be05cef1dc6cdcd5e3b2f1ebf56))
|
|
304
|
+
* **api:** manual updates ([9d93b39](https://github.com/clear-street/clear-street-typescript/commit/9d93b3918b94ebfaeb0f95dae0e167d3f67f0e20))
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
### Chores
|
|
308
|
+
|
|
309
|
+
* **internal:** codegen related update ([151a233](https://github.com/clear-street/clear-street-typescript/commit/151a233bfd38286b3391ef391105e1c097acd420))
|
|
310
|
+
|
|
311
|
+
## 0.48.0 (2026-04-10)
|
|
312
|
+
|
|
313
|
+
Full Changelog: [v0.47.0...v0.48.0](https://github.com/clear-street/clear-street-typescript/compare/v0.47.0...v0.48.0)
|
|
314
|
+
|
|
315
|
+
### Features
|
|
316
|
+
|
|
317
|
+
* **api:** api update ([e249e5d](https://github.com/clear-street/clear-street-typescript/commit/e249e5d67cbb0d9b9d7d58f7c3618e8458562bda))
|
|
318
|
+
* **api:** api update ([1299837](https://github.com/clear-street/clear-street-typescript/commit/12998374bdda2cb91e9d01fc69e6026cbdf29889))
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
### Chores
|
|
322
|
+
|
|
323
|
+
* configure new SDK language ([11c1b30](https://github.com/clear-street/clear-street-typescript/commit/11c1b300b2db1988a527249150850246342f349a))
|
|
324
|
+
* configure new SDK language ([3862382](https://github.com/clear-street/clear-street-typescript/commit/386238277a4aa8825a246be2dd520c1f6dfebccd))
|
|
325
|
+
* **internal:** codegen related update ([9b67deb](https://github.com/clear-street/clear-street-typescript/commit/9b67debe558d896b7ee4004c869ea7f3e976612a))
|
|
326
|
+
* **internal:** codegen related update ([9bcb12b](https://github.com/clear-street/clear-street-typescript/commit/9bcb12b6d19ab70372b1f0c8c65604dfb066a427))
|
|
327
|
+
|
|
328
|
+
## 0.47.0 (2026-04-07)
|
|
329
|
+
|
|
330
|
+
Full Changelog: [v0.46.0...v0.47.0](https://github.com/clear-street/clear-street-typescript/compare/v0.46.0...v0.47.0)
|
|
331
|
+
|
|
332
|
+
### Features
|
|
333
|
+
|
|
334
|
+
* **api:** api update ([6efa793](https://github.com/clear-street/clear-street-typescript/commit/6efa79308d63b71f887c29a43408830aebaad406))
|
|
335
|
+
* **api:** api update ([dbdb9e5](https://github.com/clear-street/clear-street-typescript/commit/dbdb9e57b8664a3eb26a92c0337d61532f572030))
|
|
336
|
+
|
|
337
|
+
## 0.46.0 (2026-04-03)
|
|
338
|
+
|
|
339
|
+
Full Changelog: [v0.45.0...v0.46.0](https://github.com/clear-street/clear-street-typescript/compare/v0.45.0...v0.46.0)
|
|
340
|
+
|
|
341
|
+
### Features
|
|
342
|
+
|
|
343
|
+
* **api:** api update ([d06638e](https://github.com/clear-street/clear-street-typescript/commit/d06638e945bdbed020a963f0d30aecd4a580361d))
|
|
344
|
+
* **api:** api update ([c5be91c](https://github.com/clear-street/clear-street-typescript/commit/c5be91c9ff90ba38631be9f4bac4cc1fe83a55c8))
|
|
345
|
+
* **api:** manual updates - AI-related schema changes ([3293fac](https://github.com/clear-street/clear-street-typescript/commit/3293facc0c26251c40e62e37e7041c07ba0412ea))
|
|
346
|
+
|
|
347
|
+
## 0.45.0 (2026-04-01)
|
|
348
|
+
|
|
349
|
+
Full Changelog: [v0.44.0...v0.45.0](https://github.com/clear-street/clear-street-typescript/compare/v0.44.0...v0.45.0)
|
|
350
|
+
|
|
351
|
+
### Features
|
|
352
|
+
|
|
353
|
+
* **api:** api update ([a99dbe1](https://github.com/clear-street/clear-street-typescript/commit/a99dbe10f671df61ef9b4aff1f633813e7142791))
|
|
354
|
+
* **api:** manual updates ([aa75220](https://github.com/clear-street/clear-street-typescript/commit/aa7522029bc690aa3953293b4fb7b4c5c4c1d346))
|
|
355
|
+
|
|
356
|
+
## 0.44.0 (2026-03-31)
|
|
357
|
+
|
|
358
|
+
Full Changelog: [v0.43.0...v0.44.0](https://github.com/clear-street/clear-street-typescript/compare/v0.43.0...v0.44.0)
|
|
359
|
+
|
|
360
|
+
### Features
|
|
361
|
+
|
|
362
|
+
* **api:** api update ([e97db4c](https://github.com/clear-street/clear-street-typescript/commit/e97db4cdcf749cb98f7ed1c38095eb0563fb5fe6))
|
|
363
|
+
* **api:** api update ([1f87f7f](https://github.com/clear-street/clear-street-typescript/commit/1f87f7f52b85cbdcdc3c997108e8c70b1732ed1b))
|
|
364
|
+
* **api:** api update ([d1c0bb2](https://github.com/clear-street/clear-street-typescript/commit/d1c0bb2701873944c2d2e9f5f05b597d28ad708e))
|
|
365
|
+
* **api:** api update ([471b34c](https://github.com/clear-street/clear-street-typescript/commit/471b34cdc5d0d2a4ee0c75778535f5ce8d936042))
|
|
366
|
+
|
|
367
|
+
## 0.43.0 (2026-03-30)
|
|
368
|
+
|
|
369
|
+
Full Changelog: [v0.42.0...v0.43.0](https://github.com/clear-street/clear-street-typescript/compare/v0.42.0...v0.43.0)
|
|
370
|
+
|
|
371
|
+
### Features
|
|
372
|
+
|
|
373
|
+
* **api:** api update ([70204ed](https://github.com/clear-street/clear-street-typescript/commit/70204ede13b2b9cf3bf86eb5f568282982bf983d))
|
|
374
|
+
* **api:** api update ([e2e11a8](https://github.com/clear-street/clear-street-typescript/commit/e2e11a8ceed6a8dfec8519ff5917af6c4058e836))
|
|
375
|
+
* **api:** api update ([085b053](https://github.com/clear-street/clear-street-typescript/commit/085b053597cfd4d12452a14711afb0b80043d879))
|
|
376
|
+
* **api:** api update ([0a992be](https://github.com/clear-street/clear-street-typescript/commit/0a992be8d97aacfd8e8a3345d6ebda4fd77156ad))
|
|
377
|
+
* **api:** manual updates ([9062668](https://github.com/clear-street/clear-street-typescript/commit/9062668ba339484b80ea7052398f328c77e09fc2))
|
|
378
|
+
|
|
379
|
+
## 0.42.0 (2026-03-25)
|
|
380
|
+
|
|
381
|
+
Full Changelog: [v0.41.1...v0.42.0](https://github.com/clear-street/clear-street-typescript/compare/v0.41.1...v0.42.0)
|
|
382
|
+
|
|
383
|
+
### Features
|
|
384
|
+
|
|
385
|
+
* **api:** api update ([9f42aa5](https://github.com/clear-street/clear-street-typescript/commit/9f42aa5b57fdbee53682d7a624862e188621079f))
|
|
386
|
+
* **api:** manual updates ([033bbff](https://github.com/clear-street/clear-street-typescript/commit/033bbffd49babc23bb3280c9167f3fbe52a158a1))
|
|
387
|
+
* **mcp:** add an option to disable code tool ([c7f8074](https://github.com/clear-street/clear-street-typescript/commit/c7f80749e2290f29b913e3e44e29c2adb3e833da))
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
### Bug Fixes
|
|
391
|
+
|
|
392
|
+
* **client:** preserve URL params already embedded in path ([1097d48](https://github.com/clear-street/clear-street-typescript/commit/1097d48e43fd652eb18ab039e2b1a30772d241de))
|
|
393
|
+
* **mcp:** update prompt ([79a8d32](https://github.com/clear-street/clear-street-typescript/commit/79a8d32c4e97b8b7212349ff24c3f7f2bb6e43ba))
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
### Chores
|
|
397
|
+
|
|
398
|
+
* **ci:** skip lint on metadata-only changes ([ea0d964](https://github.com/clear-street/clear-street-typescript/commit/ea0d964b14bd2c1906020212d0acd5e7cc80a6b3))
|
|
399
|
+
* **ci:** skip uploading artifacts on stainless-internal branches ([d21d249](https://github.com/clear-street/clear-street-typescript/commit/d21d2490b58c9e2e2072a63eb5bbd314519468e6))
|
|
400
|
+
* **internal:** bump @modelcontextprotocol/sdk, @hono/node-server, and minimatch ([ec85e00](https://github.com/clear-street/clear-street-typescript/commit/ec85e002f618db72437d1c40175806444095fc07))
|
|
401
|
+
* **internal:** codegen related update ([59e6c50](https://github.com/clear-street/clear-street-typescript/commit/59e6c5048801565dc60d4ee64f4bbd42878bec93))
|
|
402
|
+
* **internal:** codegen related update ([3845084](https://github.com/clear-street/clear-street-typescript/commit/3845084488772c4ae8e3c68e4616db4eb80c03ad))
|
|
403
|
+
* **internal:** fix MCP Dockerfiles so they can be built without buildkit ([62b2451](https://github.com/clear-street/clear-street-typescript/commit/62b24518cb39e326191db588be73416ab3394ac1))
|
|
404
|
+
* **internal:** fix MCP Dockerfiles so they can be built without buildkit ([4c1337d](https://github.com/clear-street/clear-street-typescript/commit/4c1337d38318d19f7cd7de8f4aea8322155bccd4))
|
|
405
|
+
* **internal:** fix MCP server TS errors that occur with required client options ([83afaa6](https://github.com/clear-street/clear-street-typescript/commit/83afaa696a34011a4288b42dc9b99bcb95188947))
|
|
406
|
+
* **internal:** make generated MCP servers compatible with Cloudflare worker environments ([1a6dce1](https://github.com/clear-street/clear-street-typescript/commit/1a6dce1d2cf3365075232e016f8f7095a65c2600))
|
|
407
|
+
* **internal:** make MCP code execution location configurable via a flag ([4b23cb6](https://github.com/clear-street/clear-street-typescript/commit/4b23cb60c86e8a892bcf125ec56dc98a90bd6afc))
|
|
408
|
+
* **internal:** move stringifyQuery implementation to internal function ([5491315](https://github.com/clear-street/clear-street-typescript/commit/54913153596aad330b06515e5656a0877c2ff259))
|
|
409
|
+
* **internal:** support x-stainless-mcp-client-envs header in MCP servers ([21fe2ca](https://github.com/clear-street/clear-street-typescript/commit/21fe2cab11b2c94e432d04cb6f4e411e1eba2a63))
|
|
410
|
+
* **internal:** support x-stainless-mcp-client-permissions headers in MCP servers ([8192ee7](https://github.com/clear-street/clear-street-typescript/commit/8192ee7ee4765405f703a3d87417cc2664040bec))
|
|
411
|
+
* **internal:** tweak CI branches ([5923b99](https://github.com/clear-street/clear-street-typescript/commit/5923b998980d75d5c238cc49e438aa19f99333b6))
|
|
412
|
+
* **internal:** update dependencies to address dependabot vulnerabilities ([feb6c2d](https://github.com/clear-street/clear-street-typescript/commit/feb6c2d085478ac2f5661803f1b04ef2e8909712))
|
|
413
|
+
* **internal:** update gitignore ([86a2803](https://github.com/clear-street/clear-street-typescript/commit/86a280386e1ba2f49f52d5ec6bfe76733fb16b89))
|
|
414
|
+
* **internal:** use x-stainless-mcp-client-envs header for MCP remote code tool calls ([8890917](https://github.com/clear-street/clear-street-typescript/commit/88909176203352eec2a69fdd2e883a75cd16184e))
|
|
415
|
+
* **mcp-server:** improve instructions ([819e652](https://github.com/clear-street/clear-street-typescript/commit/819e652b15ed913ddb5c0421e34617539a1d16a2))
|
|
416
|
+
* **mcp-server:** return access instructions for 404 without API key ([5b39f7f](https://github.com/clear-street/clear-street-typescript/commit/5b39f7fcaad3f672b38b48821bea8e3af1e3aec1))
|
|
417
|
+
|
|
418
|
+
## 0.41.1 (2026-02-24)
|
|
419
|
+
|
|
420
|
+
Full Changelog: [v0.41.0...v0.41.1](https://github.com/clear-street/clear-street-typescript/compare/v0.41.0...v0.41.1)
|
|
421
|
+
|
|
422
|
+
### Bug Fixes
|
|
423
|
+
|
|
424
|
+
* **docs/contributing:** correct pnpm link command ([7203aab](https://github.com/clear-street/clear-street-typescript/commit/7203aabd6df00e8db0c3bdb20e708cc084f67fe0))
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
### Chores
|
|
428
|
+
|
|
429
|
+
* **internal:** upgrade @modelcontextprotocol/sdk and hono ([5f262ad](https://github.com/clear-street/clear-street-typescript/commit/5f262adfda691a4e17f3246a4536306f41d7ae81))
|
|
430
|
+
|
|
431
|
+
## 0.41.0 (2026-02-20)
|
|
432
|
+
|
|
433
|
+
Full Changelog: [v0.40.0...v0.41.0](https://github.com/clear-street/clear-street-typescript/compare/v0.40.0...v0.41.0)
|
|
434
|
+
|
|
435
|
+
### Features
|
|
436
|
+
|
|
437
|
+
* **ACTIVE-2466:** News endpoints ([86d556a](https://github.com/clear-street/clear-street-typescript/commit/86d556a2707520ccaca30c56c4678df660760e9e))
|
|
438
|
+
* **ACTIVE-2570:** Remove venue from positions endpoint. ([0792aa2](https://github.com/clear-street/clear-street-typescript/commit/0792aa21a723d8dec66a757785b51583239549a1))
|
|
439
|
+
* **ACTIVE-2725:** Add venue friendly name to get instruments endpoints ([6fbdc54](https://github.com/clear-street/clear-street-typescript/commit/6fbdc541b77a6db8bcdc044df3df4a57592e612a))
|
|
440
|
+
* fix snapshot integration OrderConfig fields ([20eb892](https://github.com/clear-street/clear-street-typescript/commit/20eb892b6b73f9adc1bbb4d8b0f211a4d51be36e))
|
|
441
|
+
* prioritize all non-option instruments during clientside hydration ([516b830](https://github.com/clear-street/clear-street-typescript/commit/516b830680a29eabc4a2c231c543d934a5e1f3e5))
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
### Bug Fixes
|
|
445
|
+
|
|
446
|
+
* **mcp:** initialize SDK lazily to avoid failing the connection on init errors ([6c98f02](https://github.com/clear-street/clear-street-typescript/commit/6c98f026c82941f634335c058a7ae3bd5d8e734d))
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
### Chores
|
|
450
|
+
|
|
451
|
+
* configure new SDK language ([c9c0d22](https://github.com/clear-street/clear-street-typescript/commit/c9c0d22701306a3543b0d621c8d2f845b401acb6))
|
|
452
|
+
* **internal/client:** fix form-urlencoded requests ([89dbd7b](https://github.com/clear-street/clear-street-typescript/commit/89dbd7bdbca3739e4ece546cfd7be9c5180434aa))
|
|
453
|
+
* **internal:** configure MCP Server hosting ([916fb43](https://github.com/clear-street/clear-street-typescript/commit/916fb43eb116ad49c25d9ee2e08d5c95c6333056))
|
|
454
|
+
* **internal:** remove mock server code ([49954e2](https://github.com/clear-street/clear-street-typescript/commit/49954e2a9bd26f765274a9804ae68ae6b930eeca))
|
|
455
|
+
* **mcp:** correctly update version in sync with sdk ([39f8bd6](https://github.com/clear-street/clear-street-typescript/commit/39f8bd62402878296a0bf8069c8089383deb65f0))
|
|
456
|
+
* update mock server docs ([dcc244a](https://github.com/clear-street/clear-street-typescript/commit/dcc244a0a2e7dd0058640052fa435168517830ec))
|
|
457
|
+
|
|
458
|
+
## 0.40.0 (2026-02-17)
|
|
459
|
+
|
|
460
|
+
Full Changelog: [v0.39.0...v0.40.0](https://github.com/clear-street/clear-street-typescript/compare/v0.39.0...v0.40.0)
|
|
461
|
+
|
|
462
|
+
### Features
|
|
463
|
+
|
|
464
|
+
* **ACTIVE-1604:** Delete watchlist endpoint ([12af739](https://github.com/clear-street/clear-street-typescript/commit/12af7395091cac73ee15ca2046d99117f2181f93))
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
### Bug Fixes
|
|
468
|
+
|
|
469
|
+
* **ACTIVE-2731:** Add analyst ratings to screener ([11c7ea5](https://github.com/clear-street/clear-street-typescript/commit/11c7ea52ab49967c42bd190d9ff4a6f2184eaa14))
|
|
470
|
+
|
|
471
|
+
## 0.39.0 (2026-02-16)
|
|
472
|
+
|
|
473
|
+
Full Changelog: [v0.38.2...v0.39.0](https://github.com/clear-street/clear-street-typescript/compare/v0.38.2...v0.39.0)
|
|
474
|
+
|
|
475
|
+
### Features
|
|
476
|
+
|
|
477
|
+
* **ACTIVE-1602:** create and list watchlists endpoints ([4f44d18](https://github.com/clear-street/clear-street-typescript/commit/4f44d18c736ad97b73a7b8b8bb97d6443dcb7ce1))
|
|
478
|
+
* **ACTIVE-1603:** Add to and remove from watchlist endpoints ([785f226](https://github.com/clear-street/clear-street-typescript/commit/785f22646756b36226e11db30388698c112e82a8))
|
|
479
|
+
* **ACTIVE-2471:** Get watchlist by id endpoint ([cf84b8e](https://github.com/clear-street/clear-street-typescript/commit/cf84b8ee601e2d1eb991aa8f169e74a571d663fd))
|
|
480
|
+
* **ACTIVE-2508:** Populate margin_rates for Instrument endpoints. ([da73adf](https://github.com/clear-street/clear-street-typescript/commit/da73adf4d9c15e3a68b3bd1d6a4f17c8ace1242f))
|
|
481
|
+
* **ACTIVE-2518:** Stitch current intraday equity from engine into historical PnLs ([df17ebc](https://github.com/clear-street/clear-street-typescript/commit/df17ebc3cf177d95eec72c64af3174d52ed8f10c))
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
### Bug Fixes
|
|
485
|
+
|
|
486
|
+
* **client:** avoid removing abort listener too early ([edc42c5](https://github.com/clear-street/clear-street-typescript/commit/edc42c5bb1b0209470f23c6e4ce642fe3e5985f9))
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
### Chores
|
|
490
|
+
|
|
491
|
+
* **ACTIVE-2485:** Restrict venue specification to DMA orders ([4c53f80](https://github.com/clear-street/clear-street-typescript/commit/4c53f8094b2a710d59d029b21689c3cff24d7452))
|
|
492
|
+
* **ACTIVE-2494:** Ensure that optional and mandatory order strategy fields are being set in NewOrderSingle ([8a746cc](https://github.com/clear-street/clear-street-typescript/commit/8a746ccc78c8c16b28215176a36b7743c51cc745))
|
|
493
|
+
* **ACTIVE-2502:** Speed up GET instruments ([be940d3](https://github.com/clear-street/clear-street-typescript/commit/be940d30a685992f54537ccf7f1c0bf4eb3b097c))
|
|
494
|
+
* **client:** restructure abort controller binding ([14e36e8](https://github.com/clear-street/clear-street-typescript/commit/14e36e897997b8636d89e0e3100fe14816a07a57))
|
|
495
|
+
* **internal:** avoid type checking errors with ts-reset ([ee4144a](https://github.com/clear-street/clear-street-typescript/commit/ee4144ac75550893bddea8f73d716ee153326063))
|
|
496
|
+
|
|
497
|
+
## 0.38.2 (2026-02-03)
|
|
498
|
+
|
|
499
|
+
Full Changelog: [v0.38.1...v0.38.2](https://github.com/clear-street/clear-street-typescript/compare/v0.38.1...v0.38.2)
|
|
500
|
+
|
|
501
|
+
### Chores
|
|
502
|
+
|
|
503
|
+
* **ACTIVE-2017:** GET Positions pagination/sorting/filtering. ([d7b4690](https://github.com/clear-street/clear-street-typescript/commit/d7b469039a70b1725175fc16a1bc2328cbad3fb4))
|
|
504
|
+
|
|
505
|
+
## 0.38.1 (2026-02-03)
|
|
506
|
+
|
|
507
|
+
Full Changelog: [v0.38.0...v0.38.1](https://github.com/clear-street/clear-street-typescript/compare/v0.38.0...v0.38.1)
|
|
508
|
+
|
|
509
|
+
### Bug Fixes
|
|
510
|
+
|
|
511
|
+
* **client:** avoid memory leak with abort signals ([c6e61b8](https://github.com/clear-street/clear-street-typescript/commit/c6e61b85e97c1503a07c4d0e89bb24ac542f0f08))
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
### Chores
|
|
515
|
+
|
|
516
|
+
* **client:** do not parse responses with empty content-length ([1dc1dd5](https://github.com/clear-street/clear-street-typescript/commit/1dc1dd5127afa12bf4f2fa277000f0145fcdaab6))
|
|
517
|
+
|
|
518
|
+
## 0.38.0 (2026-02-02)
|
|
519
|
+
|
|
520
|
+
Full Changelog: [v0.37.0...v0.38.0](https://github.com/clear-street/clear-street-typescript/compare/v0.37.0...v0.38.0)
|
|
521
|
+
|
|
522
|
+
### Features
|
|
523
|
+
|
|
524
|
+
* **ACTIVE-1644:** Instrument events endpoint ([10c009a](https://github.com/clear-street/clear-street-typescript/commit/10c009ab668c0bea71e8788a57628c39ed58c8c3))
|
|
525
|
+
* add SecurityId::Oems ([65c94f7](https://github.com/clear-street/clear-street-typescript/commit/65c94f785b563657aab75cea1c8380162f2dca17))
|
|
526
|
+
* **api:** manual updates ([5029594](https://github.com/clear-street/clear-street-typescript/commit/5029594009f68465d2ec39c9797103fbec2d9f6e))
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
### Chores
|
|
530
|
+
|
|
531
|
+
* **ACTIVE-2364:** Make ID optional when submitting orders. ([816198e](https://github.com/clear-street/clear-street-typescript/commit/816198ebc6b30203a1576ec6f955d1b5c61e3f48))
|
|
532
|
+
|
|
533
|
+
## 0.37.0 (2026-01-29)
|
|
534
|
+
|
|
535
|
+
Full Changelog: [v0.36.0...v0.37.0](https://github.com/clear-street/clear-street-typescript/compare/v0.36.0...v0.37.0)
|
|
536
|
+
|
|
537
|
+
### Features
|
|
538
|
+
|
|
539
|
+
* **ACTIVE-2142:** make iris order generation a structuredaction ([ea20c51](https://github.com/clear-street/clear-street-typescript/commit/ea20c51ce4ee265361c8b5f87f3a5ab324029803))
|
|
540
|
+
|
|
541
|
+
## 0.36.0 (2026-01-29)
|
|
542
|
+
|
|
543
|
+
Full Changelog: [v0.35.0...v0.36.0](https://github.com/clear-street/clear-street-typescript/compare/v0.35.0...v0.36.0)
|
|
544
|
+
|
|
545
|
+
### Features
|
|
546
|
+
|
|
547
|
+
* **ACTIVE-2025:** Implement Revoke an API key endpoint. ([0f16c3f](https://github.com/clear-street/clear-street-typescript/commit/0f16c3f4ff172c468cee2a005158944acf2141ea))
|
|
548
|
+
* **ACTIVE-2123:** SecurityIdFilter one-or-many query param ([c05b125](https://github.com/clear-street/clear-street-typescript/commit/c05b125093f51ee836ff9466777f61f997fded66))
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
### Chores
|
|
552
|
+
|
|
553
|
+
* **ACTIVE-2283:** Improve api-gw public API ergonomics. ([d08149b](https://github.com/clear-street/clear-street-typescript/commit/d08149b7fed66efd2bec721b9bd6247519c232bc))
|
|
554
|
+
|
|
555
|
+
## 0.35.0 (2026-01-26)
|
|
556
|
+
|
|
557
|
+
Full Changelog: [v0.34.0...v0.35.0](https://github.com/clear-street/clear-street-typescript/compare/v0.34.0...v0.35.0)
|
|
558
|
+
|
|
559
|
+
### Features
|
|
560
|
+
|
|
561
|
+
* **ACTIVE-2226:** Get position by instrument ID endpoint ([bee7472](https://github.com/clear-street/clear-street-typescript/commit/bee747200c8c33b356462c516f87bc182b398551))
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
### Chores
|
|
565
|
+
|
|
566
|
+
* **ci:** upgrade `actions/github-script` ([4581aab](https://github.com/clear-street/clear-street-typescript/commit/4581aab9121a61df67553bff45ff6186510dc8e4))
|
|
567
|
+
|
|
568
|
+
## 0.34.0 (2026-01-23)
|
|
569
|
+
|
|
570
|
+
Full Changelog: [v0.33.0...v0.34.0](https://github.com/clear-street/clear-street-typescript/compare/v0.33.0...v0.34.0)
|
|
571
|
+
|
|
572
|
+
### Features
|
|
573
|
+
|
|
574
|
+
* **api:** e14597a ([1a043f1](https://github.com/clear-street/clear-street-typescript/commit/1a043f103a6e7971b89c5c2051aef4a9f810f81c))
|
|
575
|
+
|
|
576
|
+
## 0.33.0 (2026-01-21)
|
|
577
|
+
|
|
578
|
+
Full Changelog: [v0.32.1...v0.33.0](https://github.com/clear-street/clear-street-typescript/compare/v0.32.1...v0.33.0)
|
|
579
|
+
|
|
580
|
+
### Features
|
|
581
|
+
|
|
582
|
+
* **api:** AI Assistant updates ([d468d32](https://github.com/clear-street/clear-street-typescript/commit/d468d323ab1acb014197a7b78606157b1fa62b4a))
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
### Chores
|
|
586
|
+
|
|
587
|
+
* sync repo ([7812d55](https://github.com/clear-street/clear-street-typescript/commit/7812d554eecaa8a7c943abc22eaaede6302d6bdb))
|
|
588
|
+
* update SDK settings ([1e46cc7](https://github.com/clear-street/clear-street-typescript/commit/1e46cc72a24e7a557dbaf376020fe1ae87f92357))
|
|
589
|
+
|
|
590
|
+
## 0.32.1 (2026-01-17)
|
|
591
|
+
|
|
592
|
+
Full Changelog: [v0.32.0...v0.32.1](https://github.com/clear-street/clear-street-typescript/compare/v0.32.0...v0.32.1)
|
|
593
|
+
|
|
594
|
+
### Chores
|
|
595
|
+
|
|
596
|
+
* **internal:** update `actions/checkout` version ([2e30ff2](https://github.com/clear-street/clear-street-typescript/commit/2e30ff295dbf8675302567acceacfff08349616b))
|
|
597
|
+
|
|
598
|
+
## 0.32.0 (2026-01-16)
|
|
599
|
+
|
|
600
|
+
Full Changelog: [v0.31.0...v0.32.0](https://github.com/clear-street/clear-street-typescript/compare/v0.31.0...v0.32.0)
|
|
601
|
+
|
|
602
|
+
### Features
|
|
603
|
+
|
|
604
|
+
* **api:** manual updates ([985d617](https://github.com/clear-street/clear-street-typescript/commit/985d617ea8dc8764a2490acdfe75ee2311070a3b))
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
### Chores
|
|
608
|
+
|
|
609
|
+
* **internal:** upgrade babel, qs, js-yaml ([27b482e](https://github.com/clear-street/clear-street-typescript/commit/27b482e80ba5a93729758b02ac4027741814a7ac))
|
|
610
|
+
|
|
611
|
+
## 0.31.0 (2026-01-08)
|
|
612
|
+
|
|
613
|
+
Full Changelog: [v0.30.0...v0.31.0](https://github.com/clear-street/clear-street-typescript/compare/v0.30.0...v0.31.0)
|
|
614
|
+
|
|
615
|
+
### Features
|
|
616
|
+
|
|
617
|
+
* **api:** 0.31.0 updates ([3afa642](https://github.com/clear-street/clear-street-typescript/commit/3afa642853def33cf6269107b9c9d8c9e583ea33))
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
### Chores
|
|
621
|
+
|
|
622
|
+
* break long lines in snippets into multiline ([137b82a](https://github.com/clear-street/clear-street-typescript/commit/137b82a7b13315378adcf5536024d3676bacfafd))
|
|
623
|
+
|
|
624
|
+
## 0.30.0 (2026-01-05)
|
|
625
|
+
|
|
626
|
+
Full Changelog: [v0.29.0...v0.30.0](https://github.com/clear-street/clear-street-typescript/compare/v0.29.0...v0.30.0)
|
|
627
|
+
|
|
628
|
+
### Features
|
|
629
|
+
|
|
630
|
+
* **api:** Updated 20251031 specs ([efd3ac4](https://github.com/clear-street/clear-street-typescript/commit/efd3ac4bc2b743ae285606d07e17710f57a91e19))
|
|
631
|
+
|
|
632
|
+
## 0.29.0 (2025-12-29)
|
|
633
|
+
|
|
634
|
+
Full Changelog: [v0.28.0...v0.29.0](https://github.com/clear-street/clear-street-typescript/compare/v0.28.0...v0.29.0)
|
|
635
|
+
|
|
636
|
+
### Features
|
|
637
|
+
|
|
638
|
+
* **api:** manual updates ([3a03d46](https://github.com/clear-street/clear-street-typescript/commit/3a03d4686c20637b5c4516fb52bb44a093d1688d))
|
|
639
|
+
|
|
640
|
+
## 0.28.0 (2025-12-22)
|
|
641
|
+
|
|
642
|
+
Full Changelog: [v0.27.0...v0.28.0](https://github.com/clear-street/clear-street-typescript/compare/v0.27.0...v0.28.0)
|
|
643
|
+
|
|
644
|
+
### Features
|
|
645
|
+
|
|
646
|
+
* **api:** manual updates 12/22 ([3e3686a](https://github.com/clear-street/clear-street-typescript/commit/3e3686a2f8d49c2ac8cb8e90c3bb3c795f9bbe16))
|
|
647
|
+
* **api:** manual updates fixed ([66e658f](https://github.com/clear-street/clear-street-typescript/commit/66e658f343e61ddcfd6d7e320cba616f93ea190d))
|
|
648
|
+
|
|
649
|
+
## 0.27.0 (2025-12-17)
|
|
650
|
+
|
|
651
|
+
Full Changelog: [v0.26.1...v0.27.0](https://github.com/clear-street/clear-street-typescript/compare/v0.26.1...v0.27.0)
|
|
652
|
+
|
|
653
|
+
### Features
|
|
654
|
+
|
|
655
|
+
* **api:** Promptlayer EP test changes ([7dc5e6f](https://github.com/clear-street/clear-street-typescript/commit/7dc5e6f9b34762338a2d058e6fd89449be3db65e))
|
|
656
|
+
|
|
657
|
+
## 0.26.1 (2025-12-11)
|
|
658
|
+
|
|
659
|
+
Full Changelog: [v0.26.0...v0.26.1](https://github.com/clear-street/clear-street-typescript/compare/v0.26.0...v0.26.1)
|
|
660
|
+
|
|
661
|
+
## 0.26.0 (2025-12-11)
|
|
662
|
+
|
|
663
|
+
Full Changelog: [v0.25.0...v0.26.0](https://github.com/clear-street/clear-street-typescript/compare/v0.25.0...v0.26.0)
|
|
664
|
+
|
|
665
|
+
### Features
|
|
666
|
+
|
|
667
|
+
* **api:** manual updates ([7330f58](https://github.com/clear-street/clear-street-typescript/commit/7330f584498fe039844388a8b7bb12b6f57740d6))
|
|
668
|
+
* **api:** update production server url ([fec5d86](https://github.com/clear-street/clear-street-typescript/commit/fec5d86ead1018cfa0677b1714ef54fc10479832))
|
|
669
|
+
|
|
670
|
+
## 0.25.0 (2025-12-08)
|
|
671
|
+
|
|
672
|
+
Full Changelog: [v0.24.0...v0.25.0](https://github.com/clear-street/clear-street-typescript/compare/v0.24.0...v0.25.0)
|
|
673
|
+
|
|
674
|
+
### Features
|
|
675
|
+
|
|
676
|
+
* **api:** manual updates dec8 ([9e10f86](https://github.com/clear-street/clear-street-typescript/commit/9e10f868930b54608df20a718c1d4cae9d2974b7))
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
### Bug Fixes
|
|
680
|
+
|
|
681
|
+
* **mcp:** correct code tool API endpoint ([9683e2e](https://github.com/clear-street/clear-street-typescript/commit/9683e2e172f3355bd60bbfb90d314cfb85831856))
|
|
682
|
+
* **mcp:** return correct lines on typescript errors ([a610ce6](https://github.com/clear-street/clear-street-typescript/commit/a610ce60bd821d728db4fcf82403ec89a9bc7606))
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
### Chores
|
|
686
|
+
|
|
687
|
+
* **internal:** codegen related update ([2cf5e7a](https://github.com/clear-street/clear-street-typescript/commit/2cf5e7ac2f1d61327ddf329f330f125826c5d76d))
|
|
688
|
+
* **internal:** codegen related update ([db41811](https://github.com/clear-street/clear-street-typescript/commit/db41811c45bbd2c955f76cd70f929bb487371550))
|
|
689
|
+
* **internal:** upgrade eslint ([b84314d](https://github.com/clear-street/clear-street-typescript/commit/b84314d2fec27014fc71d7438d75ad047074f5c2))
|
|
690
|
+
|
|
691
|
+
## 0.24.0 (2025-12-02)
|
|
692
|
+
|
|
693
|
+
Full Changelog: [v0.23.0...v0.24.0](https://github.com/clear-street/clear-street-typescript/compare/v0.23.0...v0.24.0)
|
|
694
|
+
|
|
695
|
+
### Features
|
|
696
|
+
|
|
697
|
+
* **api:** manual updates ([d31b605](https://github.com/clear-street/clear-street-typescript/commit/d31b605a1f7c99a1296f71876420e98758ceb860))
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
### Chores
|
|
701
|
+
|
|
702
|
+
* **client:** fix logger property type ([bbdf6e5](https://github.com/clear-street/clear-street-typescript/commit/bbdf6e514936aa5e7cd96f7ae041f40f95741707))
|
|
703
|
+
|
|
704
|
+
## 0.23.0 (2025-11-24)
|
|
705
|
+
|
|
706
|
+
Full Changelog: [v0.22.0...v0.23.0](https://github.com/clear-street/clear-street-typescript/compare/v0.22.0...v0.23.0)
|
|
707
|
+
|
|
708
|
+
### Features
|
|
709
|
+
|
|
710
|
+
* **api:** fix bug in promptlayer route ([a819721](https://github.com/clear-street/clear-street-typescript/commit/a819721049b2108ad6aa59c12c7bf685afa25abd))
|
|
711
|
+
|
|
712
|
+
## 0.22.0 (2025-11-21)
|
|
713
|
+
|
|
714
|
+
Full Changelog: [v0.21.0...v0.22.0](https://github.com/clear-street/clear-street-typescript/compare/v0.21.0...v0.22.0)
|
|
715
|
+
|
|
716
|
+
### Features
|
|
717
|
+
|
|
718
|
+
* **api:** add endpoints for AI / PromptLayer requests ([b77cc57](https://github.com/clear-street/clear-street-typescript/commit/b77cc57ec0673cc4e4bf6c83142426992a7677f8))
|
|
719
|
+
|
|
720
|
+
## 0.21.0 (2025-10-28)
|
|
721
|
+
|
|
722
|
+
Full Changelog: [v0.20.0...v0.21.0](https://github.com/clear-street/clear-street-typescript/compare/v0.20.0...v0.21.0)
|
|
723
|
+
|
|
724
|
+
### Features
|
|
725
|
+
|
|
726
|
+
* **api:** manual updates ([65fbd36](https://github.com/clear-street/clear-street-typescript/commit/65fbd36bc5f1f68ea3cc3c8cc16e2c3874ae2ba2))
|
|
727
|
+
* **api:** manual updates ([8f16824](https://github.com/clear-street/clear-street-typescript/commit/8f16824038236ee53d55f4dad56d2079e6cb541a))
|
|
728
|
+
* **api:** manual updates ([fe15a99](https://github.com/clear-street/clear-street-typescript/commit/fe15a99960dd028f0fbe11e5afda8f32cb088d83))
|
|
729
|
+
|
|
730
|
+
## 0.20.0 (2025-10-16)
|
|
731
|
+
|
|
732
|
+
Full Changelog: [v0.19.0...v0.20.0](https://github.com/clear-street/clear-street-typescript/compare/v0.19.0...v0.20.0)
|
|
733
|
+
|
|
734
|
+
### Features
|
|
735
|
+
|
|
736
|
+
* **api:** manual updates ([1f26e6e](https://github.com/clear-street/clear-street-typescript/commit/1f26e6e0a559e80dc44d65e1025c1a627c579e97))
|
|
737
|
+
* **api:** manual updates ([782b322](https://github.com/clear-street/clear-street-typescript/commit/782b3226d0938ac28d410dc1043b7094f34ff7d5))
|
|
738
|
+
|
|
739
|
+
## 0.19.0 (2025-10-15)
|
|
740
|
+
|
|
741
|
+
Full Changelog: [v0.18.0...v0.19.0](https://github.com/clear-street/clear-street-typescript/compare/v0.18.0...v0.19.0)
|
|
742
|
+
|
|
743
|
+
### Features
|
|
744
|
+
|
|
745
|
+
* **api:** update via SDK Studio ([8ebfcd1](https://github.com/clear-street/clear-street-typescript/commit/8ebfcd17701183fb071757c22acffc7c81b21143))
|
|
746
|
+
|
|
747
|
+
## 0.18.0 (2025-10-10)
|
|
748
|
+
|
|
749
|
+
Full Changelog: [v0.17.0...v0.18.0](https://github.com/clear-street/clear-street-typescript/compare/v0.17.0...v0.18.0)
|
|
750
|
+
|
|
751
|
+
### Features
|
|
752
|
+
|
|
753
|
+
* **api:** Add locates APIs ([dba2861](https://github.com/clear-street/clear-street-typescript/commit/dba2861264e458dec1551028981161ed673d1992))
|
|
754
|
+
* **api:** Add locates APIs ([3032cfb](https://github.com/clear-street/clear-street-typescript/commit/3032cfb3ec9e8db6d71235b9dfedde6eeb331690))
|
|
755
|
+
|
|
756
|
+
## 0.17.0 (2025-10-10)
|
|
757
|
+
|
|
758
|
+
Full Changelog: [v0.16.0...v0.17.0](https://github.com/clear-street/clear-street-typescript/compare/v0.16.0...v0.17.0)
|
|
759
|
+
|
|
760
|
+
### Features
|
|
761
|
+
|
|
762
|
+
* **api:** Move positions from accounts sub-resource to top-level resource. ([a47cb53](https://github.com/clear-street/clear-street-typescript/commit/a47cb5318471070bc3386a33dce1487f8ae27cd0))
|
|
763
|
+
|
|
764
|
+
## 0.16.0 (2025-10-10)
|
|
765
|
+
|
|
766
|
+
Full Changelog: [v0.15.0...v0.16.0](https://github.com/clear-street/clear-street-typescript/compare/v0.15.0...v0.16.0)
|
|
767
|
+
|
|
768
|
+
### Features
|
|
769
|
+
|
|
770
|
+
* **api:** Move request bodies into components.requestBodies ([bfd30d2](https://github.com/clear-street/clear-street-typescript/commit/bfd30d2619a1a7a7c1070a44d4f265e49396b060))
|
|
771
|
+
|
|
772
|
+
## 0.15.0 (2025-10-07)
|
|
773
|
+
|
|
774
|
+
Full Changelog: [v0.14.0...v0.15.0](https://github.com/clear-street/clear-street-typescript/compare/v0.14.0...v0.15.0)
|
|
775
|
+
|
|
776
|
+
### Features
|
|
777
|
+
|
|
778
|
+
* **api:** manual updates ([9099db7](https://github.com/clear-street/clear-street-typescript/commit/9099db7e6c600d74352055a8894d72a5e08652ac))
|
|
779
|
+
|
|
780
|
+
## 0.14.0 (2025-10-07)
|
|
781
|
+
|
|
782
|
+
Full Changelog: [v0.13.2...v0.14.0](https://github.com/clear-street/clear-street-typescript/compare/v0.13.2...v0.14.0)
|
|
783
|
+
|
|
784
|
+
### Features
|
|
785
|
+
|
|
786
|
+
* **api:** manual updates ([502bd37](https://github.com/clear-street/clear-street-typescript/commit/502bd3716fc195dc7c7b964efe45b31ef7570313))
|
|
787
|
+
* **api:** manual updates ([417c92e](https://github.com/clear-street/clear-street-typescript/commit/417c92ee34c95ff16c03b337289aee8d957a3799))
|
|
788
|
+
|
|
789
|
+
## 0.13.2 (2025-10-07)
|
|
790
|
+
|
|
791
|
+
Full Changelog: [v0.13.1...v0.13.2](https://github.com/clear-street/clear-street-typescript/compare/v0.13.1...v0.13.2)
|
|
792
|
+
|
|
793
|
+
### Chores
|
|
794
|
+
|
|
795
|
+
* **api:** Expose BaseResponse type. ([6210763](https://github.com/clear-street/clear-street-typescript/commit/6210763b93c75d88666ce50e807a74618e0748b3))
|
|
796
|
+
|
|
797
|
+
## 0.13.1 (2025-10-07)
|
|
798
|
+
|
|
799
|
+
Full Changelog: [v0.13.0...v0.13.1](https://github.com/clear-street/clear-street-typescript/compare/v0.13.0...v0.13.1)
|
|
800
|
+
|
|
801
|
+
### Bug Fixes
|
|
802
|
+
|
|
803
|
+
* **api:** Fix Add AnyValue recursive schema type ([2cdb05f](https://github.com/clear-street/clear-street-typescript/commit/2cdb05fa41b0fbd6fb3d56819d0214c0a163e1cb))
|
|
804
|
+
* **api:** Fix BaseResponse type ([7a18acc](https://github.com/clear-street/clear-street-typescript/commit/7a18accc50fd4a9549dace4dff904b99e58034ad))
|
|
805
|
+
* **api:** Fix BaseResponse type ([1c73e77](https://github.com/clear-street/clear-street-typescript/commit/1c73e779af2123fe1918803f0e0c492a09e811df))
|
|
806
|
+
* **api:** Refactor BaseResponse more ([a1c837e](https://github.com/clear-street/clear-street-typescript/commit/a1c837eecba7c6388c731765c679b88ac723c9e1))
|
|
807
|
+
|
|
808
|
+
## 0.13.0 (2025-10-07)
|
|
809
|
+
|
|
810
|
+
Full Changelog: [v0.12.0...v0.13.0](https://github.com/clear-street/clear-street-typescript/compare/v0.12.0...v0.13.0)
|
|
811
|
+
|
|
812
|
+
### Features
|
|
813
|
+
|
|
814
|
+
* **api:** Add instruments APIs ([68c4daf](https://github.com/clear-street/clear-street-typescript/commit/68c4daf022904269e89c59cbd26ebb9f377bf461))
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
### Chores
|
|
818
|
+
|
|
819
|
+
* **internal:** use npm pack for build uploads ([662a535](https://github.com/clear-street/clear-street-typescript/commit/662a5357a2af8b59e7b6d4e721e3c5f87fd59e27))
|
|
820
|
+
|
|
821
|
+
## 0.12.0 (2025-10-06)
|
|
822
|
+
|
|
823
|
+
Full Changelog: [v0.11.1...v0.12.0](https://github.com/clear-street/clear-street-typescript/compare/v0.11.1...v0.12.0)
|
|
824
|
+
|
|
825
|
+
### Features
|
|
826
|
+
|
|
827
|
+
* **api:** Add order creation endpoint ([7babca6](https://github.com/clear-street/clear-street-typescript/commit/7babca6bcabf84fde3b06584a7ee30258ac12bad))
|
|
828
|
+
|
|
829
|
+
## 0.11.1 (2025-10-06)
|
|
830
|
+
|
|
831
|
+
Full Changelog: [v0.11.0...v0.11.1](https://github.com/clear-street/clear-street-typescript/compare/v0.11.0...v0.11.1)
|
|
832
|
+
|
|
833
|
+
### Bug Fixes
|
|
834
|
+
|
|
835
|
+
* **api:** Update Response_GetAccountPositionsResponse ([f9a7648](https://github.com/clear-street/clear-street-typescript/commit/f9a7648d45e12b4eb771ba69bf6ae6e77a82df37))
|
|
836
|
+
|
|
837
|
+
## 0.11.0 (2025-10-06)
|
|
838
|
+
|
|
839
|
+
Full Changelog: [v0.10.0...v0.11.0](https://github.com/clear-street/clear-street-typescript/compare/v0.10.0...v0.11.0)
|
|
840
|
+
|
|
841
|
+
### Features
|
|
842
|
+
|
|
843
|
+
* **api:** Add account positions API ([811ced4](https://github.com/clear-street/clear-street-typescript/commit/811ced4d142511507ff2499b924e4bad0daa60d6))
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
### Chores
|
|
847
|
+
|
|
848
|
+
* **jsdoc:** fix [@link](https://github.com/link) annotations to refer only to parts of the package‘s public interface ([07c04c6](https://github.com/clear-street/clear-street-typescript/commit/07c04c62b8e4bb3f0e4f7666ee0f2a453751dac5))
|
|
849
|
+
|
|
850
|
+
## 0.10.0 (2025-10-02)
|
|
851
|
+
|
|
852
|
+
Full Changelog: [v0.9.0...v0.10.0](https://github.com/clear-street/clear-street-typescript/compare/v0.9.0...v0.10.0)
|
|
853
|
+
|
|
854
|
+
### Features
|
|
855
|
+
|
|
856
|
+
* **api:** manual updates ([e815e51](https://github.com/clear-street/clear-street-typescript/commit/e815e51b457e04eaf817a58c8e8bd05f61aedf55))
|
|
857
|
+
* **api:** manual updates ([200de58](https://github.com/clear-street/clear-street-typescript/commit/200de581a30aa289a7a04d40b834b03ea686ec68))
|
|
858
|
+
|
|
859
|
+
## 0.9.0 (2025-10-01)
|
|
860
|
+
|
|
861
|
+
Full Changelog: [v0.8.3...v0.9.0](https://github.com/clear-street/clear-street-typescript/compare/v0.8.3...v0.9.0)
|
|
862
|
+
|
|
863
|
+
### Features
|
|
864
|
+
|
|
865
|
+
* **api:** Add M2M App API endpoints ([0ad4d24](https://github.com/clear-street/clear-street-typescript/commit/0ad4d2481ea57f1c5c8cd3d95789356fbd057bdb))
|
|
866
|
+
|
|
867
|
+
## 0.8.3 (2025-10-01)
|
|
868
|
+
|
|
869
|
+
Full Changelog: [v0.8.2...v0.8.3](https://github.com/clear-street/clear-street-typescript/compare/v0.8.2...v0.8.3)
|
|
870
|
+
|
|
871
|
+
### Chores
|
|
872
|
+
|
|
873
|
+
* **internal:** codegen related update ([920ccfd](https://github.com/clear-street/clear-street-typescript/commit/920ccfde9fc88f25290886f1d2eba3ca2a48dcce))
|
|
874
|
+
* **internal:** fix incremental formatting in some cases ([fe2bcbe](https://github.com/clear-street/clear-street-typescript/commit/fe2bcbef42081c32116ad2864725f0e2c41ffa29))
|
|
875
|
+
* **internal:** ignore .eslintcache ([db1ac82](https://github.com/clear-street/clear-street-typescript/commit/db1ac8286e51e24aa4320bfeb6560a6e62fe75df))
|
|
876
|
+
|
|
877
|
+
## 0.8.2 (2025-09-26)
|
|
878
|
+
|
|
879
|
+
Full Changelog: [v0.8.1...v0.8.2](https://github.com/clear-street/clear-street-typescript/compare/v0.8.1...v0.8.2)
|
|
880
|
+
|
|
881
|
+
### Performance Improvements
|
|
882
|
+
|
|
883
|
+
* faster formatting ([f8eae02](https://github.com/clear-street/clear-street-typescript/commit/f8eae02e6f22fa273a5c21f9acc30d0b6c091ce0))
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
### Chores
|
|
887
|
+
|
|
888
|
+
* **internal:** remove deprecated `compilerOptions.baseUrl` from tsconfig.json ([d6c8769](https://github.com/clear-street/clear-street-typescript/commit/d6c87695c59736e863ea4cac6450a760e15b5641))
|
|
889
|
+
|
|
890
|
+
## 0.8.1 (2025-09-25)
|
|
891
|
+
|
|
892
|
+
Full Changelog: [v0.8.0...v0.8.1](https://github.com/clear-street/clear-street-typescript/compare/v0.8.0...v0.8.1)
|
|
893
|
+
|
|
894
|
+
### Chores
|
|
895
|
+
|
|
896
|
+
* **ci:** Make sure to set NODE_AUTH_TOKEN ([408949e](https://github.com/clear-street/clear-street-typescript/commit/408949e012f5b08f0e2f6f4f52b255287c2102be))
|
|
897
|
+
|
|
898
|
+
## 0.8.0 (2025-09-25)
|
|
899
|
+
|
|
900
|
+
Full Changelog: [v0.7.0...v0.8.0](https://github.com/clear-street/clear-street-typescript/compare/v0.7.0...v0.8.0)
|
|
901
|
+
|
|
902
|
+
### Features
|
|
903
|
+
|
|
904
|
+
* **ci:** Auth with GH Packages. ([7697dca](https://github.com/clear-street/clear-street-typescript/commit/7697dcadfe8a403785057c2f06ad89f75691449f))
|
|
905
|
+
|
|
906
|
+
## 0.7.0 (2025-09-25)
|
|
907
|
+
|
|
908
|
+
Full Changelog: [v0.6.0...v0.7.0](https://github.com/clear-street/clear-street-typescript/compare/v0.6.0...v0.7.0)
|
|
909
|
+
|
|
910
|
+
### Features
|
|
911
|
+
|
|
912
|
+
* **api:** let publishing resume ([a99d570](https://github.com/clear-street/clear-street-typescript/commit/a99d570f00d85e40eeacdb3a34dd3d047e77440c))
|
|
913
|
+
* **api:** match npm package scope to FE monorepo GH org ([3890eb6](https://github.com/clear-street/clear-street-typescript/commit/3890eb683fce616bf763b38d262f64da6f908bd0))
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
### Build System
|
|
917
|
+
|
|
918
|
+
* **npm:** Point package.json#publishConfig#registry to GH packages ([fbe3e0b](https://github.com/clear-street/clear-street-typescript/commit/fbe3e0bc7158430b6d8e2daa8eae274f5a15a4b2))
|
|
919
|
+
|
|
920
|
+
## 0.6.0 (2025-09-25)
|
|
921
|
+
|
|
922
|
+
Full Changelog: [v0.5.0...v0.6.0](https://github.com/clear-street/clear-street-typescript/compare/v0.5.0...v0.6.0)
|
|
923
|
+
|
|
924
|
+
### Features
|
|
925
|
+
|
|
926
|
+
* **api:** match npm package scope to FE monorepo GH org ([3890eb6](https://github.com/clear-street/clear-street-typescript/commit/3890eb683fce616bf763b38d262f64da6f908bd0))
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
### Build System
|
|
930
|
+
|
|
931
|
+
* **npm:** Point package.json#publishConfig#registry to GH packages ([fbe3e0b](https://github.com/clear-street/clear-street-typescript/commit/fbe3e0bc7158430b6d8e2daa8eae274f5a15a4b2))
|
|
932
|
+
|
|
933
|
+
## 0.5.0 (2025-09-24)
|
|
934
|
+
|
|
935
|
+
Full Changelog: [v0.4.1...v0.5.0](https://github.com/clear-street/clear-street-typescript/compare/v0.4.1...v0.5.0)
|
|
936
|
+
|
|
937
|
+
### Features
|
|
938
|
+
|
|
939
|
+
* **api:** No longer publish to NPM (for now) ([9dbd89c](https://github.com/clear-street/clear-street-typescript/commit/9dbd89cd90b7a621588294d48d9457b512db0425))
|
|
940
|
+
|
|
941
|
+
## 0.4.1 (2025-09-24)
|
|
942
|
+
|
|
943
|
+
Full Changelog: [v0.4.0...v0.4.1](https://github.com/clear-street/clear-street-typescript/compare/v0.4.0...v0.4.1)
|
|
944
|
+
|
|
945
|
+
### Chores
|
|
946
|
+
|
|
947
|
+
* update SDK settings ([9fc2988](https://github.com/clear-street/clear-street-typescript/commit/9fc29881dcff9907742258542b36977fde981bdd))
|
|
948
|
+
|
|
949
|
+
## 0.4.0 (2025-09-24)
|
|
950
|
+
|
|
951
|
+
Full Changelog: [v0.3.0...v0.4.0](https://github.com/clear-street/clear-street-typescript/compare/v0.3.0...v0.4.0)
|
|
952
|
+
|
|
953
|
+
### Features
|
|
954
|
+
|
|
955
|
+
* **api:** Temp change package name ([5b43a9e](https://github.com/clear-street/clear-street-typescript/commit/5b43a9e9a8383869e6b08dff938c19212d2f1862))
|
|
956
|
+
|
|
957
|
+
## 0.3.0 (2025-09-23)
|
|
958
|
+
|
|
959
|
+
Full Changelog: [v0.2.0...v0.3.0](https://github.com/clear-street/clear-street-typescript/compare/v0.2.0...v0.3.0)
|
|
960
|
+
|
|
961
|
+
### Features
|
|
962
|
+
|
|
963
|
+
* **api:** Bring back stainless config changes ([55d56fd](https://github.com/clear-street/clear-street-typescript/commit/55d56fdc351ce4dad261194d28d0fb210f096b83))
|
|
964
|
+
* **api:** fix paths ([b97aa75](https://github.com/clear-street/clear-street-typescript/commit/b97aa758a9c22ccb66b55337414d49b3852e8c0a))
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
### Chores
|
|
968
|
+
|
|
969
|
+
* update SDK settings ([f29262c](https://github.com/clear-street/clear-street-typescript/commit/f29262cc99916f712c6f69131059aa6193cff3da))
|
|
970
|
+
|
|
971
|
+
## 0.2.0 (2025-09-23)
|
|
972
|
+
|
|
973
|
+
Full Changelog: [v0.1.0...v0.2.0](https://github.com/clear-street/clear-street-typescript/compare/v0.1.0...v0.2.0)
|
|
974
|
+
|
|
975
|
+
### Features
|
|
976
|
+
|
|
977
|
+
* **api:** Add environments ([589a5b5](https://github.com/clear-street/clear-street-typescript/commit/589a5b5e401d3a6e686a2a7b0394d2618c7c915a))
|
|
978
|
+
|
|
979
|
+
## 0.1.0 (2025-09-23)
|
|
980
|
+
|
|
981
|
+
Full Changelog: [v0.0.2...v0.1.0](https://github.com/clear-street/clear-street-typescript/compare/v0.0.2...v0.1.0)
|
|
982
|
+
|
|
983
|
+
### Features
|
|
984
|
+
|
|
985
|
+
* **api:** manual updates ([340f03b](https://github.com/clear-street/clear-street-typescript/commit/340f03b8289287121b69f45cbe8f88b4f2fd83d9))
|
|
986
|
+
|
|
987
|
+
## 0.0.2 (2025-09-22)
|
|
988
|
+
|
|
989
|
+
Full Changelog: [v0.0.1...v0.0.2](https://github.com/clear-street/clear-street-typescript/compare/v0.0.1...v0.0.2)
|
|
990
|
+
|
|
991
|
+
### Chores
|
|
992
|
+
|
|
993
|
+
* update SDK settings ([13441d1](https://github.com/clear-street/clear-street-typescript/commit/13441d14a8f92d23cbb9fd339c6c0f7454fdacca))
|
|
994
|
+
* update SDK settings ([b8845dc](https://github.com/clear-street/clear-street-typescript/commit/b8845dc25682ab23ff20bff0c7c67a6d563a96f7))
|