square.rb 36.0.0.20240222 → 36.1.0.20240320

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: ea20e3c2ee0ef503bef9ebb50a42a318ac2bfd2a38cd0462550e6590be2b8750
4
- data.tar.gz: 7da667a65f84a3ac563d9422ad550b0654f2fb6083ea636f3ba1030d22743335
3
+ metadata.gz: 6ca5ac550267d6ef5f80789ac3b8e8e2034af630f0ef9ad50d9c57b62b7505c4
4
+ data.tar.gz: f9c1d0f6d335ca88a5b7854a9cd64172ffe322aac6d50be06cc84988be0c6d8c
5
5
  SHA512:
6
- metadata.gz: 9f0441c199381f05274e0e2afc4a5f2620773a9f72ba1a8b6eb76e137ee7c6129d076bba6cfe779dd20c7aa00238db283d9e3e2b06c8682dfa88a7d85aa1e164
7
- data.tar.gz: f5bb1c5f90feb1af56ee67027606145a36672a7c69a1fe0e0e81049f07c7eb9dbe04384538b09565130c951cf005d61cd3919aaf61889be70018f45780a3dd07
6
+ metadata.gz: 64df0c00f641647f66e9dc4186eac0a80952607c42304e4332599396c31e8fb3078d405bc29d0dc22b68848bc36965e959a5a682aa50ef9c9144ad42c2880334
7
+ data.tar.gz: 5e51a74b742960cfa8019bb54aa8081c0906ad258b70368a312388221694875308dfeb0ccaf5f0ba122d0ccce238474dc1e5d3684df694a1662bc42bec821cce
@@ -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.0.0.20240222 ({api-version}) {engine}/{engine-version} ({os-info}) {detail}'
8
+ 'Square-Ruby-SDK/36.1.0.20240320 ({api-version}) {engine}/{engine-version} ({os-info}) {detail}'
9
9
  end
10
10
 
11
11
  def self.user_agent_parameters
@@ -58,7 +58,7 @@ module Square
58
58
  # The required input must include the following:
59
59
  # - `Booking.location_id`
60
60
  # - `Booking.start_at`
61
- # - `Booking.team_member_id`
61
+ # - `Booking.AppointmentSegment.team_member_id`
62
62
  # - `Booking.AppointmentSegment.service_variation_id`
63
63
  # - `Booking.AppointmentSegment.service_variation_version`
64
64
  # To call this endpoint with buyer-level permissions, set
@@ -183,19 +183,20 @@ module Square
183
183
  end
184
184
 
185
185
  # Creates a new `Shift`.
186
- # A `Shift` represents a complete workday for a single employee.
186
+ # A `Shift` represents a complete workday for a single team member.
187
187
  # You must provide the following values in your request to this
188
188
  # endpoint:
189
189
  # - `location_id`
190
- # - `employee_id`
190
+ # - `team_member_id`
191
191
  # - `start_at`
192
192
  # An attempt to create a new `Shift` can result in a `BAD_REQUEST` error
193
193
  # when:
194
- # - The `status` of the new `Shift` is `OPEN` and the employee has another
194
+ # - The `status` of the new `Shift` is `OPEN` and the team member has
195
+ # another
195
196
  # shift with an `OPEN` status.
196
197
  # - The `start_at` date is in the future.
197
- # - The `start_at` or `end_at` date overlaps another shift for the same
198
- # employee.
198
+ # - The `start_at` or `end_at` date overlaps another shift for the same team
199
+ # member.
199
200
  # - The `Break` instances are set in the request and a break `start_at`
200
201
  # is before the `Shift.start_at`, a break `end_at` is after
201
202
  # the `Shift.end_at`, or both.
@@ -222,17 +223,17 @@ module Square
222
223
 
223
224
  # Returns a paginated list of `Shift` records for a business.
224
225
  # The list to be returned can be filtered by:
225
- # - Location IDs.
226
- # - Employee IDs.
227
- # - Shift status (`OPEN` and `CLOSED`).
228
- # - Shift start.
229
- # - Shift end.
230
- # - Workday details.
226
+ # - Location IDs
227
+ # - Team member IDs
228
+ # - Shift status (`OPEN` or `CLOSED`)
229
+ # - Shift start
230
+ # - Shift end
231
+ # - Workday details
231
232
  # The list can be sorted by:
232
- # - `start_at`.
233
- # - `end_at`.
234
- # - `created_at`.
235
- # - `updated_at`.
233
+ # - `START_AT`
234
+ # - `END_AT`
235
+ # - `CREATED_AT`
236
+ # - `UPDATED_AT`
236
237
  # @param [SearchShiftsRequest] body Required parameter: An object containing
237
238
  # the fields to POST for the request. See the corresponding object
238
239
  # definition for field details.
@@ -355,7 +356,7 @@ module Square
355
356
  .execute
356
357
  end
357
358
 
358
- # Returns a single `TeamMemberWage` specified by `id `.
359
+ # Returns a single `TeamMemberWage` specified by `id`.
359
360
  # @param [String] id Required parameter: The UUID for the `TeamMemberWage`
360
361
  # being retrieved.
361
362
  # @return [GetTeamMemberWageResponse Hash] response from the API call
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.0.0.20240222'
8
+ '36.1.0.20240320'
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-02-22',
271
+ bearer_auth_credentials: nil, square_version: '2024-03-20',
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-02-22',
27
+ bearer_auth_credentials: nil, square_version: '2024-03-20',
28
28
  user_agent_detail: '', additional_headers: {}
29
29
  )
30
30
 
@@ -20,7 +20,7 @@ module Square
20
20
 
21
21
  @cursor = data.fetch(:cursor, nil)
22
22
  data.reject! { |k| %i[cursor errors].include?(k) }
23
- @data = Struct.new(*data.keys).new(*data.values) if data.keys.any?
23
+ @data = data.keys.any? ? Struct.new(*data.keys).new(*data.values) : nil
24
24
  else
25
25
  @data = data
26
26
  @body = data
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.0.0.20240222
4
+ version: 36.1.0.20240320
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-02-21 00:00:00.000000000 Z
11
+ date: 2024-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: apimatic_core_interfaces