Skip to content

Commit 66cd8d7

Browse files
authored
Merge pull request #127 from square/release/35.0.1.20240118
Generated PR for Release: 35.0.1.20240118
2 parents ed06262 + dd95de1 commit 66cd8d7

File tree

6 files changed

+3
-8
lines changed

6 files changed

+3
-8
lines changed

doc/models/fulfillment.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ However, orders returned by the Orders API might contain multiple fulfillments b
2222
| `pickup_details` | [`Fulfillment Pickup Details Hash`](../../doc/models/fulfillment-pickup-details.md) | Optional | Contains details necessary to fulfill a pickup order. |
2323
| `shipment_details` | [`Fulfillment Shipment Details Hash`](../../doc/models/fulfillment-shipment-details.md) | Optional | Contains the details necessary to fulfill a shipment order. |
2424
| `delivery_details` | [`Fulfillment Delivery Details Hash`](../../doc/models/fulfillment-delivery-details.md) | Optional | Describes delivery details of an order fulfillment. |
25-
| `version` | `Integer` | Optional | The version number attributed to the fulfillment and incremented every time there is a<br>fulfillment-related update. The fulfillment version is an internal field only for use<br>between Orders and the Fulfillment service. |
2625

2726
## Example (as JSON)
2827

doc/models/order-return-service-charge.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ Represents the service charge applied to the original order.
2626
| `applied_taxes` | [`Array<Order Line Item Applied Tax Hash>`](../../doc/models/order-line-item-applied-tax.md) | Optional | The list of references to `OrderReturnTax` entities applied to the<br>`OrderReturnServiceCharge`. Each `OrderLineItemAppliedTax` has a `tax_uid`<br>that references the `uid` of a top-level `OrderReturnTax` that is being<br>applied to the `OrderReturnServiceCharge`. On reads, the applied amount is<br>populated. |
2727
| `treatment_type` | [`String (Order Service Charge Treatment Type)`](../../doc/models/order-service-charge-treatment-type.md) | Optional | Indicates whether the service charge will be treated as a value-holding line item or<br>apportioned toward a line item. |
2828
| `scope` | [`String (Order Service Charge Scope)`](../../doc/models/order-service-charge-scope.md) | Optional | Indicates whether this is a line-item or order-level apportioned<br>service charge. |
29-
| `applied_service_charges` | [`Array<Order Line Item Applied Service Charge Hash>`](../../doc/models/order-line-item-applied-service-charge.md) | Optional | The list of references to service charges applied to the`OrderReturnServiceCharge`. Each<br>`OrderLineItemAppliedServiceCharge` has a `service_charge_id` that references the `uid` of a<br>top-level `OrderReturnServiceCharge`. On reads, the amount applied is populated. |
30-
| `total_service_charge_money` | [`Money Hash`](../../doc/models/money.md) | Optional | Represents an amount of money. `Money` fields can be signed or unsigned.<br>Fields that do not explicitly define whether they are signed or unsigned are<br>considered unsigned and can only hold positive amounts. For signed fields, the<br>sign of the value indicates the purpose of the money transfer. See<br>[Working with Monetary Amounts](https://developer.squareup.com/docs/build-basics/working-with-monetary-amounts)<br>for more information. |
3129

3230
## Example (as JSON)
3331

doc/models/order-service-charge.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ Represents a service charge applied to an order.
2727
| `type` | [`String (Order Service Charge Type)`](../../doc/models/order-service-charge-type.md) | Optional | - |
2828
| `treatment_type` | [`String (Order Service Charge Treatment Type)`](../../doc/models/order-service-charge-treatment-type.md) | Optional | Indicates whether the service charge will be treated as a value-holding line item or<br>apportioned toward a line item. |
2929
| `scope` | [`String (Order Service Charge Scope)`](../../doc/models/order-service-charge-scope.md) | Optional | Indicates whether this is a line-item or order-level apportioned<br>service charge. |
30-
| `applied_service_charges` | [`Array<Order Line Item Applied Service Charge Hash>`](../../doc/models/order-line-item-applied-service-charge.md) | Optional | The list of references to service charges applied to this service charge. Each<br>`OrderLineItemAppliedServiceCharge` has a `service_charge_id` that references the `uid` of a<br>top-level `OrderServiceCharge`. On reads, the amount applied is populated.<br><br>To change the amount of a service charge, modify the referenced top-level service charge. |
31-
| `total_service_charge_money` | [`Money Hash`](../../doc/models/money.md) | Optional | Represents an amount of money. `Money` fields can be signed or unsigned.<br>Fields that do not explicitly define whether they are signed or unsigned are<br>considered unsigned and can only hold positive amounts. For signed fields, the<br>sign of the value indicates the purpose of the money transfer. See<br>[Working with Monetary Amounts](https://developer.squareup.com/docs/build-basics/working-with-monetary-amounts)<br>for more information. |
3230

3331
## Example (as JSON)
3432

lib/square/api/base_api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class BaseApi
44
attr_accessor :config, :http_call_back
55

66
def self.user_agent
7-
'Square-Ruby-SDK/35.0.0.20240118 ({api-version}) {engine}/{engine-version} ({os-info}) {detail}'
7+
'Square-Ruby-SDK/35.0.1.20240118 ({api-version}) {engine}/{engine-version} ({os-info}) {detail}'
88
end
99

1010
def self.user_agent_parameters

lib/square/client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class Client
44
attr_reader :config, :auth_managers
55

66
def sdk_version
7-
'35.0.0.20240118'
7+
'35.0.1.20240118'
88
end
99

1010
def square_version

square.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'square.rb'
3-
s.version = '35.0.0.20240118'
3+
s.version = '35.0.1.20240118'
44
s.summary = 'square'
55
s.description = ''
66
s.authors = ['Square Developer Platform']

0 commit comments

Comments
 (0)