snaptrade-typescript-sdk 9.0.41 → 9.0.43

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.
@@ -32,7 +32,7 @@ class Configuration {
32
32
  this.accessToken = param.accessToken;
33
33
  this.basePath = param.basePath;
34
34
  this.baseOptions = (_a = param.baseOptions) !== null && _a !== void 0 ? _a : {};
35
- this.userAgent = param.userAgent === undefined ? "Konfig/9.0.41/typescript" : param.userAgent;
35
+ this.userAgent = param.userAgent === undefined ? "Konfig/9.0.43/typescript" : param.userAgent;
36
36
  this.formDataCtor = param.formDataCtor;
37
37
  }
38
38
  /**
@@ -14,7 +14,7 @@ export interface OptionsPosition {
14
14
  */
15
15
  'symbol'?: OptionBrokerageSymbol;
16
16
  /**
17
- * Last known market price for the option contract. The freshness of this price depends on the brokerage. Some brokerages provide real-time prices, while others provide delayed prices. It is recommended that you rely on your own third-party market data provider for most up to date prices.
17
+ * Last known market price _per share_ of the option contract. The freshness of this price depends on the brokerage. Some brokerages provide real-time prices, while others provide delayed prices. It is recommended that you rely on your own third-party market data provider for most up to date prices.
18
18
  * @type {number}
19
19
  * @memberof OptionsPosition
20
20
  */
@@ -42,5 +42,5 @@ export interface SnapTradeLoginUserRequestBody {
42
42
  'connectionPortalVersion'?: SnapTradeLoginUserRequestBodyConnectionPortalVersionEnum;
43
43
  }
44
44
  type SnapTradeLoginUserRequestBodyConnectionTypeEnum = 'read' | 'trade';
45
- type SnapTradeLoginUserRequestBodyConnectionPortalVersionEnum = 'v2' | 'v3';
45
+ type SnapTradeLoginUserRequestBodyConnectionPortalVersionEnum = 'v4' | 'v3' | 'v2';
46
46
  export {};
@@ -1,11 +1,11 @@
1
1
  /**
2
- * Symbol query for searching for symbols
2
+ *
3
3
  * @export
4
4
  * @interface SymbolQuery
5
5
  */
6
6
  export interface SymbolQuery {
7
7
  /**
8
- *
8
+ * The search query for symbols.
9
9
  * @type {string}
10
10
  * @memberof SymbolQuery
11
11
  */
@@ -10,7 +10,7 @@ import { UniversalActivitySymbol } from './universal-activity-symbol';
10
10
  export interface UniversalActivity {
11
11
  [key: string]: any;
12
12
  /**
13
- * Unique identifier for the transaction. This is the ID used to reference the transaction in SnapTrade. Please note that this ID _can_ change if the transaction is deleted and re-added. Under normal circumstances, SnapTrade does not delete transactions. The only time this would happen is if SnapTrade re-fetches and reprocesses the data from the brokerage, which is rare. If you require a stable ID, please let us know and we can work with you to provide one.
13
+ * Unique identifier for the transaction. This is the ID used to reference the transaction in SnapTrade. Please note that this ID _can_ change if the transaction is deleted and re-added. Under normal circumstances, SnapTrade does not delete transactions. The only time this would happen is if SnapTrade re-fetches and reprocesses the data from the brokerage, which is rare. If you require a stable ID, please let us know and we can work with you to provide one.
14
14
  * @type {string}
15
15
  * @memberof UniversalActivity
16
16
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snaptrade-typescript-sdk",
3
- "version": "9.0.41",
3
+ "version": "9.0.43",
4
4
  "description": "Client for SnapTrade",
5
5
  "author": "Konfig",
6
6
  "engines": {
@@ -31,7 +31,7 @@
31
31
  "test": "jest"
32
32
  },
33
33
  "dependencies": {
34
- "axios": "1.6.4"
34
+ "axios": "1.7.4"
35
35
  },
36
36
  "resolutions": {
37
37
  "semver": "^7.5.2",