@finatic/client 0.9.3 → 0.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +44 -48
- package/dist/index.js +72 -64
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +73 -65
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -328,31 +328,6 @@ declare enum BrokerDataOrderSideEnum {
|
|
|
328
328
|
Sell = "sell"
|
|
329
329
|
}
|
|
330
330
|
|
|
331
|
-
/**
|
|
332
|
-
* Finatic FastAPI Backend
|
|
333
|
-
* FinaticAPI REST API
|
|
334
|
-
*
|
|
335
|
-
* The version of the OpenAPI document: 1.0.0
|
|
336
|
-
*
|
|
337
|
-
*
|
|
338
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
339
|
-
* https://openapi-generator.tech
|
|
340
|
-
* Do not edit the class manually.
|
|
341
|
-
*/
|
|
342
|
-
declare enum BrokerDataOrderStatusEnum {
|
|
343
|
-
Submitted = "submitted",
|
|
344
|
-
New = "new",
|
|
345
|
-
PartiallyFilled = "partially_filled",
|
|
346
|
-
Filled = "filled",
|
|
347
|
-
PendingCancel = "pending_cancel",
|
|
348
|
-
Cancelled = "cancelled",
|
|
349
|
-
Rejected = "rejected",
|
|
350
|
-
Expired = "expired",
|
|
351
|
-
Created = "created",
|
|
352
|
-
Received = "received",
|
|
353
|
-
Queued = "queued"
|
|
354
|
-
}
|
|
355
|
-
|
|
356
331
|
/**
|
|
357
332
|
* Finatic FastAPI Backend
|
|
358
333
|
* FinaticAPI REST API
|
|
@@ -966,6 +941,8 @@ interface FDXBrokerBalance {
|
|
|
966
941
|
* Associated account identifier
|
|
967
942
|
*/
|
|
968
943
|
'accountId': string;
|
|
944
|
+
'internalAccountId'?: string | null;
|
|
945
|
+
'connectionId'?: string | null;
|
|
969
946
|
'balanceType': Balancetype;
|
|
970
947
|
'balanceName'?: string | null;
|
|
971
948
|
'availableBalance'?: Availablebalance | null;
|
|
@@ -1279,6 +1256,7 @@ interface FDXBrokerOrder {
|
|
|
1279
1256
|
* Broker account identifier
|
|
1280
1257
|
*/
|
|
1281
1258
|
'accountId': string;
|
|
1259
|
+
'internalAccountId'?: string | null;
|
|
1282
1260
|
'connectionId'?: string | null;
|
|
1283
1261
|
'orderType'?: Ordertype | null;
|
|
1284
1262
|
'orderClass'?: Orderclass | null;
|
|
@@ -1758,6 +1736,7 @@ interface FDXBrokerPosition {
|
|
|
1758
1736
|
* Broker account identifier
|
|
1759
1737
|
*/
|
|
1760
1738
|
'accountId': string;
|
|
1739
|
+
'internalAccountId'?: string | null;
|
|
1761
1740
|
/**
|
|
1762
1741
|
* User-broker connection identifier
|
|
1763
1742
|
*/
|
|
@@ -1997,6 +1976,8 @@ interface FDXBrokerPositionLot {
|
|
|
1997
1976
|
* Broker account identifier
|
|
1998
1977
|
*/
|
|
1999
1978
|
'accountId': string;
|
|
1979
|
+
'internalAccountId'?: string | null;
|
|
1980
|
+
'connectionId'?: string | null;
|
|
2000
1981
|
/**
|
|
2001
1982
|
* Security identifier
|
|
2002
1983
|
*/
|
|
@@ -3367,7 +3348,7 @@ declare const BrokersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3367
3348
|
* @summary Get Balances
|
|
3368
3349
|
* @param {string | null} [brokerId] Filter by broker ID
|
|
3369
3350
|
* @param {string | null} [connectionId] Filter by connection ID
|
|
3370
|
-
* @param {string | null} [accountId] Filter by broker provided account ID
|
|
3351
|
+
* @param {string | null} [accountId] Filter by broker provided account ID or internal account UUID
|
|
3371
3352
|
* @param {boolean | null} [isEndOfDaySnapshot] Filter by end-of-day snapshot status (true/false)
|
|
3372
3353
|
* @param {number} [limit] Maximum number of balances to return
|
|
3373
3354
|
* @param {number} [offset] Number of balances to skip for pagination
|
|
@@ -3428,9 +3409,9 @@ declare const BrokersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3428
3409
|
* @summary Get Orders
|
|
3429
3410
|
* @param {string | null} [brokerId] Filter by broker ID
|
|
3430
3411
|
* @param {string | null} [connectionId] Filter by connection ID
|
|
3431
|
-
* @param {string | null} [accountId] Filter by broker provided account ID
|
|
3412
|
+
* @param {string | null} [accountId] Filter by broker provided account ID or internal account UUID
|
|
3432
3413
|
* @param {string | null} [symbol] Filter by symbol
|
|
3433
|
-
* @param {
|
|
3414
|
+
* @param {string | null} [orderStatus] Filter by order status (e.g., \'filled\', \'pending_new\', \'cancelled\')
|
|
3434
3415
|
* @param {BrokerDataOrderSideEnum | null} [side] Filter by order side (e.g., \'buy\', \'sell\')
|
|
3435
3416
|
* @param {BrokerDataAssetTypeEnum | null} [assetType] Filter by asset type (e.g., \'stock\', \'option\', \'crypto\', \'future\')
|
|
3436
3417
|
* @param {number} [limit] Maximum number of orders to return
|
|
@@ -3441,7 +3422,7 @@ declare const BrokersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3441
3422
|
* @param {*} [options] Override http request option.
|
|
3442
3423
|
* @throws {RequiredError}
|
|
3443
3424
|
*/
|
|
3444
|
-
getOrdersApiV1BrokersDataOrdersGet: (brokerId?: string | null, connectionId?: string | null, accountId?: string | null, symbol?: string | null, orderStatus?:
|
|
3425
|
+
getOrdersApiV1BrokersDataOrdersGet: (brokerId?: string | null, connectionId?: string | null, accountId?: string | null, symbol?: string | null, orderStatus?: string | null, side?: BrokerDataOrderSideEnum | null, assetType?: BrokerDataAssetTypeEnum | null, limit?: number, offset?: number, createdAfter?: string | null, createdBefore?: string | null, includeMetadata?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3445
3426
|
/**
|
|
3446
3427
|
* Get position lot fills for a specific lot. This endpoint returns all fills associated with a specific position lot.
|
|
3447
3428
|
* @summary Get Position Lot Fills
|
|
@@ -3472,7 +3453,7 @@ declare const BrokersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3472
3453
|
* @summary Get Positions
|
|
3473
3454
|
* @param {string | null} [brokerId] Filter by broker ID
|
|
3474
3455
|
* @param {string | null} [connectionId] Filter by connection ID
|
|
3475
|
-
* @param {string | null} [accountId] Filter by broker provided account ID
|
|
3456
|
+
* @param {string | null} [accountId] Filter by broker provided account ID or internal account UUID
|
|
3476
3457
|
* @param {string | null} [symbol] Filter by symbol
|
|
3477
3458
|
* @param {BrokerDataOrderSideEnum | null} [side] Filter by position side (e.g., \'long\', \'short\')
|
|
3478
3459
|
* @param {BrokerDataAssetTypeEnum | null} [assetType] Filter by asset type (e.g., \'stock\', \'option\', \'crypto\', \'future\')
|
|
@@ -3526,7 +3507,7 @@ declare const BrokersApiFp: (configuration?: Configuration) => {
|
|
|
3526
3507
|
* @summary Get Balances
|
|
3527
3508
|
* @param {string | null} [brokerId] Filter by broker ID
|
|
3528
3509
|
* @param {string | null} [connectionId] Filter by connection ID
|
|
3529
|
-
* @param {string | null} [accountId] Filter by broker provided account ID
|
|
3510
|
+
* @param {string | null} [accountId] Filter by broker provided account ID or internal account UUID
|
|
3530
3511
|
* @param {boolean | null} [isEndOfDaySnapshot] Filter by end-of-day snapshot status (true/false)
|
|
3531
3512
|
* @param {number} [limit] Maximum number of balances to return
|
|
3532
3513
|
* @param {number} [offset] Number of balances to skip for pagination
|
|
@@ -3587,9 +3568,9 @@ declare const BrokersApiFp: (configuration?: Configuration) => {
|
|
|
3587
3568
|
* @summary Get Orders
|
|
3588
3569
|
* @param {string | null} [brokerId] Filter by broker ID
|
|
3589
3570
|
* @param {string | null} [connectionId] Filter by connection ID
|
|
3590
|
-
* @param {string | null} [accountId] Filter by broker provided account ID
|
|
3571
|
+
* @param {string | null} [accountId] Filter by broker provided account ID or internal account UUID
|
|
3591
3572
|
* @param {string | null} [symbol] Filter by symbol
|
|
3592
|
-
* @param {
|
|
3573
|
+
* @param {string | null} [orderStatus] Filter by order status (e.g., \'filled\', \'pending_new\', \'cancelled\')
|
|
3593
3574
|
* @param {BrokerDataOrderSideEnum | null} [side] Filter by order side (e.g., \'buy\', \'sell\')
|
|
3594
3575
|
* @param {BrokerDataAssetTypeEnum | null} [assetType] Filter by asset type (e.g., \'stock\', \'option\', \'crypto\', \'future\')
|
|
3595
3576
|
* @param {number} [limit] Maximum number of orders to return
|
|
@@ -3600,7 +3581,7 @@ declare const BrokersApiFp: (configuration?: Configuration) => {
|
|
|
3600
3581
|
* @param {*} [options] Override http request option.
|
|
3601
3582
|
* @throws {RequiredError}
|
|
3602
3583
|
*/
|
|
3603
|
-
getOrdersApiV1BrokersDataOrdersGet(brokerId?: string | null, connectionId?: string | null, accountId?: string | null, symbol?: string | null, orderStatus?:
|
|
3584
|
+
getOrdersApiV1BrokersDataOrdersGet(brokerId?: string | null, connectionId?: string | null, accountId?: string | null, symbol?: string | null, orderStatus?: string | null, side?: BrokerDataOrderSideEnum | null, assetType?: BrokerDataAssetTypeEnum | null, limit?: number, offset?: number, createdAfter?: string | null, createdBefore?: string | null, includeMetadata?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FinaticResponseListFDXBrokerOrder>>;
|
|
3604
3585
|
/**
|
|
3605
3586
|
* Get position lot fills for a specific lot. This endpoint returns all fills associated with a specific position lot.
|
|
3606
3587
|
* @summary Get Position Lot Fills
|
|
@@ -3631,7 +3612,7 @@ declare const BrokersApiFp: (configuration?: Configuration) => {
|
|
|
3631
3612
|
* @summary Get Positions
|
|
3632
3613
|
* @param {string | null} [brokerId] Filter by broker ID
|
|
3633
3614
|
* @param {string | null} [connectionId] Filter by connection ID
|
|
3634
|
-
* @param {string | null} [accountId] Filter by broker provided account ID
|
|
3615
|
+
* @param {string | null} [accountId] Filter by broker provided account ID or internal account UUID
|
|
3635
3616
|
* @param {string | null} [symbol] Filter by symbol
|
|
3636
3617
|
* @param {BrokerDataOrderSideEnum | null} [side] Filter by position side (e.g., \'long\', \'short\')
|
|
3637
3618
|
* @param {BrokerDataAssetTypeEnum | null} [assetType] Filter by asset type (e.g., \'stock\', \'option\', \'crypto\', \'future\')
|
|
@@ -3910,7 +3891,7 @@ interface BrokersApiGetBalancesApiV1BrokersDataBalancesGetRequest {
|
|
|
3910
3891
|
*/
|
|
3911
3892
|
readonly connectionId?: string | null;
|
|
3912
3893
|
/**
|
|
3913
|
-
* Filter by broker provided account ID
|
|
3894
|
+
* Filter by broker provided account ID or internal account UUID
|
|
3914
3895
|
*/
|
|
3915
3896
|
readonly accountId?: string | null;
|
|
3916
3897
|
/**
|
|
@@ -4034,7 +4015,7 @@ interface BrokersApiGetOrdersApiV1BrokersDataOrdersGetRequest {
|
|
|
4034
4015
|
*/
|
|
4035
4016
|
readonly connectionId?: string | null;
|
|
4036
4017
|
/**
|
|
4037
|
-
* Filter by broker provided account ID
|
|
4018
|
+
* Filter by broker provided account ID or internal account UUID
|
|
4038
4019
|
*/
|
|
4039
4020
|
readonly accountId?: string | null;
|
|
4040
4021
|
/**
|
|
@@ -4044,7 +4025,7 @@ interface BrokersApiGetOrdersApiV1BrokersDataOrdersGetRequest {
|
|
|
4044
4025
|
/**
|
|
4045
4026
|
* Filter by order status (e.g., \'filled\', \'pending_new\', \'cancelled\')
|
|
4046
4027
|
*/
|
|
4047
|
-
readonly orderStatus?:
|
|
4028
|
+
readonly orderStatus?: string | null;
|
|
4048
4029
|
/**
|
|
4049
4030
|
* Filter by order side (e.g., \'buy\', \'sell\')
|
|
4050
4031
|
*/
|
|
@@ -4141,7 +4122,7 @@ interface BrokersApiGetPositionsApiV1BrokersDataPositionsGetRequest {
|
|
|
4141
4122
|
*/
|
|
4142
4123
|
readonly connectionId?: string | null;
|
|
4143
4124
|
/**
|
|
4144
|
-
* Filter by broker provided account ID
|
|
4125
|
+
* Filter by broker provided account ID or internal account UUID
|
|
4145
4126
|
*/
|
|
4146
4127
|
readonly accountId?: string | null;
|
|
4147
4128
|
/**
|
|
@@ -4512,6 +4493,21 @@ declare class PaginatedData<T> {
|
|
|
4512
4493
|
* Returns a string representation of an array.
|
|
4513
4494
|
*/
|
|
4514
4495
|
toLocaleString(): string;
|
|
4496
|
+
/**
|
|
4497
|
+
* Convert to JSON - returns just the items array for serialization.
|
|
4498
|
+
* This allows clean serialization without exposing internal methods.
|
|
4499
|
+
*
|
|
4500
|
+
* @returns The items array
|
|
4501
|
+
*
|
|
4502
|
+
* @example
|
|
4503
|
+
* ```typescript
|
|
4504
|
+
* const orders = await sdk.getOrders();
|
|
4505
|
+
* console.log(orders); // Shows full PaginatedData with methods
|
|
4506
|
+
* console.log(orders.toJSON()); // Shows just the items array
|
|
4507
|
+
* JSON.stringify(orders); // Automatically uses toJSON()
|
|
4508
|
+
* ```
|
|
4509
|
+
*/
|
|
4510
|
+
toJSON(): T[];
|
|
4515
4511
|
/**
|
|
4516
4512
|
* Get the next page of data.
|
|
4517
4513
|
* @returns Promise<PaginatedData<T>> - The next page (not wrapped in FinaticResponse)
|
|
@@ -4578,12 +4574,12 @@ interface GetOrdersParams {
|
|
|
4578
4574
|
brokerId?: string;
|
|
4579
4575
|
/** Filter by connection ID */
|
|
4580
4576
|
connectionId?: string;
|
|
4581
|
-
/** Filter by broker provided account ID */
|
|
4577
|
+
/** Filter by broker provided account ID or internal account UUID */
|
|
4582
4578
|
accountId?: string;
|
|
4583
4579
|
/** Filter by symbol */
|
|
4584
4580
|
symbol?: string;
|
|
4585
4581
|
/** Filter by order status (e.g., 'filled', 'pending_new', 'cancelled') */
|
|
4586
|
-
orderStatus?:
|
|
4582
|
+
orderStatus?: string;
|
|
4587
4583
|
/** Filter by order side (e.g., 'buy', 'sell') */
|
|
4588
4584
|
side?: BrokerDataOrderSideEnum;
|
|
4589
4585
|
/** Filter by asset type (e.g., 'stock', 'option', 'crypto', 'future') */
|
|
@@ -4604,7 +4600,7 @@ interface GetPositionsParams {
|
|
|
4604
4600
|
brokerId?: string;
|
|
4605
4601
|
/** Filter by connection ID */
|
|
4606
4602
|
connectionId?: string;
|
|
4607
|
-
/** Filter by broker provided account ID */
|
|
4603
|
+
/** Filter by broker provided account ID or internal account UUID */
|
|
4608
4604
|
accountId?: string;
|
|
4609
4605
|
/** Filter by symbol */
|
|
4610
4606
|
symbol?: string;
|
|
@@ -4630,7 +4626,7 @@ interface GetBalancesParams {
|
|
|
4630
4626
|
brokerId?: string;
|
|
4631
4627
|
/** Filter by connection ID */
|
|
4632
4628
|
connectionId?: string;
|
|
4633
|
-
/** Filter by broker provided account ID */
|
|
4629
|
+
/** Filter by broker provided account ID or internal account UUID */
|
|
4634
4630
|
accountId?: string;
|
|
4635
4631
|
/** Filter by end-of-day snapshot status (true/false) */
|
|
4636
4632
|
isEndOfDaySnapshot?: boolean;
|
|
@@ -4840,9 +4836,9 @@ declare class BrokersWrapper {
|
|
|
4840
4836
|
* Returns orders from connections the company has read access to.
|
|
4841
4837
|
* @param params.brokerId {string} (optional) Filter by broker ID
|
|
4842
4838
|
* @param params.connectionId {string} (optional) Filter by connection ID
|
|
4843
|
-
* @param params.accountId {string} (optional) Filter by broker provided account ID
|
|
4839
|
+
* @param params.accountId {string} (optional) Filter by broker provided account ID or internal account UUID
|
|
4844
4840
|
* @param params.symbol {string} (optional) Filter by symbol
|
|
4845
|
-
* @param params.orderStatus {
|
|
4841
|
+
* @param params.orderStatus {string} (optional) Filter by order status (e.g., 'filled', 'pending_new', 'cancelled')
|
|
4846
4842
|
* @param params.side {BrokerDataOrderSideEnum} (optional) Filter by order side (e.g., 'buy', 'sell')
|
|
4847
4843
|
* @param params.assetType {BrokerDataAssetTypeEnum} (optional) Filter by asset type (e.g., 'stock', 'option', 'crypto', 'future')
|
|
4848
4844
|
* @param params.limit {number} (optional) Maximum number of orders to return
|
|
@@ -4895,7 +4891,7 @@ declare class BrokersWrapper {
|
|
|
4895
4891
|
* Returns positions from connections the company has read access to.
|
|
4896
4892
|
* @param params.brokerId {string} (optional) Filter by broker ID
|
|
4897
4893
|
* @param params.connectionId {string} (optional) Filter by connection ID
|
|
4898
|
-
* @param params.accountId {string} (optional) Filter by broker provided account ID
|
|
4894
|
+
* @param params.accountId {string} (optional) Filter by broker provided account ID or internal account UUID
|
|
4899
4895
|
* @param params.symbol {string} (optional) Filter by symbol
|
|
4900
4896
|
* @param params.side {BrokerDataOrderSideEnum} (optional) Filter by position side (e.g., 'long', 'short')
|
|
4901
4897
|
* @param params.assetType {BrokerDataAssetTypeEnum} (optional) Filter by asset type (e.g., 'stock', 'option', 'crypto', 'future')
|
|
@@ -4950,7 +4946,7 @@ declare class BrokersWrapper {
|
|
|
4950
4946
|
* Returns balances from connections the company has read access to.
|
|
4951
4947
|
* @param params.brokerId {string} (optional) Filter by broker ID
|
|
4952
4948
|
* @param params.connectionId {string} (optional) Filter by connection ID
|
|
4953
|
-
* @param params.accountId {string} (optional) Filter by broker provided account ID
|
|
4949
|
+
* @param params.accountId {string} (optional) Filter by broker provided account ID or internal account UUID
|
|
4954
4950
|
* @param params.isEndOfDaySnapshot {boolean} (optional) Filter by end-of-day snapshot status (true/false)
|
|
4955
4951
|
* @param params.limit {number} (optional) Maximum number of balances to return
|
|
4956
4952
|
* @param params.offset {number} (optional) Number of balances to skip for pagination
|
|
@@ -7855,5 +7851,5 @@ declare class FinaticConnect extends FinaticConnect$1 {
|
|
|
7855
7851
|
static readonly __CUSTOM_CLASS__ = true;
|
|
7856
7852
|
}
|
|
7857
7853
|
|
|
7858
|
-
export { AccountStatus, ApiError, BrokerDataAccountTypeEnum, BrokerDataAssetTypeEnum, BrokerDataOrderSideEnum,
|
|
7854
|
+
export { AccountStatus, ApiError, BrokerDataAccountTypeEnum, BrokerDataAssetTypeEnum, BrokerDataOrderSideEnum, BrokerDataPositionStatusEnum, BrokersApi, BrokersApiAxiosParamCreator, BrokersApiFactory, BrokersApiFp, BrokersWrapper, CompanyApi, CompanyApiAxiosParamCreator, CompanyApiFactory, CompanyApiFp, CompanyWrapper, Configuration, EventEmitter, FDXAccountStatus, FDXAccountType, FDXAssetType, FDXBalanceType, FDXOrderClass, FDXOrderEventType, FDXOrderGroupType, FDXOrderSide, FDXOrderStatus, FDXOrderType, FDXPositionSide, FDXPositionStatus, FDXSecurityIdType, FDXTimeInForce, FinaticConnect, PaginatedData, SessionApi, SessionApiAxiosParamCreator, SessionApiFactory, SessionApiFp, SessionStatus, SessionWrapper, ValidationError, addErrorInterceptor, addRequestInterceptor, addResponseInterceptor, appendBrokerFilterToURL, appendThemeToURL, applyErrorInterceptors, applyRequestInterceptors, applyResponseInterceptors, coerceEnumValue, convertToPlainObject, defaultConfig, generateCacheKey, generateRequestId, getCache, getConfig, getLogger, handleError, numberSchema, retryApiCall, stringSchema, unwrapAxiosResponse, validateParams };
|
|
7859
7855
|
export type { Accounttype, ValidationError$1 as ApiValidationError, Assettype, Availablebalance, Availabletowithdraw, Averagebuyprice, Averagefillprice, Averagesellprice, Balancetype, BrokerInfo, BrokersApiDisconnectCompanyFromBrokerApiV1BrokersDisconnectCompanyConnectionIdDeleteRequest, BrokersApiGetAccountsApiV1BrokersDataAccountsGetRequest, BrokersApiGetBalancesApiV1BrokersDataBalancesGetRequest, BrokersApiGetOrderEventsApiV1BrokersDataOrdersOrderIdEventsGetRequest, BrokersApiGetOrderFillsApiV1BrokersDataOrdersOrderIdFillsGetRequest, BrokersApiGetOrderGroupsApiV1BrokersDataOrdersGroupsGetRequest, BrokersApiGetOrdersApiV1BrokersDataOrdersGetRequest, BrokersApiGetPositionLotFillsApiV1BrokersDataPositionsLotsLotIdFillsGetRequest, BrokersApiGetPositionLotsApiV1BrokersDataPositionsLotsGetRequest, BrokersApiGetPositionsApiV1BrokersDataPositionsGetRequest, BrokersApiInterface, Buyingpower, Cashbalance, Closedquantity, Closepriceavg, Commission, Commissionshare, CompanyApiGetCompanyApiV1CompanyCompanyIdGet0Request, CompanyApiGetCompanyApiV1CompanyCompanyIdGetRequest, CompanyApiInterface, CompanyResponse, ConfigurationParameters, Costbasis, Costbasis1, Costbasiswithcommission, Costbasiswithcommission1, Currentbalance, Currentprice, DisconnectActionResult, ErrorInterceptor, Eventtype, FDXBrokerAccount, FDXBrokerBalance, FDXBrokerOrder, FDXBrokerOrderEvent, FDXBrokerOrderFill, FDXBrokerOrderGroup, FDXBrokerPosition, FDXBrokerPositionLot, FDXBrokerPositionLotFill, FDXOrderGroupOrder, FDXOrderLeg, Filledquantity, Fillprice, Fillquantity, FinaticConnectOptions, FinaticResponse$3 as FinaticResponse, FinaticResponseCompanyResponse, FinaticResponseDisconnectActionResult, FinaticResponseListBrokerInfo, FinaticResponseListFDXBrokerAccount, FinaticResponseListFDXBrokerBalance, FinaticResponseListFDXBrokerOrder, FinaticResponseListFDXBrokerOrderEvent, FinaticResponseListFDXBrokerOrderFill, FinaticResponseListFDXBrokerOrderGroup, FinaticResponseListFDXBrokerPosition, FinaticResponseListFDXBrokerPositionLot, FinaticResponseListFDXBrokerPositionLotFill, FinaticResponseListUserBrokerConnectionWithPermissions, FinaticResponsePortalUrlResponse, FinaticResponseSessionResponseData, FinaticResponseSessionUserResponse, FinaticResponseTokenResponseData, Futureunderlyingassettype, Grouptype, HTTPValidationError, Initialmargin, InterceptorChain, Limitprice, LogLevel, Logger, Maintenancemargin, Marketvalue, Netliquidationvalue, Openprice, Openquantity, Orderclass, Orderstatus, Ordertype, PaginationMeta, ParsedFinaticError, Pendingbalance, PortalUrlResponse, Previousstatus, Price, Quantity, Quantity1, Quantity2, Realizedprofitloss, Realizedprofitloss1, Realizedprofitlosspercent, Realizedprofitlosswithcommission, Realizedprofitlosswithcommission1, Remainingquantity, Remainingquantity1, RequestInterceptor, ResponseInterceptor, RetryOptions, SdkConfig, Securityidtype, SessionApiGetPortalUrlApiV1SessionPortalGetRequest, SessionApiGetSessionUserApiV1SessionSessionIdUserGetRequest, SessionApiInitSessionApiV1SessionInitPostRequest, SessionApiInterface, SessionApiStartSessionApiV1SessionStartPostRequest, SessionResponseData, SessionStartRequest, SessionUserResponse, Side, Side1, Side2, Side3, Status, Status1, Stopprice, Strikeprice, SuccessPayloadCompanyResponse, SuccessPayloadDisconnectActionResult, SuccessPayloadListBrokerInfo, SuccessPayloadListFDXBrokerAccount, SuccessPayloadListFDXBrokerBalance, SuccessPayloadListFDXBrokerOrder, SuccessPayloadListFDXBrokerOrderEvent, SuccessPayloadListFDXBrokerOrderFill, SuccessPayloadListFDXBrokerOrderGroup, SuccessPayloadListFDXBrokerPosition, SuccessPayloadListFDXBrokerPositionLot, SuccessPayloadListFDXBrokerPositionLotFill, SuccessPayloadListUserBrokerConnectionWithPermissions, SuccessPayloadPortalUrlResponse, SuccessPayloadSessionResponseData, SuccessPayloadSessionUserResponse, SuccessPayloadTokenResponseData, Timeinforce, TokenResponseData, Totalcashvalue, Totalrealizedpnl, Units, Unrealizedprofitloss, Unrealizedprofitlosspercent, UserBrokerConnectionWithPermissions, ValidationErrorLocInner };
|