@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
|
@@ -0,0 +1,460 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
import { APIResource } from '../../core/resource';
|
|
4
|
+
import * as AccountsAPI from './accounts';
|
|
5
|
+
import {
|
|
6
|
+
Account,
|
|
7
|
+
AccountBalances,
|
|
8
|
+
AccountBalancesSod,
|
|
9
|
+
AccountGetAccountBalancesParams,
|
|
10
|
+
AccountGetAccountBalancesResponse,
|
|
11
|
+
AccountGetAccountByIDResponse,
|
|
12
|
+
AccountGetAccountsParams,
|
|
13
|
+
AccountGetAccountsResponse,
|
|
14
|
+
AccountGetPortfolioHistoryParams,
|
|
15
|
+
AccountGetPortfolioHistoryResponse,
|
|
16
|
+
AccountList,
|
|
17
|
+
AccountPatchAccountByIDParams,
|
|
18
|
+
AccountPatchAccountByIDResponse,
|
|
19
|
+
AccountSettings,
|
|
20
|
+
AccountStatus,
|
|
21
|
+
AccountSubtype,
|
|
22
|
+
AccountType,
|
|
23
|
+
Accounts,
|
|
24
|
+
MarginDetails,
|
|
25
|
+
MarginDetailsUsage,
|
|
26
|
+
MarginTopContributor,
|
|
27
|
+
MarginType,
|
|
28
|
+
PortfolioHistoryResponse,
|
|
29
|
+
PortfolioHistorySegment,
|
|
30
|
+
RiskSettings,
|
|
31
|
+
} from './accounts';
|
|
32
|
+
import * as APIVersionAPI from './api-version';
|
|
33
|
+
import { APIVersion, APIVersionGetVersionResponse, Version } from './api-version';
|
|
34
|
+
import * as CalendarAPI from './calendar';
|
|
35
|
+
import {
|
|
36
|
+
Calendar,
|
|
37
|
+
CalendarGetClockResponse,
|
|
38
|
+
CalendarGetMarketHoursCalendarParams,
|
|
39
|
+
CalendarGetMarketHoursCalendarResponse,
|
|
40
|
+
ClockDetail,
|
|
41
|
+
DayType,
|
|
42
|
+
MarketHoursDetail,
|
|
43
|
+
MarketHoursDetailList,
|
|
44
|
+
MarketSessionType,
|
|
45
|
+
MarketStatus,
|
|
46
|
+
MarketType,
|
|
47
|
+
SessionSchedule,
|
|
48
|
+
TradingSessions,
|
|
49
|
+
} from './calendar';
|
|
50
|
+
import * as InstrumentsAPI from './instruments';
|
|
51
|
+
import {
|
|
52
|
+
ContractType,
|
|
53
|
+
ExerciseStyle,
|
|
54
|
+
Instrument,
|
|
55
|
+
InstrumentCore,
|
|
56
|
+
InstrumentCoreList,
|
|
57
|
+
InstrumentGetInstrumentByIDParams,
|
|
58
|
+
InstrumentGetInstrumentByIDResponse,
|
|
59
|
+
InstrumentGetInstrumentsParams,
|
|
60
|
+
InstrumentGetInstrumentsResponse,
|
|
61
|
+
InstrumentGetOptionContractsParams,
|
|
62
|
+
InstrumentGetOptionContractsResponse,
|
|
63
|
+
InstrumentSearchInstrumentsParams,
|
|
64
|
+
InstrumentSearchInstrumentsResponse,
|
|
65
|
+
Instruments,
|
|
66
|
+
ListingType,
|
|
67
|
+
OptionsContract,
|
|
68
|
+
OptionsContractList,
|
|
69
|
+
} from './instruments';
|
|
70
|
+
import * as OrdersAPI from './orders';
|
|
71
|
+
import {
|
|
72
|
+
CancelOrderRequest,
|
|
73
|
+
Execution,
|
|
74
|
+
ExecutionList,
|
|
75
|
+
InstrumentIDOrSymbol,
|
|
76
|
+
NewOrderRequest,
|
|
77
|
+
Order,
|
|
78
|
+
OrderCancelAllOpenOrdersParams,
|
|
79
|
+
OrderCancelAllOpenOrdersResponse,
|
|
80
|
+
OrderCancelOpenOrderParams,
|
|
81
|
+
OrderCancelOpenOrderResponse,
|
|
82
|
+
OrderGetExecutionsParams,
|
|
83
|
+
OrderGetExecutionsResponse,
|
|
84
|
+
OrderGetOrderByIDParams,
|
|
85
|
+
OrderGetOrderByIDResponse,
|
|
86
|
+
OrderGetOrdersParams,
|
|
87
|
+
OrderGetOrdersResponse,
|
|
88
|
+
OrderList,
|
|
89
|
+
OrderReplaceOrderParams,
|
|
90
|
+
OrderReplaceOrderResponse,
|
|
91
|
+
OrderStatus,
|
|
92
|
+
OrderSubmitOrdersParams,
|
|
93
|
+
OrderSubmitOrdersResponse,
|
|
94
|
+
OrderType,
|
|
95
|
+
Orders,
|
|
96
|
+
PositionEffect,
|
|
97
|
+
QueueState,
|
|
98
|
+
RequestOrderType,
|
|
99
|
+
RequestTimeInForce,
|
|
100
|
+
Side,
|
|
101
|
+
TimeInForce,
|
|
102
|
+
TrailingOffsetType,
|
|
103
|
+
} from './orders';
|
|
104
|
+
import * as PositionsAPI from './positions';
|
|
105
|
+
import {
|
|
106
|
+
Position,
|
|
107
|
+
PositionCancelPositionInstructionParams,
|
|
108
|
+
PositionCancelPositionInstructionResponse,
|
|
109
|
+
PositionClosePositionParams,
|
|
110
|
+
PositionClosePositionResponse,
|
|
111
|
+
PositionClosePositionsParams,
|
|
112
|
+
PositionClosePositionsResponse,
|
|
113
|
+
PositionGetPositionInstructionsParams,
|
|
114
|
+
PositionGetPositionInstructionsResponse,
|
|
115
|
+
PositionGetPositionsParams,
|
|
116
|
+
PositionGetPositionsResponse,
|
|
117
|
+
PositionInstruction,
|
|
118
|
+
PositionInstructionList,
|
|
119
|
+
PositionInstructionStatus,
|
|
120
|
+
PositionInstructionType,
|
|
121
|
+
PositionList,
|
|
122
|
+
PositionSubmitPositionInstructionsParams,
|
|
123
|
+
PositionSubmitPositionInstructionsResponse,
|
|
124
|
+
PositionType,
|
|
125
|
+
Positions,
|
|
126
|
+
} from './positions';
|
|
127
|
+
import * as WatchlistAPI from './watchlist';
|
|
128
|
+
import {
|
|
129
|
+
AddWatchlistItemData,
|
|
130
|
+
Watchlist,
|
|
131
|
+
WatchlistAddWatchlistItemParams,
|
|
132
|
+
WatchlistAddWatchlistItemResponse,
|
|
133
|
+
WatchlistCreateWatchlistParams,
|
|
134
|
+
WatchlistCreateWatchlistResponse,
|
|
135
|
+
WatchlistDeleteWatchlistItemParams,
|
|
136
|
+
WatchlistDeleteWatchlistItemResponse,
|
|
137
|
+
WatchlistDeleteWatchlistResponse,
|
|
138
|
+
WatchlistDetail,
|
|
139
|
+
WatchlistEntry,
|
|
140
|
+
WatchlistEntryList,
|
|
141
|
+
WatchlistGetWatchlistByIDResponse,
|
|
142
|
+
WatchlistGetWatchlistsParams,
|
|
143
|
+
WatchlistGetWatchlistsResponse,
|
|
144
|
+
WatchlistItemEntry,
|
|
145
|
+
} from './watchlist';
|
|
146
|
+
import * as WebsocketAPI from './websocket';
|
|
147
|
+
import { Websocket } from './websocket';
|
|
148
|
+
import * as InstrumentDataAPI from './instrument-data/instrument-data';
|
|
149
|
+
import {
|
|
150
|
+
AllEventsEventType,
|
|
151
|
+
AnalystDistribution,
|
|
152
|
+
AnalystRating,
|
|
153
|
+
FiscalPeriodType,
|
|
154
|
+
InstrumentAllEventsData,
|
|
155
|
+
InstrumentAnalystConsensus,
|
|
156
|
+
InstrumentBalanceSheetStatement,
|
|
157
|
+
InstrumentBalanceSheetStatementList,
|
|
158
|
+
InstrumentCashFlowStatement,
|
|
159
|
+
InstrumentCashFlowStatementList,
|
|
160
|
+
InstrumentData,
|
|
161
|
+
InstrumentDataGetAllInstrumentEventsParams,
|
|
162
|
+
InstrumentDataGetAllInstrumentEventsResponse,
|
|
163
|
+
InstrumentDataGetInstrumentAnalystConsensusParams,
|
|
164
|
+
InstrumentDataGetInstrumentAnalystConsensusResponse,
|
|
165
|
+
InstrumentDataGetInstrumentBalanceSheetStatementsParams,
|
|
166
|
+
InstrumentDataGetInstrumentBalanceSheetStatementsResponse,
|
|
167
|
+
InstrumentDataGetInstrumentCashFlowStatementsParams,
|
|
168
|
+
InstrumentDataGetInstrumentCashFlowStatementsResponse,
|
|
169
|
+
InstrumentDataGetInstrumentEventsParams,
|
|
170
|
+
InstrumentDataGetInstrumentEventsResponse,
|
|
171
|
+
InstrumentDataGetInstrumentFundamentalsResponse,
|
|
172
|
+
InstrumentDataGetInstrumentIncomeStatementsParams,
|
|
173
|
+
InstrumentDataGetInstrumentIncomeStatementsResponse,
|
|
174
|
+
InstrumentDividendEvent,
|
|
175
|
+
InstrumentEarnings,
|
|
176
|
+
InstrumentEventEnvelope,
|
|
177
|
+
InstrumentEventIpoItem,
|
|
178
|
+
InstrumentEventsByDate,
|
|
179
|
+
InstrumentEventsData,
|
|
180
|
+
InstrumentFundamentals,
|
|
181
|
+
InstrumentIncomeStatement,
|
|
182
|
+
InstrumentIncomeStatementList,
|
|
183
|
+
InstrumentSplitEvent,
|
|
184
|
+
PriceTarget,
|
|
185
|
+
} from './instrument-data/instrument-data';
|
|
186
|
+
import * as OmniAIAPI from './omni-ai/omni-ai';
|
|
187
|
+
import {
|
|
188
|
+
ActionButton,
|
|
189
|
+
ChartPayload,
|
|
190
|
+
ChartPoint,
|
|
191
|
+
ChartSeries,
|
|
192
|
+
ContentPartChartPayload,
|
|
193
|
+
ContentPartCustomPayload,
|
|
194
|
+
ContentPartStructuredActionPayload,
|
|
195
|
+
ContentPartSuggestedActionsPayload,
|
|
196
|
+
ContentPartTextPayload,
|
|
197
|
+
ContentPartThinkingPayload,
|
|
198
|
+
DataChart,
|
|
199
|
+
EntitlementAgreementKey,
|
|
200
|
+
EntitlementCode,
|
|
201
|
+
OmniAI,
|
|
202
|
+
OpenChartAction,
|
|
203
|
+
OpenEntitlementConsentAction,
|
|
204
|
+
OpenScreenerAction,
|
|
205
|
+
PrefillCancelOrderAction,
|
|
206
|
+
PrefillNewOrderAction,
|
|
207
|
+
PrefillOrderAction,
|
|
208
|
+
PromptButtonAction,
|
|
209
|
+
ScreenerFilter,
|
|
210
|
+
StructuredAction,
|
|
211
|
+
StructuredActionButtonAction,
|
|
212
|
+
SuggestedActionsPayload,
|
|
213
|
+
} from './omni-ai/omni-ai';
|
|
214
|
+
|
|
215
|
+
export class V1 extends APIResource {
|
|
216
|
+
accounts: AccountsAPI.Accounts = new AccountsAPI.Accounts(this._client);
|
|
217
|
+
apiVersion: APIVersionAPI.APIVersion = new APIVersionAPI.APIVersion(this._client);
|
|
218
|
+
calendar: CalendarAPI.Calendar = new CalendarAPI.Calendar(this._client);
|
|
219
|
+
instrumentData: InstrumentDataAPI.InstrumentData = new InstrumentDataAPI.InstrumentData(this._client);
|
|
220
|
+
instruments: InstrumentsAPI.Instruments = new InstrumentsAPI.Instruments(this._client);
|
|
221
|
+
omniAI: OmniAIAPI.OmniAI = new OmniAIAPI.OmniAI(this._client);
|
|
222
|
+
orders: OrdersAPI.Orders = new OrdersAPI.Orders(this._client);
|
|
223
|
+
positions: PositionsAPI.Positions = new PositionsAPI.Positions(this._client);
|
|
224
|
+
watchlist: WatchlistAPI.Watchlist = new WatchlistAPI.Watchlist(this._client);
|
|
225
|
+
websocket: WebsocketAPI.Websocket = new WebsocketAPI.Websocket(this._client);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* Security type
|
|
230
|
+
*/
|
|
231
|
+
export type SecurityType = 'COMMON_STOCK' | 'OPTION' | 'CASH';
|
|
232
|
+
|
|
233
|
+
V1.Accounts = Accounts;
|
|
234
|
+
V1.APIVersion = APIVersion;
|
|
235
|
+
V1.Calendar = Calendar;
|
|
236
|
+
V1.InstrumentData = InstrumentData;
|
|
237
|
+
V1.Instruments = Instruments;
|
|
238
|
+
V1.OmniAI = OmniAI;
|
|
239
|
+
V1.Orders = Orders;
|
|
240
|
+
V1.Positions = Positions;
|
|
241
|
+
V1.Watchlist = Watchlist;
|
|
242
|
+
V1.Websocket = Websocket;
|
|
243
|
+
|
|
244
|
+
export declare namespace V1 {
|
|
245
|
+
export { type SecurityType as SecurityType };
|
|
246
|
+
|
|
247
|
+
export {
|
|
248
|
+
Accounts as Accounts,
|
|
249
|
+
type Account as Account,
|
|
250
|
+
type AccountBalances as AccountBalances,
|
|
251
|
+
type AccountBalancesSod as AccountBalancesSod,
|
|
252
|
+
type AccountList as AccountList,
|
|
253
|
+
type AccountSettings as AccountSettings,
|
|
254
|
+
type AccountStatus as AccountStatus,
|
|
255
|
+
type AccountSubtype as AccountSubtype,
|
|
256
|
+
type AccountType as AccountType,
|
|
257
|
+
type MarginDetails as MarginDetails,
|
|
258
|
+
type MarginDetailsUsage as MarginDetailsUsage,
|
|
259
|
+
type MarginTopContributor as MarginTopContributor,
|
|
260
|
+
type MarginType as MarginType,
|
|
261
|
+
type PortfolioHistoryResponse as PortfolioHistoryResponse,
|
|
262
|
+
type PortfolioHistorySegment as PortfolioHistorySegment,
|
|
263
|
+
type RiskSettings as RiskSettings,
|
|
264
|
+
type AccountGetAccountBalancesResponse as AccountGetAccountBalancesResponse,
|
|
265
|
+
type AccountGetAccountByIDResponse as AccountGetAccountByIDResponse,
|
|
266
|
+
type AccountGetAccountsResponse as AccountGetAccountsResponse,
|
|
267
|
+
type AccountGetPortfolioHistoryResponse as AccountGetPortfolioHistoryResponse,
|
|
268
|
+
type AccountPatchAccountByIDResponse as AccountPatchAccountByIDResponse,
|
|
269
|
+
type AccountGetAccountBalancesParams as AccountGetAccountBalancesParams,
|
|
270
|
+
type AccountGetAccountsParams as AccountGetAccountsParams,
|
|
271
|
+
type AccountGetPortfolioHistoryParams as AccountGetPortfolioHistoryParams,
|
|
272
|
+
type AccountPatchAccountByIDParams as AccountPatchAccountByIDParams,
|
|
273
|
+
};
|
|
274
|
+
|
|
275
|
+
export {
|
|
276
|
+
APIVersion as APIVersion,
|
|
277
|
+
type Version as Version,
|
|
278
|
+
type APIVersionGetVersionResponse as APIVersionGetVersionResponse,
|
|
279
|
+
};
|
|
280
|
+
|
|
281
|
+
export {
|
|
282
|
+
Calendar as Calendar,
|
|
283
|
+
type ClockDetail as ClockDetail,
|
|
284
|
+
type DayType as DayType,
|
|
285
|
+
type MarketHoursDetail as MarketHoursDetail,
|
|
286
|
+
type MarketHoursDetailList as MarketHoursDetailList,
|
|
287
|
+
type MarketSessionType as MarketSessionType,
|
|
288
|
+
type MarketStatus as MarketStatus,
|
|
289
|
+
type MarketType as MarketType,
|
|
290
|
+
type SessionSchedule as SessionSchedule,
|
|
291
|
+
type TradingSessions as TradingSessions,
|
|
292
|
+
type CalendarGetClockResponse as CalendarGetClockResponse,
|
|
293
|
+
type CalendarGetMarketHoursCalendarResponse as CalendarGetMarketHoursCalendarResponse,
|
|
294
|
+
type CalendarGetMarketHoursCalendarParams as CalendarGetMarketHoursCalendarParams,
|
|
295
|
+
};
|
|
296
|
+
|
|
297
|
+
export {
|
|
298
|
+
InstrumentData as InstrumentData,
|
|
299
|
+
type AllEventsEventType as AllEventsEventType,
|
|
300
|
+
type AnalystDistribution as AnalystDistribution,
|
|
301
|
+
type AnalystRating as AnalystRating,
|
|
302
|
+
type FiscalPeriodType as FiscalPeriodType,
|
|
303
|
+
type InstrumentAllEventsData as InstrumentAllEventsData,
|
|
304
|
+
type InstrumentAnalystConsensus as InstrumentAnalystConsensus,
|
|
305
|
+
type InstrumentBalanceSheetStatement as InstrumentBalanceSheetStatement,
|
|
306
|
+
type InstrumentBalanceSheetStatementList as InstrumentBalanceSheetStatementList,
|
|
307
|
+
type InstrumentCashFlowStatement as InstrumentCashFlowStatement,
|
|
308
|
+
type InstrumentCashFlowStatementList as InstrumentCashFlowStatementList,
|
|
309
|
+
type InstrumentDividendEvent as InstrumentDividendEvent,
|
|
310
|
+
type InstrumentEarnings as InstrumentEarnings,
|
|
311
|
+
type InstrumentEventEnvelope as InstrumentEventEnvelope,
|
|
312
|
+
type InstrumentEventIpoItem as InstrumentEventIpoItem,
|
|
313
|
+
type InstrumentEventsByDate as InstrumentEventsByDate,
|
|
314
|
+
type InstrumentEventsData as InstrumentEventsData,
|
|
315
|
+
type InstrumentFundamentals as InstrumentFundamentals,
|
|
316
|
+
type InstrumentIncomeStatement as InstrumentIncomeStatement,
|
|
317
|
+
type InstrumentIncomeStatementList as InstrumentIncomeStatementList,
|
|
318
|
+
type InstrumentSplitEvent as InstrumentSplitEvent,
|
|
319
|
+
type PriceTarget as PriceTarget,
|
|
320
|
+
type InstrumentDataGetAllInstrumentEventsResponse as InstrumentDataGetAllInstrumentEventsResponse,
|
|
321
|
+
type InstrumentDataGetInstrumentAnalystConsensusResponse as InstrumentDataGetInstrumentAnalystConsensusResponse,
|
|
322
|
+
type InstrumentDataGetInstrumentBalanceSheetStatementsResponse as InstrumentDataGetInstrumentBalanceSheetStatementsResponse,
|
|
323
|
+
type InstrumentDataGetInstrumentCashFlowStatementsResponse as InstrumentDataGetInstrumentCashFlowStatementsResponse,
|
|
324
|
+
type InstrumentDataGetInstrumentEventsResponse as InstrumentDataGetInstrumentEventsResponse,
|
|
325
|
+
type InstrumentDataGetInstrumentFundamentalsResponse as InstrumentDataGetInstrumentFundamentalsResponse,
|
|
326
|
+
type InstrumentDataGetInstrumentIncomeStatementsResponse as InstrumentDataGetInstrumentIncomeStatementsResponse,
|
|
327
|
+
type InstrumentDataGetAllInstrumentEventsParams as InstrumentDataGetAllInstrumentEventsParams,
|
|
328
|
+
type InstrumentDataGetInstrumentAnalystConsensusParams as InstrumentDataGetInstrumentAnalystConsensusParams,
|
|
329
|
+
type InstrumentDataGetInstrumentBalanceSheetStatementsParams as InstrumentDataGetInstrumentBalanceSheetStatementsParams,
|
|
330
|
+
type InstrumentDataGetInstrumentCashFlowStatementsParams as InstrumentDataGetInstrumentCashFlowStatementsParams,
|
|
331
|
+
type InstrumentDataGetInstrumentEventsParams as InstrumentDataGetInstrumentEventsParams,
|
|
332
|
+
type InstrumentDataGetInstrumentIncomeStatementsParams as InstrumentDataGetInstrumentIncomeStatementsParams,
|
|
333
|
+
};
|
|
334
|
+
|
|
335
|
+
export {
|
|
336
|
+
Instruments as Instruments,
|
|
337
|
+
type ContractType as ContractType,
|
|
338
|
+
type ExerciseStyle as ExerciseStyle,
|
|
339
|
+
type Instrument as Instrument,
|
|
340
|
+
type InstrumentCore as InstrumentCore,
|
|
341
|
+
type InstrumentCoreList as InstrumentCoreList,
|
|
342
|
+
type ListingType as ListingType,
|
|
343
|
+
type OptionsContract as OptionsContract,
|
|
344
|
+
type OptionsContractList as OptionsContractList,
|
|
345
|
+
type InstrumentGetInstrumentByIDResponse as InstrumentGetInstrumentByIDResponse,
|
|
346
|
+
type InstrumentGetInstrumentsResponse as InstrumentGetInstrumentsResponse,
|
|
347
|
+
type InstrumentGetOptionContractsResponse as InstrumentGetOptionContractsResponse,
|
|
348
|
+
type InstrumentSearchInstrumentsResponse as InstrumentSearchInstrumentsResponse,
|
|
349
|
+
type InstrumentGetInstrumentByIDParams as InstrumentGetInstrumentByIDParams,
|
|
350
|
+
type InstrumentGetInstrumentsParams as InstrumentGetInstrumentsParams,
|
|
351
|
+
type InstrumentGetOptionContractsParams as InstrumentGetOptionContractsParams,
|
|
352
|
+
type InstrumentSearchInstrumentsParams as InstrumentSearchInstrumentsParams,
|
|
353
|
+
};
|
|
354
|
+
|
|
355
|
+
export {
|
|
356
|
+
OmniAI as OmniAI,
|
|
357
|
+
type ActionButton as ActionButton,
|
|
358
|
+
type ChartPayload as ChartPayload,
|
|
359
|
+
type ChartPoint as ChartPoint,
|
|
360
|
+
type ChartSeries as ChartSeries,
|
|
361
|
+
type ContentPartChartPayload as ContentPartChartPayload,
|
|
362
|
+
type ContentPartCustomPayload as ContentPartCustomPayload,
|
|
363
|
+
type ContentPartStructuredActionPayload as ContentPartStructuredActionPayload,
|
|
364
|
+
type ContentPartSuggestedActionsPayload as ContentPartSuggestedActionsPayload,
|
|
365
|
+
type ContentPartTextPayload as ContentPartTextPayload,
|
|
366
|
+
type ContentPartThinkingPayload as ContentPartThinkingPayload,
|
|
367
|
+
type DataChart as DataChart,
|
|
368
|
+
type EntitlementAgreementKey as EntitlementAgreementKey,
|
|
369
|
+
type EntitlementCode as EntitlementCode,
|
|
370
|
+
type OpenChartAction as OpenChartAction,
|
|
371
|
+
type OpenEntitlementConsentAction as OpenEntitlementConsentAction,
|
|
372
|
+
type OpenScreenerAction as OpenScreenerAction,
|
|
373
|
+
type PrefillCancelOrderAction as PrefillCancelOrderAction,
|
|
374
|
+
type PrefillNewOrderAction as PrefillNewOrderAction,
|
|
375
|
+
type PrefillOrderAction as PrefillOrderAction,
|
|
376
|
+
type PromptButtonAction as PromptButtonAction,
|
|
377
|
+
type ScreenerFilter as ScreenerFilter,
|
|
378
|
+
type StructuredAction as StructuredAction,
|
|
379
|
+
type StructuredActionButtonAction as StructuredActionButtonAction,
|
|
380
|
+
type SuggestedActionsPayload as SuggestedActionsPayload,
|
|
381
|
+
};
|
|
382
|
+
|
|
383
|
+
export {
|
|
384
|
+
Orders as Orders,
|
|
385
|
+
type CancelOrderRequest as CancelOrderRequest,
|
|
386
|
+
type Execution as Execution,
|
|
387
|
+
type ExecutionList as ExecutionList,
|
|
388
|
+
type InstrumentIDOrSymbol as InstrumentIDOrSymbol,
|
|
389
|
+
type NewOrderRequest as NewOrderRequest,
|
|
390
|
+
type Order as Order,
|
|
391
|
+
type OrderList as OrderList,
|
|
392
|
+
type OrderStatus as OrderStatus,
|
|
393
|
+
type OrderType as OrderType,
|
|
394
|
+
type PositionEffect as PositionEffect,
|
|
395
|
+
type QueueState as QueueState,
|
|
396
|
+
type RequestOrderType as RequestOrderType,
|
|
397
|
+
type RequestTimeInForce as RequestTimeInForce,
|
|
398
|
+
type Side as Side,
|
|
399
|
+
type TimeInForce as TimeInForce,
|
|
400
|
+
type TrailingOffsetType as TrailingOffsetType,
|
|
401
|
+
type OrderCancelAllOpenOrdersResponse as OrderCancelAllOpenOrdersResponse,
|
|
402
|
+
type OrderCancelOpenOrderResponse as OrderCancelOpenOrderResponse,
|
|
403
|
+
type OrderGetExecutionsResponse as OrderGetExecutionsResponse,
|
|
404
|
+
type OrderGetOrderByIDResponse as OrderGetOrderByIDResponse,
|
|
405
|
+
type OrderGetOrdersResponse as OrderGetOrdersResponse,
|
|
406
|
+
type OrderReplaceOrderResponse as OrderReplaceOrderResponse,
|
|
407
|
+
type OrderSubmitOrdersResponse as OrderSubmitOrdersResponse,
|
|
408
|
+
type OrderCancelAllOpenOrdersParams as OrderCancelAllOpenOrdersParams,
|
|
409
|
+
type OrderCancelOpenOrderParams as OrderCancelOpenOrderParams,
|
|
410
|
+
type OrderGetExecutionsParams as OrderGetExecutionsParams,
|
|
411
|
+
type OrderGetOrderByIDParams as OrderGetOrderByIDParams,
|
|
412
|
+
type OrderGetOrdersParams as OrderGetOrdersParams,
|
|
413
|
+
type OrderReplaceOrderParams as OrderReplaceOrderParams,
|
|
414
|
+
type OrderSubmitOrdersParams as OrderSubmitOrdersParams,
|
|
415
|
+
};
|
|
416
|
+
|
|
417
|
+
export {
|
|
418
|
+
Positions as Positions,
|
|
419
|
+
type Position as Position,
|
|
420
|
+
type PositionInstruction as PositionInstruction,
|
|
421
|
+
type PositionInstructionList as PositionInstructionList,
|
|
422
|
+
type PositionInstructionStatus as PositionInstructionStatus,
|
|
423
|
+
type PositionInstructionType as PositionInstructionType,
|
|
424
|
+
type PositionList as PositionList,
|
|
425
|
+
type PositionType as PositionType,
|
|
426
|
+
type PositionCancelPositionInstructionResponse as PositionCancelPositionInstructionResponse,
|
|
427
|
+
type PositionClosePositionResponse as PositionClosePositionResponse,
|
|
428
|
+
type PositionClosePositionsResponse as PositionClosePositionsResponse,
|
|
429
|
+
type PositionGetPositionInstructionsResponse as PositionGetPositionInstructionsResponse,
|
|
430
|
+
type PositionGetPositionsResponse as PositionGetPositionsResponse,
|
|
431
|
+
type PositionSubmitPositionInstructionsResponse as PositionSubmitPositionInstructionsResponse,
|
|
432
|
+
type PositionCancelPositionInstructionParams as PositionCancelPositionInstructionParams,
|
|
433
|
+
type PositionClosePositionParams as PositionClosePositionParams,
|
|
434
|
+
type PositionClosePositionsParams as PositionClosePositionsParams,
|
|
435
|
+
type PositionGetPositionInstructionsParams as PositionGetPositionInstructionsParams,
|
|
436
|
+
type PositionGetPositionsParams as PositionGetPositionsParams,
|
|
437
|
+
type PositionSubmitPositionInstructionsParams as PositionSubmitPositionInstructionsParams,
|
|
438
|
+
};
|
|
439
|
+
|
|
440
|
+
export {
|
|
441
|
+
Watchlist as Watchlist,
|
|
442
|
+
type AddWatchlistItemData as AddWatchlistItemData,
|
|
443
|
+
type WatchlistDetail as WatchlistDetail,
|
|
444
|
+
type WatchlistEntry as WatchlistEntry,
|
|
445
|
+
type WatchlistEntryList as WatchlistEntryList,
|
|
446
|
+
type WatchlistItemEntry as WatchlistItemEntry,
|
|
447
|
+
type WatchlistAddWatchlistItemResponse as WatchlistAddWatchlistItemResponse,
|
|
448
|
+
type WatchlistCreateWatchlistResponse as WatchlistCreateWatchlistResponse,
|
|
449
|
+
type WatchlistDeleteWatchlistResponse as WatchlistDeleteWatchlistResponse,
|
|
450
|
+
type WatchlistDeleteWatchlistItemResponse as WatchlistDeleteWatchlistItemResponse,
|
|
451
|
+
type WatchlistGetWatchlistByIDResponse as WatchlistGetWatchlistByIDResponse,
|
|
452
|
+
type WatchlistGetWatchlistsResponse as WatchlistGetWatchlistsResponse,
|
|
453
|
+
type WatchlistAddWatchlistItemParams as WatchlistAddWatchlistItemParams,
|
|
454
|
+
type WatchlistCreateWatchlistParams as WatchlistCreateWatchlistParams,
|
|
455
|
+
type WatchlistDeleteWatchlistItemParams as WatchlistDeleteWatchlistItemParams,
|
|
456
|
+
type WatchlistGetWatchlistsParams as WatchlistGetWatchlistsParams,
|
|
457
|
+
};
|
|
458
|
+
|
|
459
|
+
export { Websocket as Websocket };
|
|
460
|
+
}
|