snaptrade 2.0.20 → 2.0.21

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40178dd356fa3c53ef0a09c17cfeccc3ac900992803129689f3df8d605c0aae5
4
- data.tar.gz: 9a1f4f13933f789bb1cf6d69b86195353ad9557c56f5db8ca18b34301aa6a024
3
+ metadata.gz: acd08ff642c28a4f723b0b5e860f88cd83a5ee7e899da6bf8f3ce56baee065fb
4
+ data.tar.gz: 0032e58d20662cbca08a153dad8bd1a1f0e6deab65f50f1329bf31544063fd1a
5
5
  SHA512:
6
- metadata.gz: 52650a4f991bed16a72ead70654b6f58a8b1d774ce567b45363362f446e60b17696b98d217d366c67d056febf28bb6f9db0a0f503f2f088e9423b5ab33fb65fd
7
- data.tar.gz: 9e40c527f3b8b9c7c5e7b0d442544ac89d348583aed99a81ea8dc71c3050278e1ed00db14a79293ffc16a34dae3d5854dd617d440e122ac394008bd7a0bc43ba
6
+ metadata.gz: 950bbd3e6c291bd7d51d057b1916f499fa5050501b4b170756ac4db7403c0117990cde8027b842ef0626af26daac611f5f91ecf494f8314933a14b62e4e8d77b
7
+ data.tar.gz: cab64b4ced9708b773afee7e22b5a3235fc116c620d98e9fd3db57f00b25366484b905a9440a919abe34f6c241e39e3bcd3e6a8a9181c17195d4d44cf3b75042
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- snaptrade (2.0.20)
4
+ snaptrade (2.0.21)
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.20-blue)](https://rubygems.org/gems/snaptrade/versions/2.0.20)
9
+ [![npm](https://img.shields.io/badge/gem-v2.0.21-blue)](https://rubygems.org/gems/snaptrade/versions/2.0.21)
10
10
  [![More Info](https://img.shields.io/badge/More%20Info-Click%20Here-orange)](https://snaptrade.com/)
11
11
 
12
12
  </div>
@@ -69,7 +69,7 @@ Connect brokerage accounts to your app for live positions and trading
69
69
  Add to Gemfile:
70
70
 
71
71
  ```ruby
72
- gem 'snaptrade', '~> 2.0.20'
72
+ gem 'snaptrade', '~> 2.0.21'
73
73
  ```
74
74
 
75
75
  ## Getting Started<a id="getting-started"></a>
@@ -82,7 +82,7 @@ configuration.client_id = ENV["SNAPTRADE_CLIENT_ID"]
82
82
  configuration.consumer_key = ENV["SNAPTRADE_CONSUMER_KEY"]
83
83
  snaptrade = SnapTrade::Client.new(configuration)
84
84
  result = snaptrade.account_information.get_all_user_holdings(
85
- user_id: "John.doe@snaptrade.com",
85
+ user_id: "snaptrade-user-123",
86
86
  user_secret: "USERSECRET123",
87
87
  brokerage_authorizations: "917c8734-8470-4a3e-a18f-57c3f2ee6631",
88
88
  )
@@ -95,7 +95,7 @@ To access the raw HTTP response, suffix any method with `_with_http_info`.
95
95
 
96
96
  ```ruby
97
97
  result = snaptrade.account_information.get_all_user_holdings_with_http_info(
98
- user_id: "John.doe@snaptrade.com",
98
+ user_id: "snaptrade-user-123",
99
99
  user_secret: "USERSECRET123",
100
100
  brokerage_authorizations: "917c8734-8470-4a3e-a18f-57c3f2ee6631",
101
101
  )
@@ -119,7 +119,7 @@ the data returned over the more fine-grained **positions**, **orders** and **bal
119
119
 
120
120
  ```ruby
121
121
  result = snaptrade.account_information.get_all_user_holdings(
122
- user_id: "John.doe@snaptrade.com",
122
+ user_id: "snaptrade-user-123",
123
123
  user_secret: "USERSECRET123",
124
124
  brokerage_authorizations: "917c8734-8470-4a3e-a18f-57c3f2ee6631",
125
125
  )
@@ -155,7 +155,7 @@ A list of account balances for the specified account (one per currency that the
155
155
 
156
156
  ```ruby
157
157
  result = snaptrade.account_information.get_user_account_balance(
158
- user_id: "John.doe@snaptrade.com",
158
+ user_id: "snaptrade-user-123",
159
159
  user_secret: "USERSECRET123",
160
160
  account_id: "917c8734-8470-4a3e-a18f-57c3f2ee6631",
161
161
  )
@@ -192,7 +192,7 @@ including the total account market value.
192
192
 
193
193
  ```ruby
194
194
  result = snaptrade.account_information.get_user_account_details(
195
- user_id: "John.doe@snaptrade.com",
195
+ user_id: "snaptrade-user-123",
196
196
  user_secret: "USERSECRET123",
197
197
  account_id: "917c8734-8470-4a3e-a18f-57c3f2ee6631",
198
198
  )
@@ -227,7 +227,7 @@ Fetch all recent orders from a user's account.
227
227
 
228
228
  ```ruby
229
229
  result = snaptrade.account_information.get_user_account_orders(
230
- user_id: "John.doe@snaptrade.com",
230
+ user_id: "snaptrade-user-123",
231
231
  user_secret: "USERSECRET123",
232
232
  account_id: "917c8734-8470-4a3e-a18f-57c3f2ee6631",
233
233
  state: "all",
@@ -271,7 +271,7 @@ Returns a list of positions in the specified account.
271
271
 
272
272
  ```ruby
273
273
  result = snaptrade.account_information.get_user_account_positions(
274
- user_id: "John.doe@snaptrade.com",
274
+ user_id: "snaptrade-user-123",
275
275
  user_secret: "USERSECRET123",
276
276
  account_id: "917c8734-8470-4a3e-a18f-57c3f2ee6631",
277
277
  )
@@ -310,7 +310,7 @@ data returned over the more fine-grained **positions**, **orders** and **balance
310
310
  ```ruby
311
311
  result = snaptrade.account_information.get_user_holdings(
312
312
  account_id: "917c8734-8470-4a3e-a18f-57c3f2ee6631",
313
- user_id: "John.doe@snaptrade.com",
313
+ user_id: "snaptrade-user-123",
314
314
  user_secret: "USERSECRET123",
315
315
  )
316
316
  p result
@@ -344,7 +344,7 @@ Get a list of all Account objects for the authenticated SnapTrade user.
344
344
 
345
345
  ```ruby
346
346
  result = snaptrade.account_information.list_user_accounts(
347
- user_id: "John.doe@snaptrade.com",
347
+ user_id: "snaptrade-user-123",
348
348
  user_secret: "USERSECRET123",
349
349
  )
350
350
  p result
@@ -375,7 +375,7 @@ Updates various properties of a specified account.
375
375
 
376
376
  ```ruby
377
377
  result = snaptrade.account_information.update_user_account(
378
- user_id: "John.doe@snaptrade.com",
378
+ user_id: "snaptrade-user-123",
379
379
  user_secret: "USERSECRET123",
380
380
  account_id: "accountId_example",
381
381
  )
@@ -434,7 +434,7 @@ Deletes a user you've registered over the SnapTrade API, and any data associated
434
434
 
435
435
  ```ruby
436
436
  result = snaptrade.authentication.delete_snap_trade_user(
437
- user_id: "John.doe@snaptrade.com",
437
+ user_id: "snaptrade-user-123",
438
438
  )
439
439
  p result
440
440
  ```
@@ -465,7 +465,7 @@ JWTs (JSON Web Tokens) instead of standard SnapTrade signature verification.
465
465
 
466
466
  ```ruby
467
467
  result = snaptrade.authentication.get_user_jwt(
468
- user_id: "John.doe@snaptrade.com",
468
+ user_id: "snaptrade-user-123",
469
469
  user_secret: "USERSECRET123",
470
470
  )
471
471
  p result
@@ -516,7 +516,7 @@ Logs in a SnapTrade user and returns an authenticated connection portal URL for
516
516
 
517
517
  ```ruby
518
518
  result = snaptrade.authentication.login_snap_trade_user(
519
- user_id: "John.doe@snaptrade.com",
519
+ user_id: "snaptrade-user-123",
520
520
  user_secret: "USERSECRET123",
521
521
  broker: "ALPACA",
522
522
  immediate_redirect: true,
@@ -584,8 +584,10 @@ p result
584
584
  #### ⚙️ Parameters<a id="⚙️-parameters"></a>
585
585
 
586
586
  ##### userId: `String`<a id="userid-string"></a>
587
- SnapTrade User ID. Provided by SnapTrade Partner. Can be any string, as long as
588
- it's unique to a user
587
+ SnapTrade User ID. This is chosen by the API partner and can be any string that
588
+ is a) unique to the user, and b) immutable for the user. It is recommended to
589
+ NOT use email addresses for this property because they are usually not
590
+ immutable.
589
591
 
590
592
  #### 🔄 Return<a id="🔄-return"></a>
591
593
 
@@ -619,8 +621,10 @@ p result
619
621
  #### ⚙️ Parameters<a id="⚙️-parameters"></a>
620
622
 
621
623
  ##### userId: `String`<a id="userid-string"></a>
622
- SnapTrade User ID. Provided by SnapTrade Partner. Can be any string, as long as
623
- it's unique to a user
624
+ SnapTrade User ID. This is chosen by the API partner and can be any string that
625
+ is a) unique to the user, and b) immutable for the user. It is recommended to
626
+ NOT use email addresses for this property because they are usually not
627
+ immutable.
624
628
 
625
629
  ##### userSecret: `String`<a id="usersecret-string"></a>
626
630
  SnapTrade User Secret randomly generated by SnapTrade. This should be considered
@@ -649,7 +653,7 @@ Returns a single brokerage authorization object for the specified ID.
649
653
  ```ruby
650
654
  result = snaptrade.connections.detail_brokerage_authorization(
651
655
  authorization_id: "2bcd7cc3-e922-4976-bce1-9858296801c3",
652
- user_id: "John.doe@snaptrade.com",
656
+ user_id: "snaptrade-user-123",
653
657
  user_secret: "USERSECRET123",
654
658
  )
655
659
  p result
@@ -683,7 +687,7 @@ Returns a list of Brokerage Authorization objects for the user
683
687
 
684
688
  ```ruby
685
689
  result = snaptrade.connections.list_brokerage_authorizations(
686
- user_id: "John.doe@snaptrade.com",
690
+ user_id: "snaptrade-user-123",
687
691
  user_secret: "USERSECRET123",
688
692
  )
689
693
  p result
@@ -715,7 +719,7 @@ Deletes a specified brokerage authorization given by the ID.
715
719
  ```ruby
716
720
  snaptrade.connections.remove_brokerage_authorization(
717
721
  authorization_id: "2bcd7cc3-e922-4976-bce1-9858296801c3",
718
- user_id: "John.doe@snaptrade.com",
722
+ user_id: "snaptrade-user-123",
719
723
  user_secret: "USERSECRET123",
720
724
  )
721
725
  ```
@@ -793,7 +797,7 @@ result = snaptrade.options.get_option_strategy(
793
797
  }
794
798
  ],
795
799
  strategy_type: "CUSTOM",
796
- user_id: "John.doe@snaptrade.com",
800
+ user_id: "snaptrade-user-123",
797
801
  user_secret: "USERSECRET123",
798
802
  account_id: "accountId_example",
799
803
  )
@@ -831,7 +835,7 @@ Returns the option chain for the specified symbol in the specified account.
831
835
 
832
836
  ```ruby
833
837
  result = snaptrade.options.get_options_chain(
834
- user_id: "John.doe@snaptrade.com",
838
+ user_id: "snaptrade-user-123",
835
839
  user_secret: "USERSECRET123",
836
840
  account_id: "accountId_example",
837
841
  symbol: "symbol_example",
@@ -871,7 +875,7 @@ Returns a Strategy Quotes object which has latest market data of the specified o
871
875
 
872
876
  ```ruby
873
877
  result = snaptrade.options.get_options_strategy_quote(
874
- user_id: "John.doe@snaptrade.com",
878
+ user_id: "snaptrade-user-123",
875
879
  user_secret: "USERSECRET123",
876
880
  account_id: "accountId_example",
877
881
  option_strategy_id: "2bcd7cc3-e922-4976-bce1-9858296801c3",
@@ -911,7 +915,7 @@ Returns a list of Options Positions.
911
915
 
912
916
  ```ruby
913
917
  result = snaptrade.options.list_option_holdings(
914
- user_id: "John.doe@snaptrade.com",
918
+ user_id: "snaptrade-user-123",
915
919
  user_secret: "USERSECRET123",
916
920
  account_id: "accountId_example",
917
921
  )
@@ -948,7 +952,7 @@ Places the option strategy order and returns the order record received from the
948
952
  result = snaptrade.options.place_option_strategy(
949
953
  order_type: "Limit",
950
954
  time_in_force: "FOK",
951
- user_id: "John.doe@snaptrade.com",
955
+ user_id: "snaptrade-user-123",
952
956
  user_secret: "USERSECRET123",
953
957
  account_id: "2bcd7cc3-e922-4976-bce1-9858296801c3",
954
958
  option_strategy_id: "2bcd7cc3-e922-4976-bce1-9858296801c3",
@@ -1270,7 +1274,7 @@ provided search string, matching on ticker and name.
1270
1274
 
1271
1275
  ```ruby
1272
1276
  result = snaptrade.reference_data.symbol_search_user_account(
1273
- user_id: "John.doe@snaptrade.com",
1277
+ user_id: "snaptrade-user-123",
1274
1278
  user_secret: "USERSECRET123",
1275
1279
  account_id: "917c8734-8470-4a3e-a18f-57c3f2ee6631",
1276
1280
  substring: "apple",
@@ -1309,7 +1313,7 @@ This will only work if the order has not yet been executed.
1309
1313
 
1310
1314
  ```ruby
1311
1315
  result = snaptrade.trading.cancel_user_account_order(
1312
- user_id: "John.doe@snaptrade.com",
1316
+ user_id: "snaptrade-user-123",
1313
1317
  user_secret: "USERSECRET123",
1314
1318
  account_id: "917c8734-8470-4a3e-a18f-57c3f2ee6631",
1315
1319
  brokerage_order_id: "2bcd7cc3-e922-4976-bce1-9858296801c3",
@@ -1346,7 +1350,7 @@ Return the trade object and it's impact on the account for the specified order.
1346
1350
 
1347
1351
  ```ruby
1348
1352
  result = snaptrade.trading.get_order_impact(
1349
- user_id: "John.doe@snaptrade.com",
1353
+ user_id: "snaptrade-user-123",
1350
1354
  user_secret: "USERSECRET123",
1351
1355
  account_id: "2bcd7cc3-e922-4976-bce1-9858296801c3",
1352
1356
  action: "BUY",
@@ -1406,7 +1410,7 @@ Returns live quote(s) from the brokerage for the specified symbol(s).
1406
1410
 
1407
1411
  ```ruby
1408
1412
  result = snaptrade.trading.get_user_account_quotes(
1409
- user_id: "John.doe@snaptrade.com",
1413
+ user_id: "snaptrade-user-123",
1410
1414
  user_secret: "USERSECRET123",
1411
1415
  symbols: "symbols_example",
1412
1416
  account_id: "917c8734-8470-4a3e-a18f-57c3f2ee6631",
@@ -1449,7 +1453,7 @@ Places a specified trade in the specified account.
1449
1453
 
1450
1454
  ```ruby
1451
1455
  result = snaptrade.trading.place_force_order(
1452
- user_id: "John.doe@snaptrade.com",
1456
+ user_id: "snaptrade-user-123",
1453
1457
  user_secret: "USERSECRET123",
1454
1458
  account_id: "2bcd7cc3-e922-4976-bce1-9858296801c3",
1455
1459
  action: "BUY",
@@ -1512,7 +1516,7 @@ returns the status of the order from the brokerage.
1512
1516
  ```ruby
1513
1517
  result = snaptrade.trading.place_order(
1514
1518
  trade_id: "tradeId_example",
1515
- user_id: "John.doe@snaptrade.com",
1519
+ user_id: "snaptrade-user-123",
1516
1520
  user_secret: "USERSECRET123",
1517
1521
  wait_to_confirm: true,
1518
1522
  )
@@ -1553,7 +1557,7 @@ Returns activities (transactions) for a user. Specifying start and end date is h
1553
1557
 
1554
1558
  ```ruby
1555
1559
  result = snaptrade.transactions_and_reporting.get_activities(
1556
- user_id: "John.doe@snaptrade.com",
1560
+ user_id: "snaptrade-user-123",
1557
1561
  user_secret: "USERSECRET123",
1558
1562
  start_date: "2022-01-24",
1559
1563
  end_date: "2022-01-24",
@@ -1612,7 +1616,7 @@ Returns performance information (contributions, dividends, rate of return, etc)
1612
1616
  result = snaptrade.transactions_and_reporting.get_reporting_custom_range(
1613
1617
  start_date: "2022-01-24",
1614
1618
  end_date: "2022-01-24",
1615
- user_id: "John.doe@snaptrade.com",
1619
+ user_id: "snaptrade-user-123",
1616
1620
  user_secret: "USERSECRET123",
1617
1621
  accounts: "917c8734-8470-4a3e-a18f-57c3f2ee6631,65e839a3-9103-4cfb-9b72-2071ef80c5f2",
1618
1622
  detailed: true,
@@ -414,7 +414,7 @@ module SnapTrade
414
414
  # Registers a new SnapTrade user under your ClientID.
415
415
  # Most SnapTrade operations require a user to be passed as a parameter.
416
416
  #
417
- # @param user_id [String] SnapTrade User ID. Provided by SnapTrade Partner. Can be any string, as long as it's unique to a user
417
+ # @param user_id [String] SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
418
418
  # @param body [SnapTradeRegisterUserRequestBody]
419
419
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
420
420
  def register_snap_trade_user(user_id: SENTINEL, extra: {})
@@ -430,7 +430,7 @@ module SnapTrade
430
430
  # Registers a new SnapTrade user under your ClientID.
431
431
  # Most SnapTrade operations require a user to be passed as a parameter.
432
432
  #
433
- # @param user_id [String] SnapTrade User ID. Provided by SnapTrade Partner. Can be any string, as long as it's unique to a user
433
+ # @param user_id [String] SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
434
434
  # @param body [SnapTradeRegisterUserRequestBody]
435
435
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
436
436
  def register_snap_trade_user_with_http_info(user_id: SENTINEL, extra: {})
@@ -514,7 +514,7 @@ module SnapTrade
514
514
  # This API is used to generate a new secret for a SnapTrade user. You might use this if a userSecret
515
515
  # is comprimised or lost among other reasons.
516
516
  #
517
- # @param user_id [String] SnapTrade User ID. Provided by SnapTrade Partner. Can be any string, as long as it's unique to a user
517
+ # @param user_id [String] SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
518
518
  # @param user_secret [String] SnapTrade User Secret randomly generated by SnapTrade. This should be considered priviledged information and if compromised, you should delete and re-create this SnapTrade user.
519
519
  # @param body [UserIDandSecret]
520
520
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
@@ -532,7 +532,7 @@ module SnapTrade
532
532
  # This API is used to generate a new secret for a SnapTrade user. You might use this if a userSecret
533
533
  # is comprimised or lost among other reasons.
534
534
  #
535
- # @param user_id [String] SnapTrade User ID. Provided by SnapTrade Partner. Can be any string, as long as it's unique to a user
535
+ # @param user_id [String] SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
536
536
  # @param user_secret [String] SnapTrade User Secret randomly generated by SnapTrade. This should be considered priviledged information and if compromised, you should delete and re-create this SnapTrade user.
537
537
  # @param body [UserIDandSecret]
538
538
  # @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
@@ -18,7 +18,7 @@ module SnapTrade
18
18
 
19
19
  attr_accessor :session_id
20
20
 
21
- # SnapTrade User ID. Provided by SnapTrade Partner. Can be any string, as long as it's unique to a user
21
+ # SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
22
22
  attr_accessor :user_id
23
23
 
24
24
  # Time
@@ -16,7 +16,7 @@ module SnapTrade
16
16
  # Delete status
17
17
  attr_accessor :status
18
18
 
19
- # SnapTrade User ID. Provided by SnapTrade Partner. Can be any string, as long as it's unique to a user
19
+ # SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
20
20
  attr_accessor :user_id
21
21
 
22
22
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -18,7 +18,7 @@ module SnapTrade
18
18
 
19
19
  attr_accessor :session_id
20
20
 
21
- # SnapTrade User ID. Provided by SnapTrade Partner. Can be any string, as long as it's unique to a user
21
+ # SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
22
22
  attr_accessor :user_id
23
23
 
24
24
  # Time
@@ -13,7 +13,7 @@ require 'time'
13
13
  module SnapTrade
14
14
  # Data required to register a user via SnapTrade Partner
15
15
  class SnapTradeRegisterUserRequestBody
16
- # SnapTrade User ID. Provided by SnapTrade Partner. Can be any string, as long as it's unique to a user
16
+ # SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
17
17
  attr_accessor :user_id
18
18
 
19
19
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -13,7 +13,7 @@ require 'time'
13
13
  module SnapTrade
14
14
  # Response when register user is successful
15
15
  class UserIDandSecret
16
- # SnapTrade User ID. Provided by SnapTrade Partner. Can be any string, as long as it's unique to a user
16
+ # SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
17
17
  attr_accessor :user_id
18
18
 
19
19
  # SnapTrade User Secret randomly generated by SnapTrade. This should be considered priviledged information and if compromised, you should delete and re-create this SnapTrade user.
@@ -8,5 +8,5 @@ Contact: api@snaptrade.com
8
8
  =end
9
9
 
10
10
  module SnapTrade
11
- VERSION = '2.0.20'
11
+ VERSION = '2.0.21'
12
12
  end
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.20
4
+ version: 2.0.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - SnapTrade
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-24 00:00:00.000000000 Z
11
+ date: 2024-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday