brand.dev 0.28.2 → 0.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +27 -0
- data/README.md +3 -3
- data/SECURITY.md +1 -1
- data/lib/brand_dev/models/brand_identify_from_transaction_params.rb +3 -0
- data/lib/brand_dev/models/brand_retrieve_by_email_params.rb +3 -0
- data/lib/brand_dev/models/brand_retrieve_by_isin_params.rb +3 -0
- data/lib/brand_dev/models/brand_retrieve_by_name_params.rb +262 -1
- data/lib/brand_dev/models/brand_retrieve_by_ticker_params.rb +3 -0
- data/lib/brand_dev/models/brand_retrieve_params.rb +3 -0
- data/lib/brand_dev/resources/brand.rb +4 -2
- data/lib/brand_dev/version.rb +1 -1
- data/rbi/brand_dev/models/brand_identify_from_transaction_params.rbi +15 -0
- data/rbi/brand_dev/models/brand_retrieve_by_email_params.rbi +15 -0
- data/rbi/brand_dev/models/brand_retrieve_by_isin_params.rbi +15 -0
- data/rbi/brand_dev/models/brand_retrieve_by_name_params.rbi +1325 -70
- data/rbi/brand_dev/models/brand_retrieve_by_ticker_params.rbi +15 -0
- data/rbi/brand_dev/models/brand_retrieve_params.rbi +15 -0
- data/rbi/brand_dev/resources/brand.rbi +5 -1
- data/sig/brand_dev/models/brand_identify_from_transaction_params.rbs +6 -0
- data/sig/brand_dev/models/brand_retrieve_by_email_params.rbs +6 -0
- data/sig/brand_dev/models/brand_retrieve_by_isin_params.rbs +6 -0
- data/sig/brand_dev/models/brand_retrieve_by_name_params.rbs +502 -0
- data/sig/brand_dev/models/brand_retrieve_by_ticker_params.rbs +6 -0
- data/sig/brand_dev/models/brand_retrieve_params.rbs +6 -0
- data/sig/brand_dev/resources/brand.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 05afc85f895b5fb18641735aaaa2b41fde8707f8e124153110d50bc3cf627863
|
|
4
|
+
data.tar.gz: b067b6afe2fc17280bdfb6f5661d5b09451fbdce4bf0e3448a5b921426b1696b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 949d860309592e2b4c804259f9ab8195e5f7b949426ece4b8904573c1a6a2e8806757f838c98d1465dcd6555629921f4a11c69d8b98aff1a04d62331228ff141
|
|
7
|
+
data.tar.gz: 07fe13ac3d28bae8090ae75f718c0ae425ad7f03f9d267ab6ffd8e89a1159120b34ad68c5cff1656d8dcc1ff46e790171d12a01a9c7a540fc252a86347ad43c2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.30.0 (2026-03-25)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.29.0...v0.30.0](https://github.com/context-dot-dev/deprecated-brand-ruby-sdk/compare/v0.29.0...v0.30.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** manual updates ([5bf4b95](https://github.com/context-dot-dev/deprecated-brand-ruby-sdk/commit/5bf4b95acc1b0c4d8c3279308c5b723f771cff55))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* sync repo ([ec49eff](https://github.com/context-dot-dev/deprecated-brand-ruby-sdk/commit/ec49effde87ce04a2db72aed9b18cff23c288834))
|
|
15
|
+
* update SDK settings ([ef96748](https://github.com/context-dot-dev/deprecated-brand-ruby-sdk/commit/ef9674810e6cac0a6b0b0a2c4abc78b354238249))
|
|
16
|
+
|
|
17
|
+
## 0.29.0 (2026-03-18)
|
|
18
|
+
|
|
19
|
+
Full Changelog: [v0.28.2...v0.29.0](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.28.2...v0.29.0)
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* **api:** api update ([6b3e6eb](https://github.com/brand-dot-dev/ruby-sdk/commit/6b3e6eb32404ba09504f76b9fa73111fb5a49523))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Chores
|
|
27
|
+
|
|
28
|
+
* **internal:** tweak CI branches ([4b44d16](https://github.com/brand-dot-dev/ruby-sdk/commit/4b44d16f3582378f4b156a6b95a32f3383cc640f))
|
|
29
|
+
|
|
3
30
|
## 0.28.2 (2026-03-07)
|
|
4
31
|
|
|
5
32
|
Full Changelog: [v0.28.1...v0.28.2](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.28.1...v0.28.2)
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Brand Dev Ruby API library
|
|
2
2
|
|
|
3
|
-
The Brand Dev Ruby library provides convenient access to the Brand Dev REST API from any Ruby 3.2.0+ application. It ships with comprehensive types & docstrings in Yard, RBS, and RBI – [see below](https://github.com/
|
|
3
|
+
The Brand Dev Ruby library provides convenient access to the Brand Dev REST API from any Ruby 3.2.0+ application. It ships with comprehensive types & docstrings in Yard, RBS, and RBI – [see below](https://github.com/context-dot-dev/deprecated-brand-ruby-sdk#Sorbet) for usage with Sorbet. The standard library's `net/http` is used as the HTTP transport, with connection pooling via the `connection_pool` gem.
|
|
4
4
|
|
|
5
5
|
It is generated with [Stainless](https://www.stainless.com/).
|
|
6
6
|
|
|
@@ -26,7 +26,7 @@ To use this gem, install via Bundler by adding the following to your application
|
|
|
26
26
|
<!-- x-release-please-start-version -->
|
|
27
27
|
|
|
28
28
|
```ruby
|
|
29
|
-
gem "brand.dev", "~> 0.
|
|
29
|
+
gem "brand.dev", "~> 0.30.0"
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
<!-- x-release-please-end -->
|
|
@@ -241,4 +241,4 @@ Ruby 3.2.0 or higher.
|
|
|
241
241
|
|
|
242
242
|
## Contributing
|
|
243
243
|
|
|
244
|
-
See [the contributing documentation](https://github.com/
|
|
244
|
+
See [the contributing documentation](https://github.com/context-dot-dev/deprecated-brand-ruby-sdk/tree/main/CONTRIBUTING.md).
|
data/SECURITY.md
CHANGED
|
@@ -20,7 +20,7 @@ or products provided by Brand Dev, please follow the respective company's securi
|
|
|
20
20
|
|
|
21
21
|
### Brand Dev Terms and Policies
|
|
22
22
|
|
|
23
|
-
Please contact hello@
|
|
23
|
+
Please contact hello@context.dev for any questions or concerns regarding the security of our services.
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
@@ -351,6 +351,7 @@ module BrandDev
|
|
|
351
351
|
AZERI = :azeri
|
|
352
352
|
BENGALI = :bengali
|
|
353
353
|
BULGARIAN = :bulgarian
|
|
354
|
+
CANTONESE = :cantonese
|
|
354
355
|
CEBUANO = :cebuano
|
|
355
356
|
CROATIAN = :croatian
|
|
356
357
|
CZECH = :czech
|
|
@@ -370,6 +371,7 @@ module BrandDev
|
|
|
370
371
|
INDONESIAN = :indonesian
|
|
371
372
|
ITALIAN = :italian
|
|
372
373
|
KAZAKH = :kazakh
|
|
374
|
+
KOREAN = :korean
|
|
373
375
|
KYRGYZ = :kyrgyz
|
|
374
376
|
LATIN = :latin
|
|
375
377
|
LATVIAN = :latvian
|
|
@@ -392,6 +394,7 @@ module BrandDev
|
|
|
392
394
|
SWAHILI = :swahili
|
|
393
395
|
SWEDISH = :swedish
|
|
394
396
|
TAGALOG = :tagalog
|
|
397
|
+
THAI = :thai
|
|
395
398
|
TURKISH = :turkish
|
|
396
399
|
UKRAINIAN = :ukrainian
|
|
397
400
|
URDU = :urdu
|
|
@@ -60,6 +60,7 @@ module BrandDev
|
|
|
60
60
|
AZERI = :azeri
|
|
61
61
|
BENGALI = :bengali
|
|
62
62
|
BULGARIAN = :bulgarian
|
|
63
|
+
CANTONESE = :cantonese
|
|
63
64
|
CEBUANO = :cebuano
|
|
64
65
|
CROATIAN = :croatian
|
|
65
66
|
CZECH = :czech
|
|
@@ -79,6 +80,7 @@ module BrandDev
|
|
|
79
80
|
INDONESIAN = :indonesian
|
|
80
81
|
ITALIAN = :italian
|
|
81
82
|
KAZAKH = :kazakh
|
|
83
|
+
KOREAN = :korean
|
|
82
84
|
KYRGYZ = :kyrgyz
|
|
83
85
|
LATIN = :latin
|
|
84
86
|
LATVIAN = :latvian
|
|
@@ -101,6 +103,7 @@ module BrandDev
|
|
|
101
103
|
SWAHILI = :swahili
|
|
102
104
|
SWEDISH = :swedish
|
|
103
105
|
TAGALOG = :tagalog
|
|
106
|
+
THAI = :thai
|
|
104
107
|
TURKISH = :turkish
|
|
105
108
|
UKRAINIAN = :ukrainian
|
|
106
109
|
URDU = :urdu
|
|
@@ -60,6 +60,7 @@ module BrandDev
|
|
|
60
60
|
AZERI = :azeri
|
|
61
61
|
BENGALI = :bengali
|
|
62
62
|
BULGARIAN = :bulgarian
|
|
63
|
+
CANTONESE = :cantonese
|
|
63
64
|
CEBUANO = :cebuano
|
|
64
65
|
CROATIAN = :croatian
|
|
65
66
|
CZECH = :czech
|
|
@@ -79,6 +80,7 @@ module BrandDev
|
|
|
79
80
|
INDONESIAN = :indonesian
|
|
80
81
|
ITALIAN = :italian
|
|
81
82
|
KAZAKH = :kazakh
|
|
83
|
+
KOREAN = :korean
|
|
82
84
|
KYRGYZ = :kyrgyz
|
|
83
85
|
LATIN = :latin
|
|
84
86
|
LATVIAN = :latvian
|
|
@@ -101,6 +103,7 @@ module BrandDev
|
|
|
101
103
|
SWAHILI = :swahili
|
|
102
104
|
SWEDISH = :swedish
|
|
103
105
|
TAGALOG = :tagalog
|
|
106
|
+
THAI = :thai
|
|
104
107
|
TURKISH = :turkish
|
|
105
108
|
UKRAINIAN = :ukrainian
|
|
106
109
|
URDU = :urdu
|
|
@@ -14,6 +14,13 @@ module BrandDev
|
|
|
14
14
|
# @return [String]
|
|
15
15
|
required :name, String
|
|
16
16
|
|
|
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
|
+
|
|
17
24
|
# @!attribute force_language
|
|
18
25
|
# Optional parameter to force the language of the retrieved brand data.
|
|
19
26
|
#
|
|
@@ -36,12 +43,14 @@ module BrandDev
|
|
|
36
43
|
# @return [Integer, nil]
|
|
37
44
|
optional :timeout_ms, Integer
|
|
38
45
|
|
|
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: {})
|
|
40
47
|
# Some parameter documentations has been truncated, see
|
|
41
48
|
# {BrandDev::Models::BrandRetrieveByNameParams} for more details.
|
|
42
49
|
#
|
|
43
50
|
# @param name [String] Company name to retrieve brand data for (e.g., 'Apple Inc', 'Microsoft Corporati
|
|
44
51
|
#
|
|
52
|
+
# @param country_gl [Symbol, BrandDev::Models::BrandRetrieveByNameParams::CountryGl] Optional country code (GL parameter) to specify the country. This affects the ge
|
|
53
|
+
#
|
|
45
54
|
# @param force_language [Symbol, BrandDev::Models::BrandRetrieveByNameParams::ForceLanguage] Optional parameter to force the language of the retrieved brand data.
|
|
46
55
|
#
|
|
47
56
|
# @param max_speed [Boolean] Optional parameter to optimize the API call for maximum speed. When set to true,
|
|
@@ -50,6 +59,255 @@ module BrandDev
|
|
|
50
59
|
#
|
|
51
60
|
# @param request_options [BrandDev::RequestOptions, Hash{Symbol=>Object}]
|
|
52
61
|
|
|
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
|
+
|
|
53
311
|
# Optional parameter to force the language of the retrieved brand data.
|
|
54
312
|
module ForceLanguage
|
|
55
313
|
extend BrandDev::Internal::Type::Enum
|
|
@@ -59,6 +317,7 @@ module BrandDev
|
|
|
59
317
|
AZERI = :azeri
|
|
60
318
|
BENGALI = :bengali
|
|
61
319
|
BULGARIAN = :bulgarian
|
|
320
|
+
CANTONESE = :cantonese
|
|
62
321
|
CEBUANO = :cebuano
|
|
63
322
|
CROATIAN = :croatian
|
|
64
323
|
CZECH = :czech
|
|
@@ -78,6 +337,7 @@ module BrandDev
|
|
|
78
337
|
INDONESIAN = :indonesian
|
|
79
338
|
ITALIAN = :italian
|
|
80
339
|
KAZAKH = :kazakh
|
|
340
|
+
KOREAN = :korean
|
|
81
341
|
KYRGYZ = :kyrgyz
|
|
82
342
|
LATIN = :latin
|
|
83
343
|
LATVIAN = :latvian
|
|
@@ -100,6 +360,7 @@ module BrandDev
|
|
|
100
360
|
SWAHILI = :swahili
|
|
101
361
|
SWEDISH = :swedish
|
|
102
362
|
TAGALOG = :tagalog
|
|
363
|
+
THAI = :thai
|
|
103
364
|
TURKISH = :turkish
|
|
104
365
|
UKRAINIAN = :ukrainian
|
|
105
366
|
URDU = :urdu
|
|
@@ -67,6 +67,7 @@ module BrandDev
|
|
|
67
67
|
AZERI = :azeri
|
|
68
68
|
BENGALI = :bengali
|
|
69
69
|
BULGARIAN = :bulgarian
|
|
70
|
+
CANTONESE = :cantonese
|
|
70
71
|
CEBUANO = :cebuano
|
|
71
72
|
CROATIAN = :croatian
|
|
72
73
|
CZECH = :czech
|
|
@@ -86,6 +87,7 @@ module BrandDev
|
|
|
86
87
|
INDONESIAN = :indonesian
|
|
87
88
|
ITALIAN = :italian
|
|
88
89
|
KAZAKH = :kazakh
|
|
90
|
+
KOREAN = :korean
|
|
89
91
|
KYRGYZ = :kyrgyz
|
|
90
92
|
LATIN = :latin
|
|
91
93
|
LATVIAN = :latvian
|
|
@@ -108,6 +110,7 @@ module BrandDev
|
|
|
108
110
|
SWAHILI = :swahili
|
|
109
111
|
SWEDISH = :swedish
|
|
110
112
|
TAGALOG = :tagalog
|
|
113
|
+
THAI = :thai
|
|
111
114
|
TURKISH = :turkish
|
|
112
115
|
UKRAINIAN = :ukrainian
|
|
113
116
|
URDU = :urdu
|
|
@@ -61,6 +61,7 @@ module BrandDev
|
|
|
61
61
|
AZERI = :azeri
|
|
62
62
|
BENGALI = :bengali
|
|
63
63
|
BULGARIAN = :bulgarian
|
|
64
|
+
CANTONESE = :cantonese
|
|
64
65
|
CEBUANO = :cebuano
|
|
65
66
|
CROATIAN = :croatian
|
|
66
67
|
CZECH = :czech
|
|
@@ -80,6 +81,7 @@ module BrandDev
|
|
|
80
81
|
INDONESIAN = :indonesian
|
|
81
82
|
ITALIAN = :italian
|
|
82
83
|
KAZAKH = :kazakh
|
|
84
|
+
KOREAN = :korean
|
|
83
85
|
KYRGYZ = :kyrgyz
|
|
84
86
|
LATIN = :latin
|
|
85
87
|
LATVIAN = :latvian
|
|
@@ -102,6 +104,7 @@ module BrandDev
|
|
|
102
104
|
SWAHILI = :swahili
|
|
103
105
|
SWEDISH = :swedish
|
|
104
106
|
TAGALOG = :tagalog
|
|
107
|
+
THAI = :thai
|
|
105
108
|
TURKISH = :turkish
|
|
106
109
|
UKRAINIAN = :ukrainian
|
|
107
110
|
URDU = :urdu
|
|
@@ -65,7 +65,7 @@ module BrandDev
|
|
|
65
65
|
)
|
|
66
66
|
end
|
|
67
67
|
|
|
68
|
-
# Beta feature: Extract product information from a brand's website.
|
|
68
|
+
# Beta feature: Extract product information from a brand's website. We will
|
|
69
69
|
# analyze the website and return a list of products with details such as name,
|
|
70
70
|
# description, image, pricing, features, and more.
|
|
71
71
|
#
|
|
@@ -330,10 +330,12 @@ module BrandDev
|
|
|
330
330
|
# Retrieve brand information using a company name. This endpoint searches for the
|
|
331
331
|
# company by name and returns its brand data.
|
|
332
332
|
#
|
|
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: {})
|
|
334
334
|
#
|
|
335
335
|
# @param name [String] Company name to retrieve brand data for (e.g., 'Apple Inc', 'Microsoft Corporati
|
|
336
336
|
#
|
|
337
|
+
# @param country_gl [Symbol, BrandDev::Models::BrandRetrieveByNameParams::CountryGl] Optional country code (GL parameter) to specify the country. This affects the ge
|
|
338
|
+
#
|
|
337
339
|
# @param force_language [Symbol, BrandDev::Models::BrandRetrieveByNameParams::ForceLanguage] Optional parameter to force the language of the retrieved brand data.
|
|
338
340
|
#
|
|
339
341
|
# @param max_speed [Boolean] Optional parameter to optimize the API call for maximum speed. When set to true,
|
data/lib/brand_dev/version.rb
CHANGED
|
@@ -1431,6 +1431,11 @@ module BrandDev
|
|
|
1431
1431
|
:bulgarian,
|
|
1432
1432
|
BrandDev::BrandIdentifyFromTransactionParams::ForceLanguage::TaggedSymbol
|
|
1433
1433
|
)
|
|
1434
|
+
CANTONESE =
|
|
1435
|
+
T.let(
|
|
1436
|
+
:cantonese,
|
|
1437
|
+
BrandDev::BrandIdentifyFromTransactionParams::ForceLanguage::TaggedSymbol
|
|
1438
|
+
)
|
|
1434
1439
|
CEBUANO =
|
|
1435
1440
|
T.let(
|
|
1436
1441
|
:cebuano,
|
|
@@ -1526,6 +1531,11 @@ module BrandDev
|
|
|
1526
1531
|
:kazakh,
|
|
1527
1532
|
BrandDev::BrandIdentifyFromTransactionParams::ForceLanguage::TaggedSymbol
|
|
1528
1533
|
)
|
|
1534
|
+
KOREAN =
|
|
1535
|
+
T.let(
|
|
1536
|
+
:korean,
|
|
1537
|
+
BrandDev::BrandIdentifyFromTransactionParams::ForceLanguage::TaggedSymbol
|
|
1538
|
+
)
|
|
1529
1539
|
KYRGYZ =
|
|
1530
1540
|
T.let(
|
|
1531
1541
|
:kyrgyz,
|
|
@@ -1636,6 +1646,11 @@ module BrandDev
|
|
|
1636
1646
|
:tagalog,
|
|
1637
1647
|
BrandDev::BrandIdentifyFromTransactionParams::ForceLanguage::TaggedSymbol
|
|
1638
1648
|
)
|
|
1649
|
+
THAI =
|
|
1650
|
+
T.let(
|
|
1651
|
+
:thai,
|
|
1652
|
+
BrandDev::BrandIdentifyFromTransactionParams::ForceLanguage::TaggedSymbol
|
|
1653
|
+
)
|
|
1639
1654
|
TURKISH =
|
|
1640
1655
|
T.let(
|
|
1641
1656
|
:turkish,
|
|
@@ -135,6 +135,11 @@ module BrandDev
|
|
|
135
135
|
:bulgarian,
|
|
136
136
|
BrandDev::BrandRetrieveByEmailParams::ForceLanguage::TaggedSymbol
|
|
137
137
|
)
|
|
138
|
+
CANTONESE =
|
|
139
|
+
T.let(
|
|
140
|
+
:cantonese,
|
|
141
|
+
BrandDev::BrandRetrieveByEmailParams::ForceLanguage::TaggedSymbol
|
|
142
|
+
)
|
|
138
143
|
CEBUANO =
|
|
139
144
|
T.let(
|
|
140
145
|
:cebuano,
|
|
@@ -230,6 +235,11 @@ module BrandDev
|
|
|
230
235
|
:kazakh,
|
|
231
236
|
BrandDev::BrandRetrieveByEmailParams::ForceLanguage::TaggedSymbol
|
|
232
237
|
)
|
|
238
|
+
KOREAN =
|
|
239
|
+
T.let(
|
|
240
|
+
:korean,
|
|
241
|
+
BrandDev::BrandRetrieveByEmailParams::ForceLanguage::TaggedSymbol
|
|
242
|
+
)
|
|
233
243
|
KYRGYZ =
|
|
234
244
|
T.let(
|
|
235
245
|
:kyrgyz,
|
|
@@ -340,6 +350,11 @@ module BrandDev
|
|
|
340
350
|
:tagalog,
|
|
341
351
|
BrandDev::BrandRetrieveByEmailParams::ForceLanguage::TaggedSymbol
|
|
342
352
|
)
|
|
353
|
+
THAI =
|
|
354
|
+
T.let(
|
|
355
|
+
:thai,
|
|
356
|
+
BrandDev::BrandRetrieveByEmailParams::ForceLanguage::TaggedSymbol
|
|
357
|
+
)
|
|
343
358
|
TURKISH =
|
|
344
359
|
T.let(
|
|
345
360
|
:turkish,
|
|
@@ -135,6 +135,11 @@ module BrandDev
|
|
|
135
135
|
:bulgarian,
|
|
136
136
|
BrandDev::BrandRetrieveByIsinParams::ForceLanguage::TaggedSymbol
|
|
137
137
|
)
|
|
138
|
+
CANTONESE =
|
|
139
|
+
T.let(
|
|
140
|
+
:cantonese,
|
|
141
|
+
BrandDev::BrandRetrieveByIsinParams::ForceLanguage::TaggedSymbol
|
|
142
|
+
)
|
|
138
143
|
CEBUANO =
|
|
139
144
|
T.let(
|
|
140
145
|
:cebuano,
|
|
@@ -230,6 +235,11 @@ module BrandDev
|
|
|
230
235
|
:kazakh,
|
|
231
236
|
BrandDev::BrandRetrieveByIsinParams::ForceLanguage::TaggedSymbol
|
|
232
237
|
)
|
|
238
|
+
KOREAN =
|
|
239
|
+
T.let(
|
|
240
|
+
:korean,
|
|
241
|
+
BrandDev::BrandRetrieveByIsinParams::ForceLanguage::TaggedSymbol
|
|
242
|
+
)
|
|
233
243
|
KYRGYZ =
|
|
234
244
|
T.let(
|
|
235
245
|
:kyrgyz,
|
|
@@ -340,6 +350,11 @@ module BrandDev
|
|
|
340
350
|
:tagalog,
|
|
341
351
|
BrandDev::BrandRetrieveByIsinParams::ForceLanguage::TaggedSymbol
|
|
342
352
|
)
|
|
353
|
+
THAI =
|
|
354
|
+
T.let(
|
|
355
|
+
:thai,
|
|
356
|
+
BrandDev::BrandRetrieveByIsinParams::ForceLanguage::TaggedSymbol
|
|
357
|
+
)
|
|
343
358
|
TURKISH =
|
|
344
359
|
T.let(
|
|
345
360
|
:turkish,
|