Skip to content

Commit f1ee696

Browse files
authored
Merge pull request #52 from brand-dot-dev/release-please--branches--main--changes--next
release: 0.29.0
2 parents 11b9a0f + 1748c0b commit f1ee696

File tree

13 files changed

+2030
-14
lines changed

13 files changed

+2030
-14
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
name: CI
22
on:
33
push:
4-
branches-ignore:
5-
- 'generated'
6-
- 'codegen/**'
7-
- 'integrated/**'
8-
- 'stl-preview-head/**'
9-
- 'stl-preview-base/**'
4+
branches:
5+
- '**'
6+
- '!integrated/**'
7+
- '!stl-preview-head/**'
8+
- '!stl-preview-base/**'
9+
- '!generated'
10+
- '!codegen/**'
11+
- 'codegen/stl/**'
1012
pull_request:
1113
branches-ignore:
1214
- 'stl-preview-head/**'

.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.28.2"
2+
".": "0.29.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: 20
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-584d3486a6c5bf7b68dcaacb0bde2ef5f648c158e5c5ebccc7a7684d95abc832.yml
3-
openapi_spec_hash: 29a53e1f96a2c5d9407f1a0938e301bf
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-67e4ffa39d74649a6ae6b21e9f86cffa83c8a02d640ca6b4d4a3e619b54fbd38.yml
3+
openapi_spec_hash: 762e7ea7ae23297cc6b01f600a485410
44
config_hash: 4cd3173ea1cce7183640aae49cfbb374

CHANGELOG.md

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

