square.rb 36.1.0.20240320 → 37.0.0.20240417

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: 6ca5ac550267d6ef5f80789ac3b8e8e2034af630f0ef9ad50d9c57b62b7505c4
4
- data.tar.gz: f9c1d0f6d335ca88a5b7854a9cd64172ffe322aac6d50be06cc84988be0c6d8c
3
+ metadata.gz: 332738b77476d9e63fa4147d91a865c4354d9cc1e52e0e831e94f9156d200906
4
+ data.tar.gz: e7bc93554771b90aa3aa0fb74fb981940e9965e746b44b09a0edc6539f4cfc0b
5
5
  SHA512:
6
- metadata.gz: 64df0c00f641647f66e9dc4186eac0a80952607c42304e4332599396c31e8fb3078d405bc29d0dc22b68848bc36965e959a5a682aa50ef9c9144ad42c2880334
7
- data.tar.gz: 5e51a74b742960cfa8019bb54aa8081c0906ad258b70368a312388221694875308dfeb0ccaf5f0ba122d0ccce238474dc1e5d3684df694a1662bc42bec821cce
6
+ metadata.gz: c4dad5587dfe9f86495fee7b7dfd5b5fca51442fe588ec828d5a17cfced950b8fa40336d765eedab462b76c13c1279094844e1b53f2985e952609bd4b077712c
7
+ data.tar.gz: 251d28b4352a3b7f924bda02212250d5846be3f1df5c67d1a6730ff80f39cc2469bb8856d2abbd81f48765d6ee15ff7e92f8a301758dcba4b5057ff022c9c276
@@ -5,7 +5,7 @@ module Square
5
5
  attr_accessor :config, :http_call_back
6
6
 
7
7
  def self.user_agent
8
- 'Square-Ruby-SDK/36.1.0.20240320 ({api-version}) {engine}/{engine-version} ({os-info}) {detail}'
8
+ 'Square-Ruby-SDK/37.0.0.20240417 ({api-version}) {engine}/{engine-version} ({os-info}) {detail}'
9
9
  end
10
10
 
11
11
  def self.user_agent_parameters
@@ -1,58 +1,6 @@
1
1
  module Square
2
2
  # OAuthApi
3
3
  class OAuthApi < BaseApi
4
- # `RenewToken` is deprecated. For information about refreshing OAuth access
5
- # tokens, see
6
- # [Migrate from Renew to Refresh OAuth
7
- # Tokens](https://developer.squareup.com/docs/oauth-api/migrate-to-refresh-t
8
- # okens).
9
- # Renews an OAuth access token before it expires.
10
- # OAuth access tokens besides your application's personal access token
11
- # expire after 30 days.
12
- # You can also renew expired tokens within 15 days of their expiration.
13
- # You cannot renew an access token that has been expired for more than 15
14
- # days.
15
- # Instead, the associated user must recomplete the OAuth flow from the
16
- # beginning.
17
- # __Important:__ The `Authorization` header for this endpoint must have the
18
- # following format:
19
- # ```
20
- # Authorization: Client APPLICATION_SECRET
21
- # ```
22
- # Replace `APPLICATION_SECRET` with the application secret on the
23
- # **Credentials**
24
- # page in the [Developer Dashboard](https://developer.squareup.com/apps).
25
- # @param [String] client_id Required parameter: Your application ID, which
26
- # is available on the **OAuth** page in the [Developer
27
- # Dashboard](https://developer.squareup.com/apps).
28
- # @param [RenewTokenRequest] body Required parameter: An object containing
29
- # the fields to POST for the request. See the corresponding object
30
- # definition for field details.
31
- # @param [String] authorization Required parameter: Client
32
- # APPLICATION_SECRET
33
- # @return [RenewTokenResponse Hash] response from the API call
34
- def renew_token(client_id:,
35
- body:,
36
- authorization:)
37
- warn 'Endpoint renew_token in OAuthApi is deprecated'
38
- new_api_call_builder
39
- .request(new_request_builder(HttpMethodEnum::POST,
40
- '/oauth2/clients/{client_id}/access-token/renew',
41
- 'default')
42
- .template_param(new_parameter(client_id, key: 'client_id')
43
- .should_encode(true))
44
- .header_param(new_parameter('application/json', key: 'Content-Type'))
45
- .body_param(new_parameter(body))
46
- .header_param(new_parameter(authorization, key: 'Authorization'))
47
- .header_param(new_parameter('application/json', key: 'accept'))
48
- .body_serializer(proc do |param| param.to_json unless param.nil? end))
49
- .response(new_response_handler
50
- .deserializer(APIHelper.method(:json_deserialize))
51
- .is_api_response(true)
52
- .convertor(ApiResponse.method(:create)))
53
- .execute
54
- end
55
-
56
4
  # Revokes an access token generated with the OAuth flow.
57
5
  # If an account has more than one OAuth access token for your application,
58
6
  # this
data/lib/square/client.rb CHANGED
@@ -5,7 +5,7 @@ module Square
5
5
  attr_reader :config, :auth_managers
6
6
 
7
7
  def sdk_version
8
- '36.1.0.20240320'
8
+ '37.0.0.20240417'
9
9
  end
10
10
 
11
11
  def square_version
@@ -268,7 +268,7 @@ module Square
268
268
  retry_statuses: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524],
269
269
  retry_methods: %i[get put], http_callback: nil, environment: 'production',
270
270
  custom_url: 'https://connect.squareup.com', access_token: nil,
271
- bearer_auth_credentials: nil, square_version: '2024-03-20',
271
+ bearer_auth_credentials: nil, square_version: '2024-04-17',
272
272
  user_agent_detail: '', additional_headers: {}, config: nil
273
273
  )
274
274
  @config = if config.nil?
@@ -24,7 +24,7 @@ module Square
24
24
  retry_statuses: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524],
25
25
  retry_methods: %i[get put], http_callback: nil, environment: 'production',
26
26
  custom_url: 'https://connect.squareup.com', access_token: nil,
27
- bearer_auth_credentials: nil, square_version: '2024-03-20',
27
+ bearer_auth_credentials: nil, square_version: '2024-04-17',
28
28
  user_agent_detail: '', additional_headers: {}
29
29
  )
30
30
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: square.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 36.1.0.20240320
4
+ version: 37.0.0.20240417
5
5
  platform: ruby
6
6
  authors:
7
7
  - Square Developer Platform
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-20 00:00:00.000000000 Z
11
+ date: 2024-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: apimatic_core_interfaces