snaptrade-typescript-sdk 9.0.16 → 9.0.18

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/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  Connect brokerage accounts to your app for live positions and trading
8
8
 
9
- [![npm](https://img.shields.io/badge/npm-v9.0.16-blue)](https://www.npmjs.com/package/snaptrade-typescript-sdk/v/9.0.16)
9
+ [![npm](https://img.shields.io/badge/npm-v9.0.18-blue)](https://www.npmjs.com/package/snaptrade-typescript-sdk/v/9.0.18)
10
10
  [![More Info](https://img.shields.io/badge/More%20Info-Click%20Here-orange)](https://snaptrade.com/)
11
11
 
12
12
  </div>
@@ -344,7 +344,7 @@ Number of days in the past to fetch the most recent orders. Defaults to the last
344
344
 
345
345
  ### `snaptrade.accountInformation.getUserAccountPositions`<a id="snaptradeaccountinformationgetuseraccountpositions"></a>
346
346
 
347
- Returns a list of positions in the the specified account.
347
+ Returns a list of positions in the specified account.
348
348
 
349
349
  #### 🛠️ Usage<a id="🛠️-usage"></a>
350
350
 
@@ -737,7 +737,7 @@ SnapTrade User Secret randomly generated by SnapTrade. This should be considered
737
737
 
738
738
  ### `snaptrade.connections.detailBrokerageAuthorization`<a id="snaptradeconnectionsdetailbrokerageauthorization"></a>
739
739
 
740
- Get brokerage authorization details
740
+ Returns a single brokerage authorization object for the specified ID.
741
741
 
742
742
  #### 🛠️ Usage<a id="🛠️-usage"></a>
743
743
 
@@ -775,7 +775,7 @@ The ID of a brokerage authorization object.
775
775
 
776
776
  ### `snaptrade.connections.listBrokerageAuthorizations`<a id="snaptradeconnectionslistbrokerageauthorizations"></a>
777
777
 
778
- List all brokerage authorizations for the user
778
+ Returns a list of Brokerage Autherization objects for the specified userId.
779
779
 
780
780
  #### 🛠️ Usage<a id="🛠️-usage"></a>
781
781
 
@@ -808,7 +808,7 @@ const listBrokerageAuthorizationsResponse =
808
808
 
809
809
  ### `snaptrade.connections.removeBrokerageAuthorization`<a id="snaptradeconnectionsremovebrokerageauthorization"></a>
810
810
 
811
- Delete brokerage authorization
811
+ Deletes a specified brokerage authorization given by the ID.
812
812
 
813
813
  #### 🛠️ Usage<a id="🛠️-usage"></a>
814
814
 
@@ -842,7 +842,7 @@ The ID of the Authorization to delete.
842
842
 
843
843
  ### `snaptrade.connections.sessionEvents`<a id="snaptradeconnectionssessionevents"></a>
844
844
 
845
- List all session events for the partner
845
+ Returns a list of session events associated with a user.
846
846
 
847
847
  #### 🛠️ Usage<a id="🛠️-usage"></a>
848
848
 
@@ -883,7 +883,8 @@ Optional comma seperated list of session IDs used to filter the request on speci
883
883
 
884
884
  ### `snaptrade.options.getOptionStrategy`<a id="snaptradeoptionsgetoptionstrategy"></a>
885
885
 
886
- Creates an option strategy object that will be used to place an option strategy order
886
+ Creates an option strategy object that will be used to place an option strategy order.
887
+
887
888
 
888
889
  #### 🛠️ Usage<a id="🛠️-usage"></a>
889
890
 
@@ -935,7 +936,7 @@ The ID of the account to create the option strategy object in.
935
936
 
936
937
  ### `snaptrade.options.getOptionsChain`<a id="snaptradeoptionsgetoptionschain"></a>
937
938
 
938
- Get the options chain
939
+ Returns the option chain for the specified symbol in the specified account.
939
940
 
940
941
  #### 🛠️ Usage<a id="🛠️-usage"></a>
941
942
 
@@ -977,7 +978,8 @@ Universal symbol ID if symbol
977
978
 
978
979
  ### `snaptrade.options.getOptionsStrategyQuote`<a id="snaptradeoptionsgetoptionsstrategyquote"></a>
979
980
 
980
- Get latest market data of option strategy
981
+ Returns a Strategy Quotes object which has latest market data of the specified option strategy.
982
+
981
983
 
982
984
  #### 🛠️ Usage<a id="🛠️-usage"></a>
983
985
 
@@ -1020,7 +1022,8 @@ Option strategy id obtained from response when creating option strategy object
1020
1022
 
1021
1023
  ### `snaptrade.options.listOptionHoldings`<a id="snaptradeoptionslistoptionholdings"></a>
1022
1024
 
1023
- Get the options holdings in the account
1025
+ Returns a list of Options Positions.
1026
+
1024
1027
 
1025
1028
  #### 🛠️ Usage<a id="🛠️-usage"></a>
1026
1029
 
@@ -1057,7 +1060,7 @@ The ID of the account to fetch options holdings for.
1057
1060
 
1058
1061
  ### `snaptrade.options.placeOptionStrategy`<a id="snaptradeoptionsplaceoptionstrategy"></a>
1059
1062
 
1060
- Place an option strategy order on the brokerage
1063
+ Places the option strategy order and returns the order record received from the brokerage.
1061
1064
 
1062
1065
  #### 🛠️ Usage<a id="🛠️-usage"></a>
1063
1066
 
@@ -56,7 +56,7 @@ export declare const AccountInformationApiAxiosParamCreator: (configuration?: Co
56
56
  */
57
57
  getUserAccountOrders: (userId: string, userSecret: string, accountId: string, state?: 'all' | 'open' | 'executed', days?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
58
58
  /**
59
- * Returns a list of positions in the the specified account.
59
+ * Returns a list of positions in the specified account.
60
60
  * @summary List account positions
61
61
  * @param {string} userId
62
62
  * @param {string} userSecret
@@ -134,7 +134,7 @@ export declare const AccountInformationApiFp: (configuration?: Configuration) =>
134
134
  */
135
135
  getUserAccountOrders(requestParameters: AccountInformationApiGetUserAccountOrdersRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountOrderRecord>>>;
136
136
  /**
137
- * Returns a list of positions in the the specified account.
137
+ * Returns a list of positions in the specified account.
138
138
  * @summary List account positions
139
139
  * @param {AccountInformationApiGetUserAccountPositionsRequest} requestParameters Request parameters.
140
140
  * @param {*} [options] Override http request option.
@@ -205,7 +205,7 @@ export declare const AccountInformationApiFactory: (configuration?: Configuratio
205
205
  */
206
206
  getUserAccountOrders(requestParameters: AccountInformationApiGetUserAccountOrdersRequest, options?: AxiosRequestConfig): AxiosPromise<Array<AccountOrderRecord>>;
207
207
  /**
208
- * Returns a list of positions in the the specified account.
208
+ * Returns a list of positions in the specified account.
209
209
  * @summary List account positions
210
210
  * @param {AccountInformationApiGetUserAccountPositionsRequest} requestParameters Request parameters.
211
211
  * @param {*} [options] Override http request option.
@@ -488,7 +488,7 @@ export declare class AccountInformationApiGenerated extends BaseAPI {
488
488
  */
489
489
  getUserAccountOrders(requestParameters: AccountInformationApiGetUserAccountOrdersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountOrderRecord[], any>>;
490
490
  /**
491
- * Returns a list of positions in the the specified account.
491
+ * Returns a list of positions in the specified account.
492
492
  * @summary List account positions
493
493
  * @param {AccountInformationApiGetUserAccountPositionsRequest} requestParameters Request parameters.
494
494
  * @param {*} [options] Override http request option.
@@ -265,7 +265,7 @@ const AccountInformationApiAxiosParamCreator = function (configuration) {
265
265
  };
266
266
  }),
267
267
  /**
268
- * Returns a list of positions in the the specified account.
268
+ * Returns a list of positions in the specified account.
269
269
  * @summary List account positions
270
270
  * @param {string} userId
271
271
  * @param {string} userSecret
@@ -544,7 +544,7 @@ const AccountInformationApiFp = function (configuration) {
544
544
  });
545
545
  },
546
546
  /**
547
- * Returns a list of positions in the the specified account.
547
+ * Returns a list of positions in the specified account.
548
548
  * @summary List account positions
549
549
  * @param {AccountInformationApiGetUserAccountPositionsRequest} requestParameters Request parameters.
550
550
  * @param {*} [options] Override http request option.
@@ -647,7 +647,7 @@ const AccountInformationApiFactory = function (configuration, basePath, axios) {
647
647
  return localVarFp.getUserAccountOrders(requestParameters, options).then((request) => request(axios, basePath));
648
648
  },
649
649
  /**
650
- * Returns a list of positions in the the specified account.
650
+ * Returns a list of positions in the specified account.
651
651
  * @summary List account positions
652
652
  * @param {AccountInformationApiGetUserAccountPositionsRequest} requestParameters Request parameters.
653
653
  * @param {*} [options] Override http request option.
@@ -742,7 +742,7 @@ class AccountInformationApiGenerated extends base_1.BaseAPI {
742
742
  return (0, exports.AccountInformationApiFp)(this.configuration).getUserAccountOrders(requestParameters, options).then((request) => request(this.axios, this.basePath));
743
743
  }
744
744
  /**
745
- * Returns a list of positions in the the specified account.
745
+ * Returns a list of positions in the specified account.
746
746
  * @summary List account positions
747
747
  * @param {AccountInformationApiGetUserAccountPositionsRequest} requestParameters Request parameters.
748
748
  * @param {*} [options] Override http request option.
@@ -9,7 +9,7 @@ import { ConnectionsSessionEvents200ResponseInner } from '../models';
9
9
  */
10
10
  export declare const ConnectionsApiAxiosParamCreator: (configuration?: Configuration) => {
11
11
  /**
12
- *
12
+ * Returns a single brokerage authorization object for the specified ID.
13
13
  * @summary Get brokerage authorization details
14
14
  * @param {string} authorizationId The ID of a brokerage authorization object.
15
15
  * @param {string} userId
@@ -19,8 +19,8 @@ export declare const ConnectionsApiAxiosParamCreator: (configuration?: Configura
19
19
  */
20
20
  detailBrokerageAuthorization: (authorizationId: string, userId: string, userSecret: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21
21
  /**
22
- *
23
- * @summary List all brokerage authorizations for the user
22
+ * Returns a list of Brokerage Autherization objects for the specified userId.
23
+ * @summary List all brokerage authorizations for the User
24
24
  * @param {string} userId
25
25
  * @param {string} userSecret
26
26
  * @param {*} [options] Override http request option.
@@ -28,7 +28,7 @@ export declare const ConnectionsApiAxiosParamCreator: (configuration?: Configura
28
28
  */
29
29
  listBrokerageAuthorizations: (userId: string, userSecret: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
30
30
  /**
31
- *
31
+ * Deletes a specified brokerage authorization given by the ID.
32
32
  * @summary Delete brokerage authorization
33
33
  * @param {string} authorizationId The ID of the Authorization to delete.
34
34
  * @param {string} userId
@@ -38,8 +38,8 @@ export declare const ConnectionsApiAxiosParamCreator: (configuration?: Configura
38
38
  */
39
39
  removeBrokerageAuthorization: (authorizationId: string, userId: string, userSecret: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
40
40
  /**
41
- *
42
- * @summary List all session events for the partner
41
+ * Returns a list of session events associated with a user.
42
+ * @summary Get all session events for a user
43
43
  * @param {string} partnerClientId
44
44
  * @param {string} [userId] Optional comma seperated list of user IDs used to filter the request on specific users
45
45
  * @param {string} [sessionId] Optional comma seperated list of session IDs used to filter the request on specific users
@@ -54,7 +54,7 @@ export declare const ConnectionsApiAxiosParamCreator: (configuration?: Configura
54
54
  */
55
55
  export declare const ConnectionsApiFp: (configuration?: Configuration) => {
56
56
  /**
57
- *
57
+ * Returns a single brokerage authorization object for the specified ID.
58
58
  * @summary Get brokerage authorization details
59
59
  * @param {ConnectionsApiDetailBrokerageAuthorizationRequest} requestParameters Request parameters.
60
60
  * @param {*} [options] Override http request option.
@@ -62,15 +62,15 @@ export declare const ConnectionsApiFp: (configuration?: Configuration) => {
62
62
  */
63
63
  detailBrokerageAuthorization(requestParameters: ConnectionsApiDetailBrokerageAuthorizationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrokerageAuthorization>>;
64
64
  /**
65
- *
66
- * @summary List all brokerage authorizations for the user
65
+ * Returns a list of Brokerage Autherization objects for the specified userId.
66
+ * @summary List all brokerage authorizations for the User
67
67
  * @param {ConnectionsApiListBrokerageAuthorizationsRequest} requestParameters Request parameters.
68
68
  * @param {*} [options] Override http request option.
69
69
  * @throws {RequiredError}
70
70
  */
71
71
  listBrokerageAuthorizations(requestParameters: ConnectionsApiListBrokerageAuthorizationsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BrokerageAuthorization>>>;
72
72
  /**
73
- *
73
+ * Deletes a specified brokerage authorization given by the ID.
74
74
  * @summary Delete brokerage authorization
75
75
  * @param {ConnectionsApiRemoveBrokerageAuthorizationRequest} requestParameters Request parameters.
76
76
  * @param {*} [options] Override http request option.
@@ -78,8 +78,8 @@ export declare const ConnectionsApiFp: (configuration?: Configuration) => {
78
78
  */
79
79
  removeBrokerageAuthorization(requestParameters: ConnectionsApiRemoveBrokerageAuthorizationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
80
80
  /**
81
- *
82
- * @summary List all session events for the partner
81
+ * Returns a list of session events associated with a user.
82
+ * @summary Get all session events for a user
83
83
  * @param {ConnectionsApiSessionEventsRequest} requestParameters Request parameters.
84
84
  * @param {*} [options] Override http request option.
85
85
  * @throws {RequiredError}
@@ -92,7 +92,7 @@ export declare const ConnectionsApiFp: (configuration?: Configuration) => {
92
92
  */
93
93
  export declare const ConnectionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
94
94
  /**
95
- *
95
+ * Returns a single brokerage authorization object for the specified ID.
96
96
  * @summary Get brokerage authorization details
97
97
  * @param {ConnectionsApiDetailBrokerageAuthorizationRequest} requestParameters Request parameters.
98
98
  * @param {*} [options] Override http request option.
@@ -100,15 +100,15 @@ export declare const ConnectionsApiFactory: (configuration?: Configuration, base
100
100
  */
101
101
  detailBrokerageAuthorization(requestParameters: ConnectionsApiDetailBrokerageAuthorizationRequest, options?: AxiosRequestConfig): AxiosPromise<BrokerageAuthorization>;
102
102
  /**
103
- *
104
- * @summary List all brokerage authorizations for the user
103
+ * Returns a list of Brokerage Autherization objects for the specified userId.
104
+ * @summary List all brokerage authorizations for the User
105
105
  * @param {ConnectionsApiListBrokerageAuthorizationsRequest} requestParameters Request parameters.
106
106
  * @param {*} [options] Override http request option.
107
107
  * @throws {RequiredError}
108
108
  */
109
109
  listBrokerageAuthorizations(requestParameters: ConnectionsApiListBrokerageAuthorizationsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<BrokerageAuthorization>>;
110
110
  /**
111
- *
111
+ * Deletes a specified brokerage authorization given by the ID.
112
112
  * @summary Delete brokerage authorization
113
113
  * @param {ConnectionsApiRemoveBrokerageAuthorizationRequest} requestParameters Request parameters.
114
114
  * @param {*} [options] Override http request option.
@@ -116,8 +116,8 @@ export declare const ConnectionsApiFactory: (configuration?: Configuration, base
116
116
  */
117
117
  removeBrokerageAuthorization(requestParameters: ConnectionsApiRemoveBrokerageAuthorizationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
118
118
  /**
119
- *
120
- * @summary List all session events for the partner
119
+ * Returns a list of session events associated with a user.
120
+ * @summary Get all session events for a user
121
121
  * @param {ConnectionsApiSessionEventsRequest} requestParameters Request parameters.
122
122
  * @param {*} [options] Override http request option.
123
123
  * @throws {RequiredError}
@@ -226,7 +226,7 @@ export type ConnectionsApiSessionEventsRequest = {
226
226
  */
227
227
  export declare class ConnectionsApiGenerated extends BaseAPI {
228
228
  /**
229
- *
229
+ * Returns a single brokerage authorization object for the specified ID.
230
230
  * @summary Get brokerage authorization details
231
231
  * @param {ConnectionsApiDetailBrokerageAuthorizationRequest} requestParameters Request parameters.
232
232
  * @param {*} [options] Override http request option.
@@ -235,8 +235,8 @@ export declare class ConnectionsApiGenerated extends BaseAPI {
235
235
  */
236
236
  detailBrokerageAuthorization(requestParameters: ConnectionsApiDetailBrokerageAuthorizationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BrokerageAuthorization, any>>;
237
237
  /**
238
- *
239
- * @summary List all brokerage authorizations for the user
238
+ * Returns a list of Brokerage Autherization objects for the specified userId.
239
+ * @summary List all brokerage authorizations for the User
240
240
  * @param {ConnectionsApiListBrokerageAuthorizationsRequest} requestParameters Request parameters.
241
241
  * @param {*} [options] Override http request option.
242
242
  * @throws {RequiredError}
@@ -244,7 +244,7 @@ export declare class ConnectionsApiGenerated extends BaseAPI {
244
244
  */
245
245
  listBrokerageAuthorizations(requestParameters: ConnectionsApiListBrokerageAuthorizationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BrokerageAuthorization[], any>>;
246
246
  /**
247
- *
247
+ * Deletes a specified brokerage authorization given by the ID.
248
248
  * @summary Delete brokerage authorization
249
249
  * @param {ConnectionsApiRemoveBrokerageAuthorizationRequest} requestParameters Request parameters.
250
250
  * @param {*} [options] Override http request option.
@@ -253,8 +253,8 @@ export declare class ConnectionsApiGenerated extends BaseAPI {
253
253
  */
254
254
  removeBrokerageAuthorization(requestParameters: ConnectionsApiRemoveBrokerageAuthorizationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
255
255
  /**
256
- *
257
- * @summary List all session events for the partner
256
+ * Returns a list of session events associated with a user.
257
+ * @summary Get all session events for a user
258
258
  * @param {ConnectionsApiSessionEventsRequest} requestParameters Request parameters.
259
259
  * @param {*} [options] Override http request option.
260
260
  * @throws {RequiredError}
@@ -36,7 +36,7 @@ const requestBeforeHook_1 = require("../requestBeforeHook");
36
36
  const ConnectionsApiAxiosParamCreator = function (configuration) {
37
37
  return {
38
38
  /**
39
- *
39
+ * Returns a single brokerage authorization object for the specified ID.
40
40
  * @summary Get brokerage authorization details
41
41
  * @param {string} authorizationId The ID of a brokerage authorization object.
42
42
  * @param {string} userId
@@ -91,8 +91,8 @@ const ConnectionsApiAxiosParamCreator = function (configuration) {
91
91
  };
92
92
  }),
93
93
  /**
94
- *
95
- * @summary List all brokerage authorizations for the user
94
+ * Returns a list of Brokerage Autherization objects for the specified userId.
95
+ * @summary List all brokerage authorizations for the User
96
96
  * @param {string} userId
97
97
  * @param {string} userSecret
98
98
  * @param {*} [options] Override http request option.
@@ -142,7 +142,7 @@ const ConnectionsApiAxiosParamCreator = function (configuration) {
142
142
  };
143
143
  }),
144
144
  /**
145
- *
145
+ * Deletes a specified brokerage authorization given by the ID.
146
146
  * @summary Delete brokerage authorization
147
147
  * @param {string} authorizationId The ID of the Authorization to delete.
148
148
  * @param {string} userId
@@ -197,8 +197,8 @@ const ConnectionsApiAxiosParamCreator = function (configuration) {
197
197
  };
198
198
  }),
199
199
  /**
200
- *
201
- * @summary List all session events for the partner
200
+ * Returns a list of session events associated with a user.
201
+ * @summary Get all session events for a user
202
202
  * @param {string} partnerClientId
203
203
  * @param {string} [userId] Optional comma seperated list of user IDs used to filter the request on specific users
204
204
  * @param {string} [sessionId] Optional comma seperated list of session IDs used to filter the request on specific users
@@ -260,7 +260,7 @@ const ConnectionsApiFp = function (configuration) {
260
260
  const localVarAxiosParamCreator = (0, exports.ConnectionsApiAxiosParamCreator)(configuration);
261
261
  return {
262
262
  /**
263
- *
263
+ * Returns a single brokerage authorization object for the specified ID.
264
264
  * @summary Get brokerage authorization details
265
265
  * @param {ConnectionsApiDetailBrokerageAuthorizationRequest} requestParameters Request parameters.
266
266
  * @param {*} [options] Override http request option.
@@ -273,8 +273,8 @@ const ConnectionsApiFp = function (configuration) {
273
273
  });
274
274
  },
275
275
  /**
276
- *
277
- * @summary List all brokerage authorizations for the user
276
+ * Returns a list of Brokerage Autherization objects for the specified userId.
277
+ * @summary List all brokerage authorizations for the User
278
278
  * @param {ConnectionsApiListBrokerageAuthorizationsRequest} requestParameters Request parameters.
279
279
  * @param {*} [options] Override http request option.
280
280
  * @throws {RequiredError}
@@ -286,7 +286,7 @@ const ConnectionsApiFp = function (configuration) {
286
286
  });
287
287
  },
288
288
  /**
289
- *
289
+ * Deletes a specified brokerage authorization given by the ID.
290
290
  * @summary Delete brokerage authorization
291
291
  * @param {ConnectionsApiRemoveBrokerageAuthorizationRequest} requestParameters Request parameters.
292
292
  * @param {*} [options] Override http request option.
@@ -299,8 +299,8 @@ const ConnectionsApiFp = function (configuration) {
299
299
  });
300
300
  },
301
301
  /**
302
- *
303
- * @summary List all session events for the partner
302
+ * Returns a list of session events associated with a user.
303
+ * @summary Get all session events for a user
304
304
  * @param {ConnectionsApiSessionEventsRequest} requestParameters Request parameters.
305
305
  * @param {*} [options] Override http request option.
306
306
  * @throws {RequiredError}
@@ -322,7 +322,7 @@ const ConnectionsApiFactory = function (configuration, basePath, axios) {
322
322
  const localVarFp = (0, exports.ConnectionsApiFp)(configuration);
323
323
  return {
324
324
  /**
325
- *
325
+ * Returns a single brokerage authorization object for the specified ID.
326
326
  * @summary Get brokerage authorization details
327
327
  * @param {ConnectionsApiDetailBrokerageAuthorizationRequest} requestParameters Request parameters.
328
328
  * @param {*} [options] Override http request option.
@@ -332,8 +332,8 @@ const ConnectionsApiFactory = function (configuration, basePath, axios) {
332
332
  return localVarFp.detailBrokerageAuthorization(requestParameters, options).then((request) => request(axios, basePath));
333
333
  },
334
334
  /**
335
- *
336
- * @summary List all brokerage authorizations for the user
335
+ * Returns a list of Brokerage Autherization objects for the specified userId.
336
+ * @summary List all brokerage authorizations for the User
337
337
  * @param {ConnectionsApiListBrokerageAuthorizationsRequest} requestParameters Request parameters.
338
338
  * @param {*} [options] Override http request option.
339
339
  * @throws {RequiredError}
@@ -342,7 +342,7 @@ const ConnectionsApiFactory = function (configuration, basePath, axios) {
342
342
  return localVarFp.listBrokerageAuthorizations(requestParameters, options).then((request) => request(axios, basePath));
343
343
  },
344
344
  /**
345
- *
345
+ * Deletes a specified brokerage authorization given by the ID.
346
346
  * @summary Delete brokerage authorization
347
347
  * @param {ConnectionsApiRemoveBrokerageAuthorizationRequest} requestParameters Request parameters.
348
348
  * @param {*} [options] Override http request option.
@@ -352,8 +352,8 @@ const ConnectionsApiFactory = function (configuration, basePath, axios) {
352
352
  return localVarFp.removeBrokerageAuthorization(requestParameters, options).then((request) => request(axios, basePath));
353
353
  },
354
354
  /**
355
- *
356
- * @summary List all session events for the partner
355
+ * Returns a list of session events associated with a user.
356
+ * @summary Get all session events for a user
357
357
  * @param {ConnectionsApiSessionEventsRequest} requestParameters Request parameters.
358
358
  * @param {*} [options] Override http request option.
359
359
  * @throws {RequiredError}
@@ -372,7 +372,7 @@ exports.ConnectionsApiFactory = ConnectionsApiFactory;
372
372
  */
373
373
  class ConnectionsApiGenerated extends base_1.BaseAPI {
374
374
  /**
375
- *
375
+ * Returns a single brokerage authorization object for the specified ID.
376
376
  * @summary Get brokerage authorization details
377
377
  * @param {ConnectionsApiDetailBrokerageAuthorizationRequest} requestParameters Request parameters.
378
378
  * @param {*} [options] Override http request option.
@@ -383,8 +383,8 @@ class ConnectionsApiGenerated extends base_1.BaseAPI {
383
383
  return (0, exports.ConnectionsApiFp)(this.configuration).detailBrokerageAuthorization(requestParameters, options).then((request) => request(this.axios, this.basePath));
384
384
  }
385
385
  /**
386
- *
387
- * @summary List all brokerage authorizations for the user
386
+ * Returns a list of Brokerage Autherization objects for the specified userId.
387
+ * @summary List all brokerage authorizations for the User
388
388
  * @param {ConnectionsApiListBrokerageAuthorizationsRequest} requestParameters Request parameters.
389
389
  * @param {*} [options] Override http request option.
390
390
  * @throws {RequiredError}
@@ -394,7 +394,7 @@ class ConnectionsApiGenerated extends base_1.BaseAPI {
394
394
  return (0, exports.ConnectionsApiFp)(this.configuration).listBrokerageAuthorizations(requestParameters, options).then((request) => request(this.axios, this.basePath));
395
395
  }
396
396
  /**
397
- *
397
+ * Deletes a specified brokerage authorization given by the ID.
398
398
  * @summary Delete brokerage authorization
399
399
  * @param {ConnectionsApiRemoveBrokerageAuthorizationRequest} requestParameters Request parameters.
400
400
  * @param {*} [options] Override http request option.
@@ -405,8 +405,8 @@ class ConnectionsApiGenerated extends base_1.BaseAPI {
405
405
  return (0, exports.ConnectionsApiFp)(this.configuration).removeBrokerageAuthorization(requestParameters, options).then((request) => request(this.axios, this.basePath));
406
406
  }
407
407
  /**
408
- *
409
- * @summary List all session events for the partner
408
+ * Returns a list of session events associated with a user.
409
+ * @summary Get all session events for a user
410
410
  * @param {ConnectionsApiSessionEventsRequest} requestParameters Request parameters.
411
411
  * @param {*} [options] Override http request option.
412
412
  * @throws {RequiredError}