brand.dev 0.1.0.pre.alpha.1 → 0.1.0.pre.alpha.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e9985ae9ba5e62a158a02c8cd2b290bab9811c3ebc6f3061c2f1d90cbf2d0dbe
4
- data.tar.gz: cf66b53c0110ff560bb84484e6113990f4f078aa740ca1a8e653cd32334c6f06
3
+ metadata.gz: a94f139a55d3e88238d913a185093f41026e151b9fd968eb8f249f19ddb54202
4
+ data.tar.gz: 5387c49ab7a97f07f29ff7c937bba1a49377d3555b98299c61fafe22f2d862d7
5
5
  SHA512:
6
- metadata.gz: d1cdf4ea4e6b14cdf0bd77d0eb0d2a9d75edee737d10d0464f30df495b35e6eb811e55ca8cb1f379c6dd2f109d8052541e7671d0efbcf5cb57f66ca6d53cbfe0
7
- data.tar.gz: 23b905b672117b2d6ade382f7f0291d800072c1de2967b21f0bde3cad888e5317d87cf42e688697db88d31264c0f70d1eadcee46941c943e4ea171173adf5d39
6
+ metadata.gz: 7b44cbd8f70815be419af79dfdf414647e5b274e27fa7f8feb01e0671e22b51299728af2867400360adf711c3a756b05a30f1272b9fedc28ab357ba6bf6c0e6b
7
+ data.tar.gz: 5b2565644ee946cd873a26afeaa9ec5698d360c39677d90d9c6289883be3b0a90f6df1fac6558292798d83877b03f3b3248d309d2137b47223f67a9782781a28
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0-alpha.2 (2025-06-05)
4
+
5
+ Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
6
+
7
+ ### Features
8
+
9
+ * **api:** manual updates ([6613bcd](https://github.com/brand-dot-dev/ruby-sdk/commit/6613bcdddf846a0dbcb1e507da7ec58c93e4125d))
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * `to_sorbet_type` should not return branded types ([0047f7c](https://github.com/brand-dot-dev/ruby-sdk/commit/0047f7ce754514e6c5ac04546aa262d1e4df68f5))
15
+ * default content-type for text in multi-part formdata uploads should be text/plain ([c39a8a7](https://github.com/brand-dot-dev/ruby-sdk/commit/c39a8a78f5445fa88de3b9f765d6211889ba78ef))
16
+
3
17
  ## 0.1.0-alpha.1 (2025-06-02)
4
18
 
5
19
  Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "brand.dev", "~> 0.1.0.pre.alpha.1"
18
+ gem "brand.dev", "~> 0.1.0.pre.alpha.2"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -91,11 +91,14 @@ module BrandDev
91
91
  #
92
92
  # @return [Object]
93
93
  def to_sorbet_type
94
- case values
94
+ types = values.map { BrandDev::Internal::Util::SorbetRuntimeSupport.to_sorbet_type(_1) }.uniq
95
+ case types
95
96
  in []
96
97
  T.noreturn
97
- in [value, *_]
98
- T.all(BrandDev::Internal::Util::SorbetRuntimeSupport.to_sorbet_type(value), self)
98
+ in [type]
99
+ type
100
+ else
101
+ T.any(*types)
99
102
  end
100
103
  end
101
104
 
@@ -195,11 +195,14 @@ module BrandDev
195
195
  #
196
196
  # @return [Object]
197
197
  def to_sorbet_type
198
- case (v = variants)
198
+ types = variants.map { BrandDev::Internal::Util::SorbetRuntimeSupport.to_sorbet_type(_1) }.uniq
199
+ case types
199
200
  in []
200
201
  T.noreturn
202
+ in [type]
203
+ type
201
204
  else
202
- T.any(*v.map { BrandDev::Internal::Util::SorbetRuntimeSupport.to_sorbet_type(_1) })
205
+ T.any(*types)
203
206
  end
204
207
  end
205
208
 
@@ -497,7 +497,7 @@ module BrandDev
497
497
  # @param closing [Array<Proc>]
498
498
  # @param content_type [String, nil]
499
499
  private def write_multipart_content(y, val:, closing:, content_type: nil)
500
- content_type ||= "application/octet-stream"
500
+ content_line = "Content-Type: %s\r\n\r\n"
501
501
 
502
502
  case val
503
503
  in BrandDev::FilePart
@@ -508,24 +508,21 @@ module BrandDev
508
508
  content_type: val.content_type
509
509
  )
510
510
  in Pathname
511
- y << "Content-Type: #{content_type}\r\n\r\n"
511
+ y << format(content_line, content_type || "application/octet-stream")
512
512
  io = val.open(binmode: true)
513
513
  closing << io.method(:close)
514
514
  IO.copy_stream(io, y)
515
515
  in IO
516
- y << "Content-Type: #{content_type}\r\n\r\n"
516
+ y << format(content_line, content_type || "application/octet-stream")
517
517
  IO.copy_stream(val, y)
518
518
  in StringIO
519
- y << "Content-Type: #{content_type}\r\n\r\n"
519
+ y << format(content_line, content_type || "application/octet-stream")
520
520
  y << val.string
521
- in String
522
- y << "Content-Type: #{content_type}\r\n\r\n"
523
- y << val.to_s
524
521
  in -> { primitive?(_1) }
525
- y << "Content-Type: text/plain\r\n\r\n"
522
+ y << format(content_line, content_type || "text/plain")
526
523
  y << val.to_s
527
524
  else
528
- y << "Content-Type: application/json\r\n\r\n"
525
+ y << format(content_line, content_type || "application/json")
529
526
  y << JSON.generate(val)
530
527
  end
531
528
  y << "\r\n"
@@ -563,6 +560,8 @@ module BrandDev
563
560
 
564
561
  # @api private
565
562
  #
563
+ # https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.1.md#special-considerations-for-multipart-content
564
+ #
566
565
  # @param body [Object]
567
566
  #
568
567
  # @return [Array(String, Enumerable<String>)]
@@ -21,17 +21,17 @@ module BrandDev
21
21
  required :domain, String
22
22
 
23
23
  # @!attribute specific_pages
24
- # Optional array of specific pages to analyze
24
+ # Optional object specifying which pages to analyze
25
25
  #
26
- # @return [Array<String>, nil]
27
- optional :specific_pages, BrandDev::Internal::Type::ArrayOf[String]
26
+ # @return [BrandDev::Models::BrandAIQueryParams::SpecificPages, nil]
27
+ optional :specific_pages, -> { BrandDev::BrandAIQueryParams::SpecificPages }
28
28
 
29
29
  # @!method initialize(data_to_extract:, domain:, specific_pages: nil, request_options: {})
30
30
  # @param data_to_extract [Array<BrandDev::Models::BrandAIQueryParams::DataToExtract>] Array of data points to extract from the website
31
31
  #
32
32
  # @param domain [String] The domain name to analyze
33
33
  #
34
- # @param specific_pages [Array<String>] Optional array of specific pages to analyze
34
+ # @param specific_pages [BrandDev::Models::BrandAIQueryParams::SpecificPages] Optional object specifying which pages to analyze
35
35
  #
36
36
  # @param request_options [BrandDev::RequestOptions, Hash{Symbol=>Object}]
37
37
 
@@ -86,6 +86,75 @@ module BrandDev
86
86
  # @return [Array<Symbol>]
87
87
  end
88
88
  end
89
+
90
+ class SpecificPages < BrandDev::Internal::Type::BaseModel
91
+ # @!attribute about_us
92
+ # Whether to analyze the about us page
93
+ #
94
+ # @return [Boolean, nil]
95
+ optional :about_us, BrandDev::Internal::Type::Boolean
96
+
97
+ # @!attribute blog
98
+ # Whether to analyze the blog
99
+ #
100
+ # @return [Boolean, nil]
101
+ optional :blog, BrandDev::Internal::Type::Boolean
102
+
103
+ # @!attribute careers
104
+ # Whether to analyze the careers page
105
+ #
106
+ # @return [Boolean, nil]
107
+ optional :careers, BrandDev::Internal::Type::Boolean
108
+
109
+ # @!attribute contact_us
110
+ # Whether to analyze the contact us page
111
+ #
112
+ # @return [Boolean, nil]
113
+ optional :contact_us, BrandDev::Internal::Type::Boolean
114
+
115
+ # @!attribute faq
116
+ # Whether to analyze the FAQ page
117
+ #
118
+ # @return [Boolean, nil]
119
+ optional :faq, BrandDev::Internal::Type::Boolean
120
+
121
+ # @!attribute home_page
122
+ # Whether to analyze the home page
123
+ #
124
+ # @return [Boolean, nil]
125
+ optional :home_page, BrandDev::Internal::Type::Boolean
126
+
127
+ # @!attribute privacy_policy
128
+ # Whether to analyze the privacy policy page
129
+ #
130
+ # @return [Boolean, nil]
131
+ optional :privacy_policy, BrandDev::Internal::Type::Boolean
132
+
133
+ # @!attribute terms_and_conditions
134
+ # Whether to analyze the terms and conditions page
135
+ #
136
+ # @return [Boolean, nil]
137
+ optional :terms_and_conditions, BrandDev::Internal::Type::Boolean
138
+
139
+ # @!method initialize(about_us: nil, blog: nil, careers: nil, contact_us: nil, faq: nil, home_page: nil, privacy_policy: nil, terms_and_conditions: nil)
140
+ # Optional object specifying which pages to analyze
141
+ #
142
+ # @param about_us [Boolean] Whether to analyze the about us page
143
+ #
144
+ # @param blog [Boolean] Whether to analyze the blog
145
+ #
146
+ # @param careers [Boolean] Whether to analyze the careers page
147
+ #
148
+ # @param contact_us [Boolean] Whether to analyze the contact us page
149
+ #
150
+ # @param faq [Boolean] Whether to analyze the FAQ page
151
+ #
152
+ # @param home_page [Boolean] Whether to analyze the home page
153
+ #
154
+ # @param privacy_policy [Boolean] Whether to analyze the privacy policy page
155
+ #
156
+ # @param terms_and_conditions [Boolean] Whether to analyze the terms and conditions page
157
+ end
89
158
  end
90
159
  end
91
160
  end
@@ -11,16 +11,16 @@ module BrandDev
11
11
  mod.constants.each do |name|
12
12
  case mod.const_get(name)
13
13
  in true | false
14
- mod.define_sorbet_constant!(:TaggedBoolean) { T.type_alias { T.all(T::Boolean, mod) } }
14
+ mod.define_sorbet_constant!(:TaggedBoolean) { T.type_alias { T::Boolean } }
15
15
  mod.define_sorbet_constant!(:OrBoolean) { T.type_alias { T::Boolean } }
16
16
  in Integer
17
- mod.define_sorbet_constant!(:TaggedInteger) { T.type_alias { T.all(Integer, mod) } }
17
+ mod.define_sorbet_constant!(:TaggedInteger) { T.type_alias { Integer } }
18
18
  mod.define_sorbet_constant!(:OrInteger) { T.type_alias { Integer } }
19
19
  in Float
20
- mod.define_sorbet_constant!(:TaggedFloat) { T.type_alias { T.all(Float, mod) } }
20
+ mod.define_sorbet_constant!(:TaggedFloat) { T.type_alias { Float } }
21
21
  mod.define_sorbet_constant!(:OrFloat) { T.type_alias { Float } }
22
22
  in Symbol
23
- mod.define_sorbet_constant!(:TaggedSymbol) { T.type_alias { T.all(Symbol, mod) } }
23
+ mod.define_sorbet_constant!(:TaggedSymbol) { T.type_alias { Symbol } }
24
24
  mod.define_sorbet_constant!(:OrSymbol) { T.type_alias { T.any(Symbol, String) } }
25
25
  else
26
26
  end
@@ -37,7 +37,7 @@ module BrandDev
37
37
  #
38
38
  # @param domain [String] The domain name to analyze
39
39
  #
40
- # @param specific_pages [Array<String>] Optional array of specific pages to analyze
40
+ # @param specific_pages [BrandDev::Models::BrandAIQueryParams::SpecificPages] Optional object specifying which pages to analyze
41
41
  #
42
42
  # @param request_options [BrandDev::RequestOptions, Hash{Symbol=>Object}, nil]
43
43
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BrandDev
4
- VERSION = "0.1.0.pre.alpha.1"
4
+ VERSION = "0.1.0.pre.alpha.2"
5
5
  end
@@ -332,6 +332,8 @@ module BrandDev
332
332
  end
333
333
 
334
334
  # @api private
335
+ #
336
+ # https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.1.md#special-considerations-for-multipart-content
335
337
  sig do
336
338
  params(body: T.anything).returns([String, T::Enumerable[String]])
337
339
  end
@@ -19,11 +19,15 @@ module BrandDev
19
19
  sig { returns(String) }
20
20
  attr_accessor :domain
21
21
 
22
- # Optional array of specific pages to analyze
23
- sig { returns(T.nilable(T::Array[String])) }
22
+ # Optional object specifying which pages to analyze
23
+ sig { returns(T.nilable(BrandDev::BrandAIQueryParams::SpecificPages)) }
24
24
  attr_reader :specific_pages
25
25
 
26
- sig { params(specific_pages: T::Array[String]).void }
26
+ sig do
27
+ params(
28
+ specific_pages: BrandDev::BrandAIQueryParams::SpecificPages::OrHash
29
+ ).void
30
+ end
27
31
  attr_writer :specific_pages
28
32
 
29
33
  sig do
@@ -31,7 +35,7 @@ module BrandDev
31
35
  data_to_extract:
32
36
  T::Array[BrandDev::BrandAIQueryParams::DataToExtract::OrHash],
33
37
  domain: String,
34
- specific_pages: T::Array[String],
38
+ specific_pages: BrandDev::BrandAIQueryParams::SpecificPages::OrHash,
35
39
  request_options: BrandDev::RequestOptions::OrHash
36
40
  ).returns(T.attached_class)
37
41
  end
@@ -40,7 +44,7 @@ module BrandDev
40
44
  data_to_extract:,
41
45
  # The domain name to analyze
42
46
  domain:,
43
- # Optional array of specific pages to analyze
47
+ # Optional object specifying which pages to analyze
44
48
  specific_pages: nil,
45
49
  request_options: {}
46
50
  )
@@ -52,7 +56,7 @@ module BrandDev
52
56
  data_to_extract:
53
57
  T::Array[BrandDev::BrandAIQueryParams::DataToExtract],
54
58
  domain: String,
55
- specific_pages: T::Array[String],
59
+ specific_pages: BrandDev::BrandAIQueryParams::SpecificPages,
56
60
  request_options: BrandDev::RequestOptions
57
61
  }
58
62
  )
@@ -179,6 +183,122 @@ module BrandDev
179
183
  end
180
184
  end
181
185
  end
186
+
187
+ class SpecificPages < BrandDev::Internal::Type::BaseModel
188
+ OrHash =
189
+ T.type_alias do
190
+ T.any(
191
+ BrandDev::BrandAIQueryParams::SpecificPages,
192
+ BrandDev::Internal::AnyHash
193
+ )
194
+ end
195
+
196
+ # Whether to analyze the about us page
197
+ sig { returns(T.nilable(T::Boolean)) }
198
+ attr_reader :about_us
199
+
200
+ sig { params(about_us: T::Boolean).void }
201
+ attr_writer :about_us
202
+
203
+ # Whether to analyze the blog
204
+ sig { returns(T.nilable(T::Boolean)) }
205
+ attr_reader :blog
206
+
207
+ sig { params(blog: T::Boolean).void }
208
+ attr_writer :blog
209
+
210
+ # Whether to analyze the careers page
211
+ sig { returns(T.nilable(T::Boolean)) }
212
+ attr_reader :careers
213
+
214
+ sig { params(careers: T::Boolean).void }
215
+ attr_writer :careers
216
+
217
+ # Whether to analyze the contact us page
218
+ sig { returns(T.nilable(T::Boolean)) }
219
+ attr_reader :contact_us
220
+
221
+ sig { params(contact_us: T::Boolean).void }
222
+ attr_writer :contact_us
223
+
224
+ # Whether to analyze the FAQ page
225
+ sig { returns(T.nilable(T::Boolean)) }
226
+ attr_reader :faq
227
+
228
+ sig { params(faq: T::Boolean).void }
229
+ attr_writer :faq
230
+
231
+ # Whether to analyze the home page
232
+ sig { returns(T.nilable(T::Boolean)) }
233
+ attr_reader :home_page
234
+
235
+ sig { params(home_page: T::Boolean).void }
236
+ attr_writer :home_page
237
+
238
+ # Whether to analyze the privacy policy page
239
+ sig { returns(T.nilable(T::Boolean)) }
240
+ attr_reader :privacy_policy
241
+
242
+ sig { params(privacy_policy: T::Boolean).void }
243
+ attr_writer :privacy_policy
244
+
245
+ # Whether to analyze the terms and conditions page
246
+ sig { returns(T.nilable(T::Boolean)) }
247
+ attr_reader :terms_and_conditions
248
+
249
+ sig { params(terms_and_conditions: T::Boolean).void }
250
+ attr_writer :terms_and_conditions
251
+
252
+ # Optional object specifying which pages to analyze
253
+ sig do
254
+ params(
255
+ about_us: T::Boolean,
256
+ blog: T::Boolean,
257
+ careers: T::Boolean,
258
+ contact_us: T::Boolean,
259
+ faq: T::Boolean,
260
+ home_page: T::Boolean,
261
+ privacy_policy: T::Boolean,
262
+ terms_and_conditions: T::Boolean
263
+ ).returns(T.attached_class)
264
+ end
265
+ def self.new(
266
+ # Whether to analyze the about us page
267
+ about_us: nil,
268
+ # Whether to analyze the blog
269
+ blog: nil,
270
+ # Whether to analyze the careers page
271
+ careers: nil,
272
+ # Whether to analyze the contact us page
273
+ contact_us: nil,
274
+ # Whether to analyze the FAQ page
275
+ faq: nil,
276
+ # Whether to analyze the home page
277
+ home_page: nil,
278
+ # Whether to analyze the privacy policy page
279
+ privacy_policy: nil,
280
+ # Whether to analyze the terms and conditions page
281
+ terms_and_conditions: nil
282
+ )
283
+ end
284
+
285
+ sig do
286
+ override.returns(
287
+ {
288
+ about_us: T::Boolean,
289
+ blog: T::Boolean,
290
+ careers: T::Boolean,
291
+ contact_us: T::Boolean,
292
+ faq: T::Boolean,
293
+ home_page: T::Boolean,
294
+ privacy_policy: T::Boolean,
295
+ terms_and_conditions: T::Boolean
296
+ }
297
+ )
298
+ end
299
+ def to_hash
300
+ end
301
+ end
182
302
  end
183
303
  end
184
304
  end
@@ -29,7 +29,7 @@ module BrandDev
29
29
  data_to_extract:
30
30
  T::Array[BrandDev::BrandAIQueryParams::DataToExtract::OrHash],
31
31
  domain: String,
32
- specific_pages: T::Array[String],
32
+ specific_pages: BrandDev::BrandAIQueryParams::SpecificPages::OrHash,
33
33
  request_options: BrandDev::RequestOptions::OrHash
34
34
  ).returns(BrandDev::Models::BrandAIQueryResponse)
