snaptrade 2.0.81 → 2.0.82

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 82376c355a2a349c311263d08ec0aad13c3df4e036b680ec954f5e980a004e25
4
- data.tar.gz: 2406a89a717ced4e3cedb07955734f077563dedfefad548a01901fa56c637670
3
+ metadata.gz: 726ac08ff0ebf2e4a79d3d3f3ed545cd077e0aaa05fd997a9368808bf6c381a2
4
+ data.tar.gz: 0c7fd3f99490b6f4102496e42369e51bec5a2440ef0a686861fd84edbb337d8a
5
5
  SHA512:
6
- metadata.gz: c3661a73efd75c0e616c3594d86cfcc0d3c0b19de7bf1cb6eb879d545a6a9e07d372571af671d182ae2f77fa809c42dc0e1fd0ede1ef1c4ee9725d7f49a3ad2b
7
- data.tar.gz: e2773d20b0373dd111951cfc194e6289bc2f4506876f61aa59d5db645ef9b183ce2545303513144c2e2f9d95fd1c1a8baab5432caff2b1538575b9927d1f77a1
6
+ metadata.gz: a81a563d5ee48f0a4437977c696d3d6608ee28c049b544025b4d7a258165eb4b45ec9fc21a9655e03d8489b9dad796c46299165450211b3050c77508199d76fa
7
+ data.tar.gz: a1aeb621d3136dd90717b116f5685b44377e85aedeec0466534246a78c73632ff9ea46832ed4e0400bbf67c9f9f431fb0022fa653c9c5d3f52544462b45cc122
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- snaptrade (2.0.81)
4
+ snaptrade (2.0.82)
5
5
  faraday (>= 1.0.1, < 3.0)
6
6
  faraday-multipart (~> 1.0, >= 1.0.4)
7
7
 
