Skip to content

Commit 46e4939

Browse files
authored
Merge pull request #38 from brand-dot-dev/release-please--branches--main--changes--next
release: 0.17.0
2 parents cf677b7 + 5976cfe commit 46e4939

File tree

12 files changed

+48
-8
lines changed

12 files changed

+48
-8
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.16.0"
2+
".": "0.17.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 13
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-e685328e362a28f152bcadfd1ca49680a80bfb7a3834fd422f2e459507305405.yml
3-
openapi_spec_hash: 475543f86e39715f76588de6ccf70beb
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-143086f8200f34e6ace805070e2a3ddccf15e30ed7ac3a7193f6a984f2413fa2.yml
3+
openapi_spec_hash: f15bf2b836aee764c02a4fc185f13586
44
config_hash: 6aaf0fe6f8877c9c5d9af95597123cb4

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.17.0 (2025-12-11)
4+
5+
Full Changelog: [v0.16.0...v0.17.0](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.16.0...v0.17.0)
6+
7+
### Features
8+
9+
* **api:** api update ([b4c9da1](https://github.com/brand-dot-dev/ruby-sdk/commit/b4c9da15f5563e5e945d4bbc557fa2f5085c9aef))
10+
311
## 0.16.0 (2025-12-01)
412

513
Full Changelog: [v0.15.0...v0.16.0](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.15.0...v0.16.0)

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GIT
1111
PATH
1212
remote: .
1313
specs:
14-
brand.dev (0.16.0)
14+
brand.dev (0.17.0)
1515
connection_pool
1616

1717
GEM

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
1717
<!-- x-release-please-start-version -->
1818

1919
```ruby
20-
gem "brand.dev", "~> 0.16.0"
20+
gem "brand.dev", "~> 0.17.0"
2121
```
2222

2323
<!-- x-release-please-end -->

lib/brand_dev/models/brand_identify_from_transaction_params.rb

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ class BrandIdentifyFromTransactionParams < BrandDev::Internal::Type::BaseModel
4747
# @return [String, nil]
4848
optional :mcc, String
4949

50+
# @!attribute phone
51+
# Optional phone number from the transaction to help verify brand match.
52+
#
53+
# @return [Float, nil]
54+
optional :phone, Float
55+
5056
# @!attribute timeout_ms
5157
# Optional timeout in milliseconds for the request. If the request takes longer
5258
# than this value, it will be aborted with a 408 status code. Maximum allowed
@@ -55,7 +61,7 @@ class BrandIdentifyFromTransactionParams < BrandDev::Internal::Type::BaseModel
5561
# @return [Integer, nil]
5662
optional :timeout_ms, Integer
5763

58-
# @!method initialize(transaction_info:, city: nil, country_gl: nil, force_language: nil, max_speed: nil, mcc: nil, timeout_ms: nil, request_options: {})
64+
# @!method initialize(transaction_info:, city: nil, country_gl: nil, force_language: nil, max_speed: nil, mcc: nil, phone: nil, timeout_ms: nil, request_options: {})
5965
# Some parameter documentations has been truncated, see
6066
# {BrandDev::Models::BrandIdentifyFromTransactionParams} for more details.
6167
#
@@ -71,6 +77,8 @@ class BrandIdentifyFromTransactionParams < BrandDev::Internal::Type::BaseModel
7177
#
7278
# @param mcc [String] Optional Merchant Category Code (MCC) to help identify the business category/ind
7379
#
80+
# @param phone [Float] Optional phone number from the transaction to help verify brand match.
81+
#
7482
# @param timeout_ms [Integer] Optional timeout in milliseconds for the request. If the request takes longer th
7583
#
7684
# @param request_options [BrandDev::RequestOptions, Hash{Symbol=>Object}]

lib/brand_dev/resources/brand.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def fonts(params)
102102
# Endpoint specially designed for platforms that want to identify transaction data
103103
# by the transaction title.
104104
#
105-
# @overload identify_from_transaction(transaction_info:, city: nil, country_gl: nil, force_language: nil, max_speed: nil, mcc: nil, timeout_ms: nil, request_options: {})
105+
# @overload identify_from_transaction(transaction_info:, city: nil, country_gl: nil, force_language: nil, max_speed: nil, mcc: nil, phone: nil, timeout_ms: nil, request_options: {})
106106
#
107107
# @param transaction_info [String] Transaction information to identify the brand
108108
#
@@ -116,6 +116,8 @@ def fonts(params)
116116
#
117117
# @param mcc [String] Optional Merchant Category Code (MCC) to help identify the business category/ind
118118
#
119+
# @param phone [Float] Optional phone number from the transaction to help verify brand match.
120+
#
119121
# @param timeout_ms [Integer] Optional timeout in milliseconds for the request. If the request takes longer th
120122
#
121123
# @param request_options [BrandDev::RequestOptions, Hash{Symbol=>Object}, nil]

lib/brand_dev/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module BrandDev
4-
VERSION = "0.16.0"
4+
VERSION = "0.17.0"
55
end

rbi/brand_dev/models/brand_identify_from_transaction_params.rbi

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,13 @@ module BrandDev
7979
sig { params(mcc: String).void }
8080
attr_writer :mcc
8181

82+
# Optional phone number from the transaction to help verify brand match.
83+
sig { returns(T.nilable(Float)) }
84+
attr_reader :phone
85+
86+
sig { params(phone: Float).void }
87+
attr_writer :phone
88+
8289
# Optional timeout in milliseconds for the request. If the request takes longer
8390
# than this value, it will be aborted with a 408 status code. Maximum allowed
8491
# value is 300000ms (5 minutes).
@@ -98,6 +105,7 @@ module BrandDev
98105
BrandDev::BrandIdentifyFromTransactionParams::ForceLanguage::OrSymbol,
99106
max_speed: T::Boolean,
100107
mcc: String,
108+
phone: Float,
101109
timeout_ms: Integer,
102110
request_options: BrandDev::RequestOptions::OrHash
103111
).returns(T.attached_class)
@@ -119,6 +127,8 @@ module BrandDev
119127
# Optional Merchant Category Code (MCC) to help identify the business
120128
# category/industry.
121129
mcc: nil,
130+
# Optional phone number from the transaction to help verify brand match.
131+
phone: nil,
122132
# Optional timeout in milliseconds for the request. If the request takes longer
123133
# than this value, it will be aborted with a 408 status code. Maximum allowed
124134
# value is 300000ms (5 minutes).
@@ -138,6 +148,7 @@ module BrandDev
138148
BrandDev::BrandIdentifyFromTransactionParams::ForceLanguage::OrSymbol,
139149
max_speed: T::Boolean,
140150
mcc: String,
151+
phone: Float,
141152
timeout_ms: Integer,
142153
request_options: BrandDev::RequestOptions
143154
}

rbi/brand_dev/resources/brand.rbi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ module BrandDev
9595
BrandDev::BrandIdentifyFromTransactionParams::ForceLanguage::OrSymbol,
9696
max_speed: T::Boolean,
9797
mcc: String,
98+
phone: Float,
9899
timeout_ms: Integer,
99100
request_options: BrandDev::RequestOptions::OrHash
100101
).returns(BrandDev::Models::BrandIdentifyFromTransactionResponse)
@@ -116,6 +117,8 @@ module BrandDev
116117
# Optional Merchant Category Code (MCC) to help identify the business
117118
# category/industry.
118119
mcc: nil,
120+
# Optional phone number from the transaction to help verify brand match.
121+
phone: nil,
119122
# Optional timeout in milliseconds for the request. If the request takes longer
120123
# than this value, it will be aborted with a 408 status code. Maximum allowed
121124
# value is 300000ms (5 minutes).

0 commit comments

Comments
 (0)