3+
## 0.29.0 (2026-03-18)
4+
5+
Full Changelog: [v0.28.2...v0.29.0](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.28.2...v0.29.0)
6+
7+
### Features
8+
9+
* **api:** api update ([6b3e6eb](https://github.com/brand-dot-dev/ruby-sdk/commit/6b3e6eb32404ba09504f76b9fa73111fb5a49523))
10+
11+
12+
### Chores
13+
14+
* **internal:** tweak CI branches ([4b44d16](https://github.com/brand-dot-dev/ruby-sdk/commit/4b44d16f3582378f4b156a6b95a32f3383cc640f))
15+
316
## 0.28.2 (2026-03-07)
417

518
Full Changelog: [v0.28.1...v0.28.2](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.28.1...v0.28.2)

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.28.2)
14+
brand.dev (0.29.0)
1515
cgi
1616
connection_pool
1717

README.md

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

2828
```ruby
29-
gem "brand.dev", "~> 0.28.2"
29+
gem "brand.dev", "~> 0.29.0"
3030
```
3131

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

lib/brand_dev/models/brand_retrieve_by_name_params.rb

Lines changed: 259 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ class BrandRetrieveByNameParams < BrandDev::Internal::Type::BaseModel
1414
# @return [String]
1515
required :name, String
1616

17+
# @!attribute country_gl
18+
# Optional country code (GL parameter) to specify the country. This affects the
19+
# geographic location used for search queries.
20+
#
21+
# @return [Symbol, BrandDev::Models::BrandRetrieveByNameParams::CountryGl, nil]
22+
optional :country_gl, enum: -> { BrandDev::BrandRetrieveByNameParams::CountryGl }
23+
1724
# @!attribute force_language
1825
# Optional parameter to force the language of the retrieved brand data.
1926
#
@@ -36,12 +43,14 @@ class BrandRetrieveByNameParams < BrandDev::Internal::Type::BaseModel
3643
# @return [Integer, nil]
3744
optional :timeout_ms, Integer
3845

39-
# @!method initialize(name:, force_language: nil, max_speed: nil, timeout_ms: nil, request_options: {})
46+
# @!method initialize(name:, country_gl: nil, force_language: nil, max_speed: nil, timeout_ms: nil, request_options: {})
4047
# Some parameter documentations has been truncated, see
4148
# {BrandDev::Models::BrandRetrieveByNameParams} for more details.
4249
#
4350
# @param name [String] Company name to retrieve brand data for (e.g., 'Apple Inc', 'Microsoft Corporati
4451
#
52+
# @param country_gl [Symbol, BrandDev::Models::BrandRetrieveByNameParams::CountryGl] Optional country code (GL parameter) to specify the country. This affects the ge
53+
#
4554
# @param force_language [Symbol, BrandDev::Models::BrandRetrieveByNameParams::ForceLanguage] Optional parameter to force the language of the retrieved brand data.
4655
#
4756
# @param max_speed [Boolean] Optional parameter to optimize the API call for maximum speed. When set to true,
@@ -50,6 +59,255 @@ class BrandRetrieveByNameParams < BrandDev::Internal::Type::BaseModel
5059
#
5160
# @param request_options [BrandDev::RequestOptions, Hash{Symbol=>Object}]
5261

62+
# Optional country code (GL parameter) to specify the country. This affects the
63+
# geographic location used for search queries.
64+
module CountryGl
65+
extend BrandDev::Internal::Type::Enum
66+
67+
AD = :ad
68+
AE = :ae
69+
AF = :af
70+
AG = :ag
71+
AI = :ai
72+
AL = :al
73+
AM = :am
74+
AN = :an
75+
AO = :ao
76+
AQ = :aq
77+
AR = :ar
78+
AS = :as
79+
AT = :at
80+
AU = :au
81+
AW = :aw
82+
AZ = :az
83+
BA = :ba
84+
BB = :bb
85+
BD = :bd
86+
BE = :be
87+
BF = :bf
88+
BG = :bg
89+
BH = :bh
90+
BI = :bi
91+
BJ = :bj
92+
BM = :bm
93+
BN = :bn
94+
BO = :bo
95+
BR = :br
96+
BS = :bs
97+
BT = :bt
98+
BV = :bv
99+
BW = :bw
100+
BY = :by
101+
BZ = :bz
102+
CA = :ca
103+
CC = :cc
104+
CD = :cd
105+
CF = :cf
106+
CG = :cg
107+
CH = :ch
108+
CI = :ci
109+
CK = :ck
110+
CL = :cl
111+
CM = :cm
112+
CN = :cn
113+
CO = :co
114+
CR = :cr
115+
CU = :cu
116+
CV = :cv
117+
CX = :cx
118+
CY = :cy
119+
CZ = :cz
120+
DE = :de
121+
DJ = :dj
122+
DK = :dk
123+
DM = :dm
124+
DO = :do
125+
DZ = :dz
126+
EC = :ec
127+
EE = :ee
128+
EG = :eg
129+
EH = :eh
130+
ER = :er
131+
ES = :es
132+
ET = :et
133+
FI = :fi
134+
FJ = :fj
135+
FK = :fk
136+
FM = :fm
137+
FO = :fo
138+
FR = :fr
139+
GA = :ga
140+
GB = :gb
141+
GD = :gd
142+
GE = :ge
143+
GF = :gf
144+
GH = :gh
145+
GI = :gi
146+
GL = :gl
147+
GM = :gm
148+
GN = :gn
149+
GP = :gp
150+
GQ = :gq
151+
GR = :gr
152+
GS = :gs
153+
GT = :gt
154+
GU = :gu
155+
GW = :gw
156+
GY = :gy
157+
HK = :hk
158+
HM = :hm
159+
HN = :hn
160+
HR = :hr
161+
HT = :ht
162+
HU = :hu
163+
ID = :id
164+
IE = :ie
165+
IL = :il
166+
IN = :in
167+
IO = :io
168+
IQ = :iq
169+
IR = :ir
170+
IS = :is
171+
IT = :it
172+
JM = :jm
173+
JO = :jo
174+
JP = :jp
175+
KE = :ke
176+
KG = :kg
177+
KH = :kh
178+
KI = :ki
179+
KM = :km
180+
KN = :kn
181+
KP = :kp
182+
KR = :kr
183+
KW = :kw
184+
KY = :ky
185+
KZ = :kz
186+
LA = :la
187+
LB = :lb
188+
LC = :lc
189+
LI = :li
190+
LK = :lk
191+
LR = :lr
192+
LS = :ls
193+
LT = :lt
194+
LU = :lu
195+
LV = :lv
196+
LY = :ly
197+
MA = :ma
198+
MC = :mc
199+
MD = :md
200+
MG = :mg
201+
MH = :mh
202+
MK = :mk
203+
ML = :ml
204+
MM = :mm
205+
MN = :mn
206+
MO = :mo
207+
MP = :mp
208+
MQ = :mq
209+
MR = :mr
210+
MS = :ms
211+
MT = :mt
212+
MU = :mu
213+
MV = :mv
214+
MW = :mw
215+
MX = :mx
216+
MY = :my
217+
MZ = :mz
218+
NA = :na
219+
NC = :nc
220+
NE = :ne
221+
NF = :nf
222+
NG = :ng
223+
NI = :ni
224+
NL = :nl
225+
NO = :no
226+
NP = :np
227+
NR = :nr
228+
NU = :nu
229+
NZ = :nz
230+
OM = :om
231+
PA = :pa
232+
PE = :pe
233+
PF = :pf
234+
PG = :pg
235+
PH = :ph
236+
PK = :pk
237+
PL = :pl
238+
PM = :pm
239+
PN = :pn
240+
PR = :pr
241+
PS = :ps
242+
PT = :pt
243+
PW = :pw
244+
PY = :py
245+
QA = :qa
246+
RE = :re
247+
RO = :ro
248+
RS = :rs
249+
RU = :ru
250+
RW = :rw
251+
SA = :sa
252+
SB = :sb
253+
SC = :sc
254+
SD = :sd
255+
SE = :se
256+
SG = :sg
257+
SH = :sh
258+
SI = :si
259+
SJ = :sj
260+
SK = :sk
261+
SL = :sl
262+
SM = :sm
263+
SN = :sn
264+
SO = :so
265+
SR = :sr
266+
ST = :st
267+
SV = :sv
268+
SY = :sy
269+
SZ = :sz
270+
TC = :tc
271+
TD = :td
272+
TF = :tf
273+
TG = :tg
274+
TH = :th
275+
TJ = :tj
276+
TK = :tk
277+
TL = :tl
278+
TM = :tm
279+
TN = :tn
280+
TO = :to
281+
TR = :tr
282+
TT = :tt
283+
TV = :tv
284+
TW = :tw
285+
TZ = :tz
286+
UA = :ua
287+
UG = :ug
288+
UM = :um
289+
US = :us
290+
UY = :uy
291+
UZ = :uz
292+
VA = :va
293+
VC = :vc
294+
VE = :ve
295+
VG = :vg
296+
VI = :vi
297+
VN = :vn
298+
VU = :vu
299+
WF = :wf
300+
WS = :ws
301+
YE = :ye
302+
YT = :yt
303+
ZA = :za
304+
ZM = :zm
305+
ZW = :zw
306+
307+
# @!method self.values
308+
# @return [Array<Symbol>]
309+
end
310+
53311
# Optional parameter to force the language of the retrieved brand data.
54312
module ForceLanguage
55313
extend BrandDev::Internal::Type::Enum

lib/brand_dev/resources/brand.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,10 +330,12 @@ def retrieve_by_isin(params)
330330
# Retrieve brand information using a company name. This endpoint searches for the
331331
# company by name and returns its brand data.
332332
#
333-
# @overload retrieve_by_name(name:, force_language: nil, max_speed: nil, timeout_ms: nil, request_options: {})
333+
# @overload retrieve_by_name(name:, country_gl: nil, force_language: nil, max_speed: nil, timeout_ms: nil, request_options: {})
334334
#
335335
# @param name [String] Company name to retrieve brand data for (e.g., 'Apple Inc', 'Microsoft Corporati
336336
#
337+
# @param country_gl [Symbol, BrandDev::Models::BrandRetrieveByNameParams::CountryGl] Optional country code (GL parameter) to specify the country. This affects the ge
338+
#
337339
# @param force_language [Symbol, BrandDev::Models::BrandRetrieveByNameParams::ForceLanguage] Optional parameter to force the language of the retrieved brand data.
338340
#
339341
# @param max_speed [Boolean] Optional parameter to optimize the API call for maximum speed. When set to true,

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.28.2"
4+
VERSION = "0.29.0"
55
end

0 commit comments

Comments
 (0)