35
35
  end
@@ -38,7 +38,7 @@ module BrandDev
38
38
  data_to_extract:,
39
39
  # The domain name to analyze
40
40
  domain:,
41
- # Optional array of specific pages to analyze
41
+ # Optional object specifying which pages to analyze
42
42
  specific_pages: nil,
43
43
  request_options: {}
44
44
  )
@@ -4,7 +4,7 @@ module BrandDev
4
4
  {
5
5
  data_to_extract: ::Array[BrandDev::BrandAIQueryParams::DataToExtract],
6
6
  domain: String,
7
- specific_pages: ::Array[String]
7
+ specific_pages: BrandDev::BrandAIQueryParams::SpecificPages
8
8
  }
9
9
  & BrandDev::Internal::Type::request_parameters
10
10
 
@@ -16,21 +16,23 @@ module BrandDev
16
16
 
17
17
  attr_accessor domain: String
18
18
 
19
- attr_reader specific_pages: ::Array[String]?
19
+ attr_reader specific_pages: BrandDev::BrandAIQueryParams::SpecificPages?
20
20
 
21
- def specific_pages=: (::Array[String]) -> ::Array[String]
21
+ def specific_pages=: (
22
+ BrandDev::BrandAIQueryParams::SpecificPages
23
+ ) -> BrandDev::BrandAIQueryParams::SpecificPages
22
24
 