data/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/gem-v2.0.81-blue)](https://rubygems.org/gems/snaptrade/versions/2.0.81)
9
+ [![npm](https://img.shields.io/badge/gem-v2.0.82-blue)](https://rubygems.org/gems/snaptrade/versions/2.0.82)
10
10
  [![More Info](https://img.shields.io/badge/More%20Info-Click%20Here-orange)](https://snaptrade.com/)
11
11
 
12
12
  </div>
@@ -74,7 +74,7 @@ Connect brokerage accounts to your app for live positions and trading
74
74
  Add to Gemfile:
75
75
 
76
76
  ```ruby
77
- gem 'snaptrade', '~> 2.0.81'
77
+ gem 'snaptrade', '~> 2.0.82'
78
78
  ```
79
79
 
80
80
  ## Getting Started<a id="getting-started"></a>
@@ -1884,6 +1884,8 @@ before responding to the request.
1884
1884
  ### `snaptrade.transactions_and_reporting.get_activities`<a id="snaptradetransactions_and_reportingget_activities"></a>
1885
1885
  ![Deprecated](https://img.shields.io/badge/deprecated-yellow)
1886
1886
 
1887
+ This endpoint is being deprecated but will continue to be available for use via SDKs, please use [the account level endpoint](/reference/Account%20Information/AccountInformation_getAccountActivities) if possible
1888
+
1887
1889
  Returns all historical transactions for the specified user and filtering criteria. It's recommended to use `startDate` and `endDate` to paginate through the data, as the response may be very large for accounts with a long history and/or a lot of activity. There's a max number of 10000 transactions returned per request.
1888
1890
 
1889
1891
  There is no guarantee to the ordering of the transactions returned. Please sort the transactions based on the `trade_date` field if you need them in a specific order.
@@ -19,6 +19,8 @@ module SnapTrade
19
19
 
20
20
  # Get transaction history for a user
21
21
  #
22
+ # This endpoint is being deprecated but will continue to be available for use via SDKs, please use [the account level endpoint](/reference/Account%20Information/AccountInformation_getAccountActivities) if possible
23
+ #
22
24
  # Returns all historical transactions for the specified user and filtering criteria. It's recommended to use `startDate` and `endDate` to paginate through the data, as the response may be very large for accounts with a long history and/or a lot of activity. There's a max number of 10000 transactions returned per request.
23
25
  #
24
26
  # There is no guarantee to the ordering of the transactions returned. Please sort the transactions based on the `trade_date` field if you need them in a specific order.
@@ -45,6 +47,8 @@ module SnapTrade
45
47
 
46
48
  # Get transaction history for a user
47
49
  #
50
+ # This endpoint is being deprecated but will continue to be available for use via SDKs, please use [the account level endpoint](/reference/Account%20Information/AccountInformation_getAccountActivities) if possible
51
+ #
48
52
  # Returns all historical transactions for the specified user and filtering criteria. It's recommended to use `startDate` and `endDate` to paginate through the data, as the response may be very large for accounts with a long history and/or a lot of activity. There's a max number of 10000 transactions returned per request.
49
53
  #
50
54
  # There is no guarantee to the ordering of the transactions returned. Please sort the transactions based on the `trade_date` field if you need them in a specific order.
@@ -69,7 +73,7 @@ module SnapTrade
69
73
  end
70
74
 
71
75
  # Get transaction history for a user
72
- # Returns all historical transactions for the specified user and filtering criteria. It's recommended to use `startDate` and `endDate` to paginate through the data, as the response may be very large for accounts with a long history and/or a lot of activity. There's a max number of 10000 transactions returned per request. There is no guarantee to the ordering of the transactions returned. Please sort the transactions based on the `trade_date` field if you need them in a specific order. The data returned here is always cached and refreshed once a day.
76
+ # This endpoint is being deprecated but will continue to be available for use via SDKs, please use [the account level endpoint](/reference/Account%20Information/AccountInformation_getAccountActivities) if possible Returns all historical transactions for the specified user and filtering criteria. It's recommended to use `startDate` and `endDate` to paginate through the data, as the response may be very large for accounts with a long history and/or a lot of activity. There's a max number of 10000 transactions returned per request. There is no guarantee to the ordering of the transactions returned. Please sort the transactions based on the `trade_date` field if you need them in a specific order. The data returned here is always cached and refreshed once a day.
73
77
  # @param user_id [String]
74
78
  # @param user_secret [String]
75
79
  # @param [Hash] opts the optional parameters
@@ -85,7 +89,7 @@ module SnapTrade
85
89
  end
86
90
 
87
91
  # Get transaction history for a user
88
- # Returns all historical transactions for the specified user and filtering criteria. It&#39;s recommended to use &#x60;startDate&#x60; and &#x60;endDate&#x60; to paginate through the data, as the response may be very large for accounts with a long history and/or a lot of activity. There&#39;s a max number of 10000 transactions returned per request. There is no guarantee to the ordering of the transactions returned. Please sort the transactions based on the &#x60;trade_date&#x60; field if you need them in a specific order. The data returned here is always cached and refreshed once a day.
92
+ # This endpoint is being deprecated but will continue to be available for use via SDKs, please use [the account level endpoint](/reference/Account%20Information/AccountInformation_getAccountActivities) if possible Returns all historical transactions for the specified user and filtering criteria. It&#39;s recommended to use &#x60;startDate&#x60; and &#x60;endDate&#x60; to paginate through the data, as the response may be very large for accounts with a long history and/or a lot of activity. There&#39;s a max number of 10000 transactions returned per request. There is no guarantee to the ordering of the transactions returned. Please sort the transactions based on the &#x60;trade_date&#x60; field if you need them in a specific order. The data returned here is always cached and refreshed once a day.
89
93
  # @param user_id [String]
90
94
  # @param user_secret [String]
91
95
  # @param [Hash] opts the optional parameters
@@ -8,5 +8,5 @@ Contact: api@snaptrade.com
8
8
  =end
9
9
 
10
10
  module SnapTrade
11
- VERSION = '2.0.81'
11
+ VERSION = '2.0.82'
12
12
  end
@@ -29,7 +29,7 @@ describe 'TransactionsAndReportingApi' do
29
29
 
30
30
  # unit tests for get_activities
31
31
  # Get transaction history for a user
32
- # Returns all historical transactions for the specified user and filtering criteria. It&#39;s recommended to use &#x60;startDate&#x60; and &#x60;endDate&#x60; to paginate through the data, as the response may be very large for accounts with a long history and/or a lot of activity. There&#39;s a max number of 10000 transactions returned per request. There is no guarantee to the ordering of the transactions returned. Please sort the transactions based on the &#x60;trade_date&#x60; field if you need them in a specific order. The data returned here is always cached and refreshed once a day.
32
+ # This endpoint is being deprecated but will continue to be available for use via SDKs, please use [the account level endpoint](/reference/Account%20Information/AccountInformation_getAccountActivities) if possible Returns all historical transactions for the specified user and filtering criteria. It&#39;s recommended to use &#x60;startDate&#x60; and &#x60;endDate&#x60; to paginate through the data, as the response may be very large for accounts with a long history and/or a lot of activity. There&#39;s a max number of 10000 transactions returned per request. There is no guarantee to the ordering of the transactions returned. Please sort the transactions based on the &#x60;trade_date&#x60; field if you need them in a specific order. The data returned here is always cached and refreshed once a day.
33
33
  # @param user_id
34
34
  # @param user_secret
35
35
  # @param [Hash] opts the optional parameters
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snaptrade
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.81
4
+ version: 2.0.82
5
5
  platform: ruby
6
6
  authors:
7
7
  - SnapTrade
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-04 00:00:00.000000000 Z
11
+ date: 2025-03-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday