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 +4 -4
- data/lib/square/api/base_api.rb +1 -1
- data/lib/square/api/bookings_api.rb +1 -1
- data/lib/square/api/labor_api.rb +17 -16
- data/lib/square/client.rb +2 -2
- data/lib/square/configuration.rb +1 -1
- data/lib/square/http/api_response.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ca5ac550267d6ef5f80789ac3b8e8e2034af630f0ef9ad50d9c57b62b7505c4
|
4
|
+
data.tar.gz: f9c1d0f6d335ca88a5b7854a9cd64172ffe322aac6d50be06cc84988be0c6d8c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64df0c00f641647f66e9dc4186eac0a80952607c42304e4332599396c31e8fb3078d405bc29d0dc22b68848bc36965e959a5a682aa50ef9c9144ad42c2880334
|
7
|
+
data.tar.gz: 5e51a74b742960cfa8019bb54aa8081c0906ad258b70368a312388221694875308dfeb0ccaf5f0ba122d0ccce238474dc1e5d3684df694a1662bc42bec821cce
|
data/lib/square/api/base_api.rb
CHANGED
@@ -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.
|
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
|
data/lib/square/api/labor_api.rb
CHANGED
@@ -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
|
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
|
-
# - `
|
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
|
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
|
-
#
|
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
|
-
# -
|
227
|
-
# - Shift status (`OPEN`
|
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
|
-
# - `
|
233
|
-
# - `
|
234
|
-
# - `
|
235
|
-
# - `
|
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.
|
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-
|
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?
|
data/lib/square/configuration.rb
CHANGED
@@ -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-
|
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)
|
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.
|
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-
|
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
|