23
25
  def initialize: (
24
26
  data_to_extract: ::Array[BrandDev::BrandAIQueryParams::DataToExtract],
25
27
  domain: String,
26
- ?specific_pages: ::Array[String],
28
+ ?specific_pages: BrandDev::BrandAIQueryParams::SpecificPages,
27
29
  ?request_options: BrandDev::request_opts
28
30
  ) -> void
29
31
 
30
32
  def to_hash: -> {
31
33
  data_to_extract: ::Array[BrandDev::BrandAIQueryParams::DataToExtract],
32
34
  domain: String,
33
- specific_pages: ::Array[String],
35
+ specific_pages: BrandDev::BrandAIQueryParams::SpecificPages,
34
36
  request_options: BrandDev::RequestOptions
35
37
  }
36
38
 
@@ -80,6 +82,74 @@ module BrandDev
80
82
  def self?.values: -> ::Array[BrandDev::Models::BrandAIQueryParams::DataToExtract::datapoint_type]
81
83
  end
82
84
  end
85
+
86
+ type specific_pages =
87
+ {
88
+ about_us: bool,
89
+ blog: bool,
90
+ careers: bool,
91
+ contact_us: bool,
92
+ faq: bool,
93
+ home_page: bool,
94
+ privacy_policy: bool,
95
+ terms_and_conditions: bool
96
+ }
97
+
98
+ class SpecificPages < BrandDev::Internal::Type::BaseModel
99
+ attr_reader about_us: bool?
100
+
101
+ def about_us=: (bool) -> bool
102
+
103
+ attr_reader blog: bool?
104
+
105
+ def blog=: (bool) -> bool
106
+
107
+ attr_reader careers: bool?
108
+
109
+ def careers=: (bool) -> bool
110
+
111
+ attr_reader contact_us: bool?
112
+
113
+ def contact_us=: (bool) -> bool
114
+
115
+ attr_reader faq: bool?
116
+
117
+ def faq=: (bool) -> bool
118
+
119
+ attr_reader home_page: bool?
120
+
121
+ def home_page=: (bool) -> bool
122
+
123
+ attr_reader privacy_policy: bool?
124
+
125
+ def privacy_policy=: (bool) -> bool
126
+
127
+ attr_reader terms_and_conditions: bool?
128
+
129
+ def terms_and_conditions=: (bool) -> bool
130
+
131
+ def initialize: (
132
+ ?about_us: bool,
133
+ ?blog: bool,
134
+ ?careers: bool,
135
+ ?contact_us: bool,
136
+ ?faq: bool,
137
+ ?home_page: bool,
138
+ ?privacy_policy: bool,
139
+ ?terms_and_conditions: bool
140
+ ) -> void
141
+
142
+ def to_hash: -> {
143
+ about_us: bool,
144
+ blog: bool,
145
+ careers: bool,
146
+ contact_us: bool,
147
+ faq: bool,
148
+ home_page: bool,
149
+ privacy_policy: bool,
150
+ terms_and_conditions: bool
151
+ }
152
+ end
83
153
  end
84
154
  end
85
155
  end
@@ -10,7 +10,7 @@ module BrandDev
10
10
  def ai_query: (
11
11
  data_to_extract: ::Array[BrandDev::BrandAIQueryParams::DataToExtract],
12
12
  domain: String,
13
- ?specific_pages: ::Array[String],
13
+ ?specific_pages: BrandDev::BrandAIQueryParams::SpecificPages,
14
14
  ?request_options: BrandDev::request_opts
15
15
  ) -> BrandDev::Models::BrandAIQueryResponse
16
16
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brand.dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre.alpha.1
4
+ version: 0.1.0.pre.alpha.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brand Dev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-06-02 00:00:00.000000000 Z
11
+ date: 2025-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool